diff --git a/.gitignore b/.gitignore index 91eff6e..b787b26 100755 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ archive *.log ~$*.xlsx dragg/dump.rdb +*home_logs dragg/outputs dragg.egg-info *.log diff --git a/deploy/.dockerignore b/deploy/.dockerignore new file mode 100644 index 0000000..98c9595 --- /dev/null +++ b/deploy/.dockerignore @@ -0,0 +1,2 @@ +*.rdb +*.log \ No newline at end of file diff --git a/deploy/Dockerfile b/deploy/Dockerfile new file mode 100644 index 0000000..34160a8 --- /dev/null +++ b/deploy/Dockerfile @@ -0,0 +1,13 @@ +# Install python +FROM python:3.9 + +# Install dragg +RUN pip install dragg +RUN pip install cvxopt + +# Copy parent directory +ADD . /dragg + +# Run simulation +WORKDIR dragg/dragg +CMD python main.py -r "redis://redis" diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml new file mode 100644 index 0000000..c7e7f60 --- /dev/null +++ b/deploy/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3' +services: + dragg: + build: + context: ../ + dockerfile: ./deploy/Dockerfile + environment: + - REDIS_HOST=redis + - localhost=6397 + depends_on: + - redis + volumes: + - ./outputs:/dragg/outputs + redis: + image: redis \ No newline at end of file diff --git a/deploy/start_worker.sh b/deploy/start_worker.sh deleted file mode 100755 index 629d62f..0000000 --- a/deploy/start_worker.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# Make sure that all of these other servers are ready before starting the worker node - -echo "Waiting for redis to start" -/usr/local/wait-for-it.sh --strict redis:6379 - -echo "Waiting for mongo to start" -/usr/local/wait-for-it.sh --strict mongo:27017 - -cd /dragg/dragg -python3 main.py diff --git a/deploy/wait-for-it.sh b/deploy/wait-for-it.sh deleted file mode 100755 index b9f6475..0000000 --- a/deploy/wait-for-it.sh +++ /dev/null @@ -1,178 +0,0 @@ -#!/usr/bin/env bash -# Use this script to test if a given TCP host/port are available -# From: https://github.com/vishnubob/wait-for-it - -cmdname=$(basename $0) - -echoerr() { if [[ $QUIET -ne 1 ]]; then echo "$@" 1>&2; fi } - -usage() -{ - cat << USAGE >&2 -Usage: - $cmdname host:port [-s] [-t timeout] [-- command args] - -h HOST | --host=HOST Host or IP under test - -p PORT | --port=PORT TCP port under test - Alternatively, you specify the host and port as host:port - -s | --strict Only execute subcommand if the test succeeds - -q | --quiet Don't output any status messages - -t TIMEOUT | --timeout=TIMEOUT - Timeout in seconds, zero for no timeout - -- COMMAND ARGS Execute command with args after the test finishes -USAGE - exit 1 -} - -wait_for() -{ - if [[ $TIMEOUT -gt 0 ]]; then - echoerr "$cmdname: waiting $TIMEOUT seconds for $HOST:$PORT" - else - echoerr "$cmdname: waiting for $HOST:$PORT without a timeout" - fi - start_ts=$(date +%s) - while : - do - if [[ $ISBUSY -eq 1 ]]; then - nc -z $HOST $PORT - result=$? - else - (echo > /dev/tcp/$HOST/$PORT) >/dev/null 2>&1 - result=$? - fi - if [[ $result -eq 0 ]]; then - end_ts=$(date +%s) - echoerr "$cmdname: $HOST:$PORT is available after $((end_ts - start_ts)) seconds" - break - fi - sleep 1 - done - return $result -} - -wait_for_wrapper() -{ - # In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692 - if [[ $QUIET -eq 1 ]]; then - timeout $BUSYTIMEFLAG $TIMEOUT $0 --quiet --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - else - timeout $BUSYTIMEFLAG $TIMEOUT $0 --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - fi - PID=$! - trap "kill -INT -$PID" INT - wait $PID - RESULT=$? - if [[ $RESULT -ne 0 ]]; then - echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT" - fi - return $RESULT -} - -# process arguments -while [[ $# -gt 0 ]] -do - case "$1" in - *:* ) - hostport=(${1//:/ }) - HOST=${hostport[0]} - PORT=${hostport[1]} - shift 1 - ;; - --child) - CHILD=1 - shift 1 - ;; - -q | --quiet) - QUIET=1 - shift 1 - ;; - -s | --strict) - STRICT=1 - shift 1 - ;; - -h) - HOST="$2" - if [[ $HOST == "" ]]; then break; fi - shift 2 - ;; - --host=*) - HOST="${1#*=}" - shift 1 - ;; - -p) - PORT="$2" - if [[ $PORT == "" ]]; then break; fi - shift 2 - ;; - --port=*) - PORT="${1#*=}" - shift 1 - ;; - -t) - TIMEOUT="$2" - if [[ $TIMEOUT == "" ]]; then break; fi - shift 2 - ;; - --timeout=*) - TIMEOUT="${1#*=}" - shift 1 - ;; - --) - shift - CLI="$@" - break - ;; - --help) - usage - ;; - *) - echoerr "Unknown argument: $1" - usage - ;; - esac -done - -if [[ "$HOST" == "" || "$PORT" == "" ]]; then - echoerr "Error: you need to provide a host and port to test." - usage -fi - -TIMEOUT=${TIMEOUT:-15} -STRICT=${STRICT:-0} -CHILD=${CHILD:-0} -QUIET=${QUIET:-0} - -# check to see if timeout is from busybox? -# check to see if timeout is from busybox? -TIMEOUT_PATH=$(realpath $(which timeout)) -if [[ $TIMEOUT_PATH =~ "busybox" ]]; then - ISBUSY=1 - BUSYTIMEFLAG="-t" -else - ISBUSY=0 - BUSYTIMEFLAG="" -fi - -if [[ $CHILD -gt 0 ]]; then - wait_for - RESULT=$? - exit $RESULT -else - if [[ $TIMEOUT -gt 0 ]]; then - wait_for_wrapper - RESULT=$? - else - wait_for - RESULT=$? - fi -fi - -if [[ $CLI != "" ]]; then - if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then - echoerr "$cmdname: strict mode, refusing to execute subprocess" - exit $RESULT - fi - exec $CLI -else - exit $RESULT -fi diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100755 index bab75d7..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,29 +0,0 @@ -version: '3' -services: - dragg: - build: - # the purpose of context one level above is to install the entire alfalfa package - # and to copy the wait-for-it.sh file in deploy - dockerfile: dragg/Dockerfile - context: . - environment: - - REDIS_HOST - - MONGO_URL - - MONGO_DB_NAME - - REGION - - CONFIG_FILE - - SOLAR_TEMPERATURE_DATA_FILE - - TOU_DATA_FILE - volumes: - - ~/.dragg:/dragg - depends_on: - - redis - - mongo - mongo: - image: mongo - ports: - - "27017:27017" - redis: - image: redis - ports: - - "6379:6379" diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/Final Project-CDM-001-DRAFT.pdf b/docs/Final Project-CDM-001-DRAFT.pdf deleted file mode 100755 index 5c87d82..0000000 Binary files a/docs/Final Project-CDM-001-DRAFT.pdf and /dev/null differ diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d0c3cbf --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/build/html/.buildinfo b/docs/build/html/.buildinfo new file mode 100644 index 0000000..7fba7ee --- /dev/null +++ b/docs/build/html/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. +config: 689320c16525ab51a9c3ed3765fb6772 +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/build/html/.doctrees/api.doctree b/docs/build/html/.doctrees/api.doctree new file mode 100644 index 0000000..5f2d326 Binary files /dev/null and b/docs/build/html/.doctrees/api.doctree differ diff --git a/docs/build/html/.doctrees/dragg.devices.doctree b/docs/build/html/.doctrees/dragg.devices.doctree new file mode 100644 index 0000000..20762cf Binary files /dev/null and b/docs/build/html/.doctrees/dragg.devices.doctree differ diff --git a/docs/build/html/.doctrees/dragg.doctree b/docs/build/html/.doctrees/dragg.doctree new file mode 100644 index 0000000..6d90d81 Binary files /dev/null and b/docs/build/html/.doctrees/dragg.doctree differ diff --git a/docs/build/html/.doctrees/environment.pickle b/docs/build/html/.doctrees/environment.pickle new file mode 100644 index 0000000..af3d349 Binary files /dev/null and b/docs/build/html/.doctrees/environment.pickle differ diff --git a/docs/build/html/.doctrees/getting_started.doctree b/docs/build/html/.doctrees/getting_started.doctree new file mode 100644 index 0000000..b5e0d05 Binary files /dev/null and b/docs/build/html/.doctrees/getting_started.doctree differ diff --git a/docs/build/html/.doctrees/index.doctree b/docs/build/html/.doctrees/index.doctree new file mode 100644 index 0000000..1cdd982 Binary files /dev/null and b/docs/build/html/.doctrees/index.doctree differ diff --git a/docs/build/html/.doctrees/modules.doctree b/docs/build/html/.doctrees/modules.doctree new file mode 100644 index 0000000..a6fb684 Binary files /dev/null and b/docs/build/html/.doctrees/modules.doctree differ diff --git a/docs/build/html/.doctrees/setup.doctree b/docs/build/html/.doctrees/setup.doctree new file mode 100644 index 0000000..48f93e1 Binary files /dev/null and b/docs/build/html/.doctrees/setup.doctree differ diff --git a/docs/build/html/_sources/api.rst.txt b/docs/build/html/_sources/api.rst.txt new file mode 100644 index 0000000..339d94e --- /dev/null +++ b/docs/build/html/_sources/api.rst.txt @@ -0,0 +1,7 @@ +API Reference +============= + +Classes +--------- +.. autoclass:: MPCCalc + :members: initialize_environmental_variables, setup_base_problem diff --git a/docs/build/html/_sources/dragg.devices.rst.txt b/docs/build/html/_sources/dragg.devices.rst.txt new file mode 100644 index 0000000..76d2ac9 --- /dev/null +++ b/docs/build/html/_sources/dragg.devices.rst.txt @@ -0,0 +1,27 @@ +dragg.devices package +===================== + +.. automodule:: dragg.devices.battery + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.electric_vehicle + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.hvac + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.pv + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.water_heater + :members: + :undoc-members: + :show-inheritance: \ No newline at end of file diff --git a/docs/build/html/_sources/dragg.rst.txt b/docs/build/html/_sources/dragg.rst.txt new file mode 100644 index 0000000..6aa30c9 --- /dev/null +++ b/docs/build/html/_sources/dragg.rst.txt @@ -0,0 +1,22 @@ +dragg package +============= + +.. automodule:: dragg.aggregator + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.logger + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.mpc_calc + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.reformat + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/build/html/_sources/getting_started.rst.txt b/docs/build/html/_sources/getting_started.rst.txt new file mode 100644 index 0000000..3d1b59b --- /dev/null +++ b/docs/build/html/_sources/getting_started.rst.txt @@ -0,0 +1,16 @@ +Getting Started +=============== + +Installation +------------ + +DRAGG is available on PyPI and can be downloaded via pip. + +.. code-block:: console + + $ pip install dragg + +Dependencies +^^^ + +DRAGG utilizes the Redis database to communicate between individual HEMS and the Aggregator. Therefore Redis is necessary to run DRAGG. While Redis is only available for Linux based operating systems we have included a Dockerfile in /deploy for Windows installations. \ No newline at end of file diff --git a/docs/build/html/_sources/index.rst.txt b/docs/build/html/_sources/index.rst.txt new file mode 100644 index 0000000..c8ff036 --- /dev/null +++ b/docs/build/html/_sources/index.rst.txt @@ -0,0 +1,27 @@ +.. DRAGG documentation master file, created by + sphinx-quickstart on Thu Oct 6 14:58:49 2022. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Distributed Resource AGGregator (DRAGG) +======================================= + +DRAGG is a Python based package for creating approximate load profiles of single family homes. DRAGG's thermal models can be used to validate demand response from consumers (e.g. maintaining thermal comfort and safety) while providing the corresponding demand. The thermal models in DRAGG are stochastically initialized to emulate the diversity of a typical residential community. + +Each consumer within DRAGG is represented via a `Model Predictive Control `_ Home Energy Management System (HEMS) with the objective to minimize their personal cost: cost per kWh by kWh consumed over the duration of the simualtion. To manipulate consumption the base HEMS is equipped with an electric HVAC system (based on a heat pump), an electric resistance water heater, and an electric vehicle that is capable of vehicle-to-grid charging. Optionally the HEMS can be equipped with a PV array and home battery. + +Every system is approximated by a set of `mixed-integer linear programming `_ constraints which can be used to approximate the `duty cycle `_ of the HVAC and water heater respectively. + +.. image:: _static/thermal.png + :scale: 50% + +Contents +--------- +.. toctree:: + :maxdepth: 1 + + getting_started + dragg + dragg.devices + +.. note:: DRAGG is still under development and we welcome feature requests or collaboration. diff --git a/docs/build/html/_sources/modules.rst.txt b/docs/build/html/_sources/modules.rst.txt new file mode 100644 index 0000000..0b3acd7 --- /dev/null +++ b/docs/build/html/_sources/modules.rst.txt @@ -0,0 +1,8 @@ +dragg +===== + +.. toctree:: + :maxdepth: 4 + + dragg + setup diff --git a/docs/build/html/_sources/setup.rst.txt b/docs/build/html/_sources/setup.rst.txt new file mode 100644 index 0000000..552eb49 --- /dev/null +++ b/docs/build/html/_sources/setup.rst.txt @@ -0,0 +1,7 @@ +setup module +============ + +.. automodule:: setup + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js b/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js new file mode 100644 index 0000000..8549469 --- /dev/null +++ b/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js @@ -0,0 +1,134 @@ +/* + * _sphinx_javascript_frameworks_compat.js + * ~~~~~~~~~~ + * + * Compatability shim for jQuery and underscores.js. + * + * WILL BE REMOVED IN Sphinx 6.0 + * xref RemovedInSphinx60Warning + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + + +/** + * small helper function to urldecode strings + * + * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL + */ +jQuery.urldecode = function(x) { + if (!x) { + return x + } + return decodeURIComponent(x.replace(/\+/g, ' ')); +}; + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s === 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node, addItems) { + if (node.nodeType === 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && + !jQuery(node.parentNode).hasClass(className) && + !jQuery(node.parentNode).hasClass("nohighlight")) { + var span; + var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); + if (isInSVG) { + span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); + } else { + span = document.createElement("span"); + span.className = className; + } + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + if (isInSVG) { + var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + var bbox = node.parentElement.getBBox(); + rect.x.baseVal.value = bbox.x; + rect.y.baseVal.value = bbox.y; + rect.width.baseVal.value = bbox.width; + rect.height.baseVal.value = bbox.height; + rect.setAttribute('class', className); + addItems.push({ + "parent": node.parentNode, + "target": rect}); + } + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this, addItems); + }); + } + } + var addItems = []; + var result = this.each(function() { + highlight(this, addItems); + }); + for (var i = 0; i < addItems.length; ++i) { + jQuery(addItems[i].parent).before(addItems[i].target); + } + return result; +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} diff --git a/docs/build/html/_static/alabaster.css b/docs/build/html/_static/alabaster.css new file mode 100644 index 0000000..0eddaeb --- /dev/null +++ b/docs/build/html/_static/alabaster.css @@ -0,0 +1,701 @@ +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: Georgia, serif; + font-size: 17px; + background-color: #fff; + color: #000; + margin: 0; + padding: 0; +} + + +div.document { + width: 940px; + margin: 30px auto 0 auto; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 220px; +} + +div.sphinxsidebar { + width: 220px; + font-size: 14px; + line-height: 1.5; +} + +hr { + border: 1px solid #B1B4B6; +} + +div.body { + background-color: #fff; + color: #3E4349; + padding: 0 30px 0 30px; +} + +div.body > .section { + text-align: left; +} + +div.footer { + width: 940px; + margin: 20px auto 30px auto; + font-size: 14px; + color: #888; + text-align: right; +} + +div.footer a { + color: #888; +} + +p.caption { + font-family: inherit; + font-size: inherit; +} + + +div.relations { + display: none; +} + + +div.sphinxsidebar a { + color: #444; + text-decoration: none; + border-bottom: 1px dotted #999; +} + +div.sphinxsidebar a:hover { + border-bottom: 1px solid #999; +} + +div.sphinxsidebarwrapper { + padding: 18px 10px; +} + +div.sphinxsidebarwrapper p.logo { + padding: 0; + margin: -10px 0 0 0px; + text-align: center; +} + +div.sphinxsidebarwrapper h1.logo { + margin-top: -10px; + text-align: center; + margin-bottom: 5px; + text-align: left; +} + +div.sphinxsidebarwrapper h1.logo-name { + margin-top: 0px; +} + +div.sphinxsidebarwrapper p.blurb { + margin-top: 0; + font-style: normal; +} + +div.sphinxsidebar h3, +div.sphinxsidebar h4 { + font-family: Georgia, serif; + color: #444; + font-size: 24px; + font-weight: normal; + margin: 0 0 5px 0; + padding: 0; +} + +div.sphinxsidebar h4 { + font-size: 20px; +} + +div.sphinxsidebar h3 a { + color: #444; +} + +div.sphinxsidebar p.logo a, +div.sphinxsidebar h3 a, +div.sphinxsidebar p.logo a:hover, +div.sphinxsidebar h3 a:hover { + border: none; +} + +div.sphinxsidebar p { + color: #555; + margin: 10px 0; +} + +div.sphinxsidebar ul { + margin: 10px 0; + padding: 0; + color: #000; +} + +div.sphinxsidebar ul li.toctree-l1 > a { + font-size: 120%; +} + +div.sphinxsidebar ul li.toctree-l2 > a { + font-size: 110%; +} + +div.sphinxsidebar input { + border: 1px solid #CCC; + font-family: Georgia, serif; + font-size: 1em; +} + +div.sphinxsidebar hr { + border: none; + height: 1px; + color: #AAA; + background: #AAA; + + text-align: left; + margin-left: 0; + width: 50%; +} + +div.sphinxsidebar .badge { + border-bottom: none; +} + +div.sphinxsidebar .badge:hover { + border-bottom: none; +} + +/* To address an issue with donation coming after search */ +div.sphinxsidebar h3.donation { + margin-top: 10px; +} + +/* -- body styles ----------------------------------------------------------- */ + +a { + color: #004B6B; + text-decoration: underline; +} + +a:hover { + color: #6D4100; + text-decoration: underline; +} + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: Georgia, serif; + font-weight: normal; + margin: 30px 0px 10px 0px; + padding: 0; +} + +div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } +div.body h2 { font-size: 180%; } +div.body h3 { font-size: 150%; } +div.body h4 { font-size: 130%; } +div.body h5 { font-size: 100%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #DDD; + padding: 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + color: #444; + background: #EAEAEA; +} + +div.body p, div.body dd, div.body li { + line-height: 1.4em; +} + +div.admonition { + margin: 20px 0px; + padding: 10px 30px; + background-color: #EEE; + border: 1px solid #CCC; +} + +div.admonition tt.xref, div.admonition code.xref, div.admonition a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fafafa; +} + +div.admonition p.admonition-title { + font-family: Georgia, serif; + font-weight: normal; + font-size: 24px; + margin: 0 0 10px 0; + padding: 0; + line-height: 1; +} + +div.admonition p.last { + margin-bottom: 0; +} + +div.highlight { + background-color: #fff; +} + +dt:target, .highlight { + background: #FAF3E8; +} + +div.warning { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.danger { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.error { + background-color: #FCC; + border: 1px solid #FAA; + -moz-box-shadow: 2px 2px 4px #D52C2C; + -webkit-box-shadow: 2px 2px 4px #D52C2C; + box-shadow: 2px 2px 4px #D52C2C; +} + +div.caution { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.attention { + background-color: #FCC; + border: 1px solid #FAA; +} + +div.important { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.note { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.tip { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.hint { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.seealso { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.topic { + background-color: #EEE; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre, tt, code { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; + font-size: 0.9em; +} + +.hll { + background-color: #FFC; + margin: 0 -12px; + padding: 0 12px; + display: block; +} + +img.screenshot { +} + +tt.descname, tt.descclassname, code.descname, code.descclassname { + font-size: 0.95em; +} + +tt.descname, code.descname { + padding-right: 0.08em; +} + +img.screenshot { + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils { + border: 1px solid #888; + -moz-box-shadow: 2px 2px 4px #EEE; + -webkit-box-shadow: 2px 2px 4px #EEE; + box-shadow: 2px 2px 4px #EEE; +} + +table.docutils td, table.docutils th { + border: 1px solid #888; + padding: 0.25em 0.7em; +} + +table.field-list, table.footnote { + border: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +table.footnote { + margin: 15px 0; + width: 100%; + border: 1px solid #EEE; + background: #FDFDFD; + font-size: 0.9em; +} + +table.footnote + table.footnote { + margin-top: -15px; + border-top: none; +} + +table.field-list th { + padding: 0 0.8em 0 0; +} + +table.field-list td { + padding: 0; +} + +table.field-list p { + margin-bottom: 0.8em; +} + +/* Cloned from + * https://github.com/sphinx-doc/sphinx/commit/ef60dbfce09286b20b7385333d63a60321784e68 + */ +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +table.footnote td.label { + width: .1px; + padding: 0.3em 0 0.3em 0.5em; +} + +table.footnote td { + padding: 0.3em 0.5em; +} + +dl { + margin: 0; + padding: 0; +} + +dl dd { + margin-left: 30px; +} + +blockquote { + margin: 0 0 0 30px; + padding: 0; +} + +ul, ol { + /* Matches the 30px from the narrow-screen "li > ul" selector below */ + margin: 10px 0 10px 30px; + padding: 0; +} + +pre { + background: #EEE; + padding: 7px 30px; + margin: 15px 0px; + line-height: 1.3em; +} + +div.viewcode-block:target { + background: #ffd; +} + +dl pre, blockquote pre, li pre { + margin-left: 0; + padding-left: 30px; +} + +tt, code { + background-color: #ecf0f3; + color: #222; + /* padding: 1px 2px; */ +} + +tt.xref, code.xref, a tt { + background-color: #FBFBFB; + border-bottom: 1px solid #fff; +} + +a.reference { + text-decoration: none; + border-bottom: 1px dotted #004B6B; +} + +/* Don't put an underline on images */ +a.image-reference, a.image-reference:hover { + border-bottom: none; +} + +a.reference:hover { + border-bottom: 1px solid #6D4100; +} + +a.footnote-reference { + text-decoration: none; + font-size: 0.7em; + vertical-align: top; + border-bottom: 1px dotted #004B6B; +} + +a.footnote-reference:hover { + border-bottom: 1px solid #6D4100; +} + +a:hover tt, a:hover code { + background: #EEE; +} + + +@media screen and (max-width: 870px) { + + div.sphinxsidebar { + display: none; + } + + div.document { + width: 100%; + + } + + div.documentwrapper { + margin-left: 0; + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + } + + div.bodywrapper { + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + margin-left: 0; + } + + ul { + margin-left: 0; + } + + li > ul { + /* Matches the 30px from the "ul, ol" selector above */ + margin-left: 30px; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .bodywrapper { + margin: 0; + } + + .footer { + width: auto; + } + + .github { + display: none; + } + + + +} + + + +@media screen and (max-width: 875px) { + + body { + margin: 0; + padding: 20px 30px; + } + + div.documentwrapper { + float: none; + background: #fff; + } + + div.sphinxsidebar { + display: block; + float: none; + width: 102.5%; + margin: 50px -30px -20px -30px; + padding: 10px 20px; + background: #333; + color: #FFF; + } + + div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, + div.sphinxsidebar h3 a { + color: #fff; + } + + div.sphinxsidebar a { + color: #AAA; + } + + div.sphinxsidebar p.logo { + display: none; + } + + div.document { + width: 100%; + margin: 0; + } + + div.footer { + display: none; + } + + div.bodywrapper { + margin: 0; + } + + div.body { + min-height: 0; + padding: 0; + } + + .rtd_doc_footer { + display: none; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .footer { + width: auto; + } + + .github { + display: none; + } +} + + +/* misc. */ + +.revsys-inline { + display: none!important; +} + +/* Make nested-list/multi-paragraph items look better in Releases changelog + * pages. Without this, docutils' magical list fuckery causes inconsistent + * formatting between different release sub-lists. + */ +div#changelog > div.section > ul > li > p:only-child { + margin-bottom: 0; +} + +/* Hide fugly table cell borders in ..bibliography:: directive output */ +table.docutils.citation, table.docutils.citation td, table.docutils.citation th { + border: none; + /* Below needed in some edge cases; if not applied, bottom shadows appear */ + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + + +/* relbar */ + +.related { + line-height: 30px; + width: 100%; + font-size: 0.9rem; +} + +.related.top { + border-bottom: 1px solid #EEE; + margin-bottom: 20px; +} + +.related.bottom { + border-top: 1px solid #EEE; +} + +.related ul { + padding: 0; + margin: 0; + list-style: none; +} + +.related li { + display: inline; +} + +nav#rellinks { + float: right; +} + +nav#rellinks li+li:before { + content: "|"; +} + +nav#breadcrumbs li+li:before { + content: "\00BB"; +} + +/* Hide certain items when printing */ +@media print { + div.related { + display: none; + } +} \ No newline at end of file diff --git a/docs/build/html/_static/basic.css b/docs/build/html/_static/basic.css new file mode 100644 index 0000000..18495ea --- /dev/null +++ b/docs/build/html/_static/basic.css @@ -0,0 +1,900 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 270px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} +nav.contents, +aside.topic, +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ +nav.contents, +aside.topic, +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +nav.contents > :last-child, +aside.topic > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +nav.contents::after, +aside.topic::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} +aside.footnote > span, +div.citation > span { + float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { + padding-right: 0.5em; +} +aside.footnote > p { + margin-left: 2em; +} +div.citation > p { + margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { + margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/docs/build/html/_static/custom.css b/docs/build/html/_static/custom.css new file mode 100644 index 0000000..2a924f1 --- /dev/null +++ b/docs/build/html/_static/custom.css @@ -0,0 +1 @@ +/* This file intentionally left blank. */ diff --git a/docs/build/html/_static/doctools.js b/docs/build/html/_static/doctools.js new file mode 100644 index 0000000..527b876 --- /dev/null +++ b/docs/build/html/_static/doctools.js @@ -0,0 +1,156 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Base JavaScript utilities for all Sphinx HTML documentation. + * + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/docs/build/html/_static/documentation_options.js b/docs/build/html/_static/documentation_options.js new file mode 100644 index 0000000..4c00b9a --- /dev/null +++ b/docs/build/html/_static/documentation_options.js @@ -0,0 +1,14 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '3.0', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '.txt', + NAVIGATION_WITH_KEYS: true, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/docs/build/html/_static/file.png b/docs/build/html/_static/file.png new file mode 100644 index 0000000..a858a41 Binary files /dev/null and b/docs/build/html/_static/file.png differ diff --git a/docs/build/html/_static/jquery-3.6.0.js b/docs/build/html/_static/jquery-3.6.0.js new file mode 100644 index 0000000..fc6c299 --- /dev/null +++ b/docs/build/html/_static/jquery-3.6.0.js @@ -0,0 +1,10881 @@ +/*! + * jQuery JavaScript Library v3.6.0 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright OpenJS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2021-03-02T17:08Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5 + // Plus for old WebKit, typeof returns "function" for HTML collections + // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756) + return typeof obj === "function" && typeof obj.nodeType !== "number" && + typeof obj.item !== "function"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.6.0", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), + function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); + } ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.6 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2021-02-16 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem && elem.namespaceURI, + docElem = elem && ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +} +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the primary Deferred + primary = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + primary.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( primary.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return primary.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject ); + } + + return primary.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + + // Support: Chrome 86+ + // In Chrome, if an element having a focusout handler is blurred by + // clicking outside of it, it invokes the handler synchronously. If + // that handler calls `.remove()` on the element, the data is cleared, + // leaving `result` undefined. We need to guard against this. + return result && result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + which: true +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + // Suppress native focus or blur as it's already being fired + // in leverageNative. + _default: function() { + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + // + // Support: Firefox 70+ + // Only Firefox includes border widths + // in computed dimensions. (gh-4529) + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate"; + tr.style.cssText = "border:1px solid"; + + // Support: Chrome 86+ + // Height set through cssText does not get applied. + // Computed height then comes back as 0. + tr.style.height = "1px"; + trChild.style.height = "9px"; + + // Support: Android 8 Chrome 86+ + // In our bodyBackground.html iframe, + // display for all div elements is set to "inline", + // which causes a problem only in Android 8 Chrome 86. + // Ensuring the div is display: block + // gets around this issue. + trChild.style.display = "block"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = ( parseInt( trStyle.height, 10 ) + + parseInt( trStyle.borderTopWidth, 10 ) + + parseInt( trStyle.borderBottomWidth, 10 ) ) === tr.offsetHeight; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( dataPriv.get( cur, "events" ) || Object.create( null ) )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml, parserErrorElem; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) {} + + parserErrorElem = xml && xml.getElementsByTagName( "parsererror" )[ 0 ]; + if ( !xml || parserErrorElem ) { + jQuery.error( "Invalid XML: " + ( + parserErrorElem ? + jQuery.map( parserErrorElem.childNodes, function( el ) { + return el.textContent; + } ).join( "\n" ) : + data + ) ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ).filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ).map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + +originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script but not if jsonp + if ( !isSuccess && + jQuery.inArray( "script", s.dataTypes ) > -1 && + jQuery.inArray( "json", s.dataTypes ) < 0 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " +{% endmacro %} \ No newline at end of file diff --git a/docs/build/html/api.html b/docs/build/html/api.html new file mode 100644 index 0000000..640de5d --- /dev/null +++ b/docs/build/html/api.html @@ -0,0 +1,115 @@ + + + + + + + + + API Reference — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +
+

API Reference

+
+

Classes

+
+
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/build/html/dragg.devices.html b/docs/build/html/dragg.devices.html new file mode 100644 index 0000000..284ab9e --- /dev/null +++ b/docs/build/html/dragg.devices.html @@ -0,0 +1,716 @@ + + + + + + + + + dragg.devices package — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+ +
+

dragg.devices package#

+
+
+class dragg.devices.battery.Battery(hems)#
+

Bases: object

+

A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model +to determine the indoor air temperature of the home.

+

Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document

+
+
+add_constraints()#
+
+ +
+
+resolve()#
+
+ +
+ +
+
+class dragg.devices.electric_vehicle.EV(hems)#
+

Bases: object

+
+
+add_constraints()#
+

Creates constraints that make the battery act as an EV with charge/discharge constraints +based on occupancy and travel distance.

+
+
Returns:
+

None

+
+
+
+ +
+
+override_charge(cmd)#
+
+ +
+
+resolve()#
+
+ +
+ +
+
+class dragg.devices.hvac.HVAC(hems)#
+

Bases: object

+

A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model +to determine the indoor air temperature of the home.

+

Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document

+
+
+add_constraints(enforce_bounds=True)#
+
+
Parameters:
+

enforce_bounds – boolean determines whether comfort bounds are strictly enforced

+
+
Returns:
+

cons, a list of CVXPY constraints

+
+
+

A method to introduce physical constraints to the HVAC equipment. The A/C and heat are +alternately disabled by “season” to reduce on/off cycling and/or simaultaneous heating +and cooling when the electricity price is negative.

+
+ +
+
+override_t_in(cmd)#
+
+
Parameters:
+

cmd – float between [-1,1]

+
+
Returns:
+

none

+
+
+

A method for manually setting the temperature setpoint in the home. +The result will set the thermal setpoint between the min and max safety bounds (unoccupied +temperatures) as dictated by the normalized command.

+
+ +
+
+resolve()#
+
+
Returns:
+

none

+
+
+

Re-solves only the HVAC portion of the MPC scheduling problem, since sometimes the comfort +constraints are impossible to adhere to the comfort bounds are not enforced but the difference +in the observed temp and the desired temp is minimized.

+
+ +
+ +
+
+class dragg.devices.pv.PV(hems)#
+

Bases: object

+

A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model +to determine the indoor air temperature of the home.

+

Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document

+
+
+add_constraints()#
+
+ +
+
+resolve()#
+
+ +
+ +
+
+class dragg.devices.water_heater.WH(hems)#
+

Bases: object

+

A class for the water heater device in a smart home. This model uses a linear R1-C1 model +of the water heater tank with electric resistance heating (efficiency ~=100%)

+
+
+add_constraints(enforce_bounds=True)#
+
+
Parameters:
+

enforce_bounds – boolean determines whether comfort bounds are strictly enforced

+
+
Returns:
+

cons, a list of CVXPY constraints

+
+
+

A method to introduce physical constraints to the water heater.

+
+ +
+
+override_p_wh(cmd)#
+
+
Parameters:
+

cmd – float in [-1,1]

+
+
Returns:
+

None

+
+
+

A method to override the current on/off status of the hot water heater. Directly controls +the power consumed with a conservative check that the resulting water temperature will not +exceed bounds in either direction.

+
+ +
+
+resolve()#
+
+
Input:
+

None

+
+
Returns:
+

None

+
+
+

A method for re-solving the constraints specific to the hot water heater in the event +that the whole house HEMS cannot satisfy all constraints – first attempts to minimize the +device-specific electricity consumption while satisfying comfort bounds, second attempt +minimizes the deviation of the new temperature and the desired setpoint.

+
+ +
+ +
+ + +
+ + + + + +
+ + + + + + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/dragg.html b/docs/build/html/dragg.html new file mode 100644 index 0000000..fee7958 --- /dev/null +++ b/docs/build/html/dragg.html @@ -0,0 +1,1593 @@ + + + + + + + + + dragg package — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+ +
+

dragg package#

+
+
+class dragg.aggregator.Aggregator(start=None, end=None, redis_url='redis://localhost')#
+

Bases: object

+

The aggregator combines the power consumption from all homes in the simulation, and manages +the simulation of each home (MPCCalc) object in parallel.

+
+
+calc_start_hour_index()#
+

Since all_data is posted as a list, where 0 corresponds to the first hour in +the dataframe, the number of hours between the start_dt and the above mentioned +hour needs to be calculated. +:return: None

+
+ +
+
+check_all_data_indices()#
+

Ensure enough data exists in all_data such that MPC calcs can be made throughout +the requested start and end period. +:return: None

+
+ +
+
+check_baseline_vals()#
+
+ +
+
+collect_data()#
+

Collects the data passed by the community redis connection. +:return: None

+
+ +
+
+create_homes()#
+

Given parameter distributions and number of homes of each type, create a list +of dictionaries of homes with the parameters set for each home. +:return:

+
+ +
+
+create_mpc_home_obj()#
+
+ +
+
+flush_redis()#
+

Cleans all information stored in the Redis server. (Including environmental +and home data.) +:return: None

+
+ +
+
+gen_setpoint()#
+

Generates the setpoint of the RL utility. Dynamically sized for the +number of houses in the community. +:return: float

+
+ +
+
+get_homes()#
+
+ +
+
+join_data()#
+

Join the TOU, GHI, temp data into a single dataframe +:return: pandas.DataFrame

+
+ +
+
+my_summary()#
+
+ +
+
+redis_add_all_data()#
+

Values for the timeseries data are written to Redis as a list, where the +column names: [GHI, OAT, SPP] are the redis keys. Each list is as long +as the data in self.all_data, which is 8760 for default config file. +:return: None

+
+ +
+
+redis_set_current_values()#
+

Sets the current values of the utility agent (reward price). +:return: None

+
+ +
+
+redis_set_initial_values()#
+

Set the initial timestep, iteration, reward price, and horizon to redis +:return: None

+
+ +
+
+reset_collected_data()#
+
+ +
+
+reset_seed(new_seed)#
+

Reset value for seed. +:param new_seed: int +:return:

+
+ +
+
+run()#
+

Runs simulation(s) specified in the config file with all combinations of +parameters specified in the config file. +:return: None

+
+ +
+
+run_baseline()#
+

Runs the baseline simulation comprised of community of HEMS controlled homes. +Utilizes MPC parameters specified in config file. +(For no MPC in HEMS specify the MPC prediction horizon as 0.) +:return: None

+
+ +
+
+run_iteration()#
+

Calls the MPCCalc class to calculate the control sequence and power demand +from all homes in the community. Threaded, using pathos +:return: None

+
+ +
+
+set_agg_mpc_initial_vals()#
+

Creates a dictionary to store values at each timestep for non-RL runs. +:return: Dictionary

+
+ +
+
+set_dummy_rl_parameters()#
+
+ +
+
+set_run_dir()#
+

Sets the run directoy based on the start/end datetime, community and home configs, +and the named version. +:return: none

+
+ +
+
+setup_rl_agg_run()#
+
+ +
+
+summarize_baseline()#
+

Get the maximum of the aggregate demand for each simulation. +:return: None

+
+ +
+
+write_home_configs()#
+

Writes all home configurations to file at the initialization of the +simulation for later reference. +:return: None

+
+ +
+
+write_outputs()#
+

Writes values for simulation run to a json file for later reference. Is +called at the end of the simulation run period and optionally at a checkpoint period. +:return: None

+
+ +
+ +
+
+class dragg.logger.Logger(name)#
+

Bases: object

+

A logger for simulation outputs

+
+ +
+
+dragg.logger.progress(self, message, *args, **kws)#
+
+ +
+
+class dragg.mpc_calc.MPCCalc(home, redis_url='redis://localhost')#
+

Bases: object

+
+
+add_base_constraints()#
+

Creates the system dynamics for thermal energy storage systems: HVAC and +water heater.

+
+
Returns:
+

None

+
+
+
+ +
+
+add_current_bounds()#
+
+ +
+
+cast_redis_curr_rps()#
+

Casts the reward price signal values for the current timestep.

+
+
Returns:
+

None

+
+
+
+ +
+
+cast_redis_timestep()#
+

Sets the timestep of the current time with respect to total simulation time.

+
+
Returns:
+

None

+
+
+
+ +
+
+cleanup_and_finish()#
+

Resolves .solve_mpc() with error handling and collects all data on solver.

+
+
Returns:
+

None

+
+
+
+ +
+
+get_initial_conditions()#
+
+ +
+
+initialize_environmental_variables()#
+
+ +
+
+redis_get_initial_values()#
+

Collects the values from the outside environment including GHI, OAT, and +the base price set by the utility.

+
+
Returns:
+

None

+
+
+
+ +
+
+redis_get_prev_optimal_vals()#
+

Collects starting point environmental values for all homes (such as current temperature). +:return: None

+
+ +
+
+redis_write_optimal_vals()#
+

Sends the optimal values for each home to the redis server. +:return: None

+
+ +
+
+run_home()#
+

Intended for parallelization in parent class (e.g. aggregator); runs a +single MPCCalc home.

+
+
Returns:
+

None

+
+
+
+ +
+
+set_base_p_grid()#
+

Sets p_grid of home to equal the load of the HVAC and water heater. To +be used if and only if home type is base.

+
+
Returns:
+

None

+
+
+
+ +
+
+set_battery_only_p_grid()#
+

Sets p_grid of home to equal the load of the HVAC and water heater, plus +or minus the charge/discharge of the battery. To be used if and only if +home is of type battery_only.

+
+
Returns:
+

None

+
+
+
+ +
+
+set_environmental_variables()#
+

Slices cast values of the environmental values for the current timestep.

+
+
Returns:
+

None

+
+
+
+ +
+
+set_p_grid()#
+
+ +
+
+set_pv_battery_p_grid()#
+

Sets p_grid of home equal to the load of the HVAC and water heater, plus +or minus the charge/discharge of the battery, minus potential generation +from the PV subsystem. To be used if and only if the home is of type pv_battery.

+
+
Returns:
+

None

+
+
+
+ +
+
+set_pv_only_p_grid()#
+

Sets p_grid of home equal to the load of the HVAC and water heater minus +potential generation from the PV subsystem. To be used if and only if the +home is of type pv_only.

+
+
Returns:
+

None

+
+
+
+ +
+
+setup_base_problem()#
+

Sets variable objects for CVX optimization problem. Includes “base home” +systems of HVAC and water heater. +:return: None

+
+ +
+
+solve_mpc(debug=False)#
+

Sets the objective function of the Home Energy Management System to be the +minimization of cost over the MPC time horizon and solves via CVXPY. +Used for all home types.

+
+
Returns:
+

None

+
+
+
+ +
+
+solve_type_problem()#
+

Selects routine for MPC optimization problem setup and solve using home type.

+
+
Returns:
+

None

+
+
+
+ +
+ +
+
+dragg.mpc_calc.manage_home(home)#
+

Calls class method as a top level function (picklizable by pathos) +:return: None

+
+ +
+
+class dragg.reformat.Reformat#
+

Bases: object

+
+
+add_date_ranges()#
+
+ +
+
+add_mpc_params()#
+
+ +
+
+all_rps(fig)#
+
+ +
+
+get_type_list(type)#
+
+ +
+
+main()#
+
+ +
+
+plot_all(save_images=False)#
+
+ +
+
+plot_all_homes(fig=None)#
+
+ +
+
+plot_base_home(name, fig, data, summary, fname, file, plot_price=True)#
+
+ +
+
+plot_baseline(fig)#
+
+ +
+
+plot_battery(name, fig, data, fname, file)#
+
+ +
+
+plot_environmental_values(name, fig, summary, file, fname)#
+
+ +
+
+plot_ev(name, fig, data, fname, file)#
+
+ +
+
+plot_max_and_12hravg(fig)#
+
+ +
+
+plot_parametric(fig)#
+
+ +
+
+plot_pv(name, fig, data, fname, file)#
+
+ +
+
+plot_single_home(fig)#
+
+ +
+
+plot_thermal_bounds(fig, x_lims, name, fname)#
+
+ +
+
+plot_typ_day(fig)#
+
+ +
+
+rl2baseline(fig)#
+
+ +
+
+save_images()#
+
+ +
+
+set_date_folders()#
+
+ +
+
+set_files()#
+
+ +
+
+set_mpc_folders()#
+
+ +
+ +
+ + +
+ + + + + +
+ + + +
+ +
+ +
+ On this page +
+ +
+ +
+ + +
+ +
+ +
+ + + +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/genindex.html b/docs/build/html/genindex.html new file mode 100644 index 0000000..7795ada --- /dev/null +++ b/docs/build/html/genindex.html @@ -0,0 +1,760 @@ + + + + + + + + Index — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+ + +

Index

+ +
+ A + | B + | C + | D + | E + | F + | G + | H + | I + | J + | L + | M + | O + | P + | R + | S + | W + +
+

A

+ + + +
+ +

B

+ + +
+ +

C

+ + + +
+ +

D

+ + + +
    +
  • + dragg.aggregator + +
  • +
  • + dragg.devices.battery + +
  • +
  • + dragg.devices.electric_vehicle + +
  • +
  • + dragg.devices.hvac + +
  • +
  • + dragg.devices.pv + +
  • +
    +
  • + dragg.devices.water_heater + +
  • +
  • + dragg.logger + +
  • +
  • + dragg.mpc_calc + +
  • +
  • + dragg.reformat + +
  • +
+ +

E

+ + +
+ +

F

+ + +
+ +

G

+ + + +
+ +

H

+ + +
+ +

I

+ + +
+ +

J

+ + +
+ +

L

+ + +
+ +

M

+ + + +
+ +

O

+ + + +
+ +

P

+ + + +
+ +

R

+ + + +
+ +

S

+ + + +
+ +

W

+ + + +
+ + + +
+ + + +
+ +
+
+
+ +
+ + + +
+ +
+ + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/getting_started.html b/docs/build/html/getting_started.html new file mode 100644 index 0000000..808e84d --- /dev/null +++ b/docs/build/html/getting_started.html @@ -0,0 +1,392 @@ + + + + + + + + + Getting Started — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+ +
+

Getting Started#

+
+

Installation#

+

DRAGG is available on PyPI and can be downloaded via pip.

+
$ pip install dragg
+
+
+

Dependencies +^^^

+

DRAGG utilizes the Redis database to communicate between individual HEMS and the Aggregator. Therefore Redis is necessary to run DRAGG. While Redis is only available for Linux based operating systems we have included a Dockerfile in /deploy for Windows installations.

+
+
+ + +
+ + + + + +
+ + + +
+ +
+ +
+ On this page +
+ +
+ +
+ + +
+ +
+ +
+ + + +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/index.html b/docs/build/html/index.html new file mode 100644 index 0000000..1a61fcb --- /dev/null +++ b/docs/build/html/index.html @@ -0,0 +1,392 @@ + + + + + + + + + Distributed Resource AGGregator (DRAGG) — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+ +
+

Distributed Resource AGGregator (DRAGG)#

+

DRAGG is a Python based package for creating approximate load profiles of single family homes. DRAGG’s thermal models can be used to validate demand response from consumers (e.g. maintaining thermal comfort and safety) while providing the corresponding demand. The thermal models in DRAGG are stochastically initialized to emulate the diversity of a typical residential community.

+

Each consumer within DRAGG is represented via a Model Predictive Control Home Energy Management System (HEMS) with the objective to minimize their personal cost: cost per kWh by kWh consumed over the duration of the simualtion. To manipulate consumption the base HEMS is equipped with an electric HVAC system (based on a heat pump), an electric resistance water heater, and an electric vehicle that is capable of vehicle-to-grid charging. Optionally the HEMS can be equipped with a PV array and home battery.

+

Every system is approximated by a set of mixed-integer linear programming constraints which can be used to approximate the duty cycle of the HVAC and water heater respectively.

+_images/thermal.png +
+

Contents#

+ +
+

Note

+

DRAGG is still under development and we welcome feature requests or collaboration.

+
+
+
+ + +
+ + + + + +
+ + + +
+ +
+ +
+ On this page +
+ +
+ +
+ + +
+ +
+ +
+ + + +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/modules.html b/docs/build/html/modules.html new file mode 100644 index 0000000..579ce12 --- /dev/null +++ b/docs/build/html/modules.html @@ -0,0 +1,226 @@ + + + + + + + + + dragg — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +
+

dragg

+
+ +
+
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/build/html/objects.inv b/docs/build/html/objects.inv new file mode 100644 index 0000000..d77fe69 Binary files /dev/null and b/docs/build/html/objects.inv differ diff --git a/docs/build/html/py-modindex.html b/docs/build/html/py-modindex.html new file mode 100644 index 0000000..0295846 --- /dev/null +++ b/docs/build/html/py-modindex.html @@ -0,0 +1,405 @@ + + + + + + + + Python Module Index — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + + + + + +
+ +
+
+
+ +
+ + + +
+ +
+ + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/search.html b/docs/build/html/search.html new file mode 100644 index 0000000..a55c41a --- /dev/null +++ b/docs/build/html/search.html @@ -0,0 +1,367 @@ + + + + + + + Search - DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + + + + + + + + +
+
+ + +
+
+ +
+ +
+ + +
+

Search

+ + + + + + +
+
+ + + + + +
+ +
+
+
+ +
+ + + +
+ +
+ + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ +
+ +
+
+
+ + + + + + +
+
+ + \ No newline at end of file diff --git a/docs/build/html/searchindex.js b/docs/build/html/searchindex.js new file mode 100644 index 0000000..216e10b --- /dev/null +++ b/docs/build/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({"docnames": ["dragg", "dragg.devices", "getting_started", "index"], "filenames": ["dragg.rst", "dragg.devices.rst", "getting_started.rst", "index.rst"], "titles": ["dragg package", "dragg.devices package", "Getting Started", "Distributed Resource AGGregator (DRAGG)"], "terms": {"index": [], "modul": [], "search": [], "page": [], "To": [0, 3], "us": [0, 1, 3], "paxplot": [], "first": [0, 1], "pypi": 2, "pip": 2, "get": [0, 3], "start": [0, 3], "instal": [], "api": [], "refer": 0, "function": 0, "class": [0, 1], "dragg": 2, "i": [0, 1, 2, 3], "avail": 2, "can": [0, 2, 3], "download": 2, "via": [0, 2, 3], "devic": 3, "batteri": [0, 1, 3], "add_constraint": 1, "resolv": [0, 1], "electric_vehicl": 1, "ev": 1, "overrid": 1, "hvac": [0, 1, 3], "pv": [0, 1, 3], "water_heat": 1, "wh": 1, "none": [0, 1], "end": 0, "redis_url": 0, "redi": [0, 2], "localhost": 0, "base": [0, 1, 2, 3], "object": [0, 1, 3], "calc_start_hour_index": 0, "sinc": [0, 1], "all_data": 0, "post": 0, "list": [0, 1], "where": 0, "0": 0, "correspond": [0, 3], "hour": 0, "datafram": 0, "number": 0, "between": [0, 1, 2], "start_dt": 0, "abov": 0, "mention": 0, "need": 0, "calcul": 0, "return": [0, 1], "check_all_data_indic": 0, "ensur": 0, "enough": 0, "data": 0, "exist": 0, "mpc": [0, 1], "calc": 0, "made": 0, "throughout": 0, "request": [0, 3], "period": 0, "check_baseline_v": 0, "collect_data": 0, "collect": 0, "pass": 0, "commun": [0, 2, 3], "connect": 0, "create_hom": 0, "given": 0, "paramet": [0, 1], "distribut": 0, "home": [0, 1, 3], "each": [0, 3], "type": 0, "creat": [0, 1, 3], "dictionari": 0, "set": [0, 1, 3], "create_mpc_home_obj": 0, "flush_redi": 0, "clean": 0, "all": [0, 1], "inform": 0, "store": 0, "server": 0, "includ": [0, 2], "environment": 0, "gen_setpoint": 0, "gener": 0, "setpoint": [0, 1], "rl": 0, "util": [0, 2], "dynam": 0, "size": 0, "hous": [0, 1], "float": [0, 1], "get_hom": 0, "join_data": 0, "join": 0, "tou": 0, "ghi": 0, "temp": [0, 1], "singl": [0, 3], "panda": 0, "my_summari": 0, "redis_add_all_data": 0, "valu": 0, "timeseri": 0, "ar": [0, 1, 3], "written": 0, "column": 0, "name": 0, "oat": 0, "spp": 0, "kei": 0, "long": 0, "self": 0, "which": [0, 3], "8760": 0, "default": 0, "config": 0, "file": 0, "redis_set_current_valu": 0, "current": [0, 1], "agent": 0, "reward": 0, "price": [0, 1], "redis_set_initial_valu": 0, "initi": [0, 3], "timestep": 0, "iter": 0, "horizon": 0, "reset_collected_data": 0, "reset_se": 0, "new_se": 0, "reset": 0, "seed": 0, "param": 0, "int": 0, "run": [0, 2], "simul": 0, "": [0, 3], "specifi": 0, "combin": 0, "run_baselin": 0, "baselin": 0, "compris": 0, "hem": [0, 1, 2, 3], "control": [0, 1, 3], "For": 0, "predict": [0, 3], "run_iter": 0, "call": 0, "mpccalc": 0, "sequenc": 0, "power": [0, 1], "demand": [0, 3], "from": [0, 3], "thread": 0, "patho": 0, "set_agg_mpc_initial_v": 0, "non": 0, "set_dummy_rl_paramet": 0, "set_run_dir": 0, "directoi": 0, "datetim": 0, "version": 0, "setup_rl_agg_run": 0, "summarize_baselin": 0, "maximum": 0, "write_home_config": 0, "write": 0, "configur": 0, "later": 0, "write_output": 0, "json": 0, "option": [0, 3], "checkpoint": 0, "A": [0, 1], "output": 0, "progress": 0, "messag": 0, "arg": 0, "kw": 0, "add_base_constraint": 0, "system": [0, 2, 3], "thermal": [0, 1, 3], "energi": [0, 3], "storag": 0, "water": [0, 1, 3], "heater": [0, 1, 3], "add_current_bound": 0, "cast_redis_curr_rp": 0, "cast": 0, "signal": 0, "cast_redis_timestep": 0, "time": 0, "respect": [0, 3], "total": 0, "cleanup_and_finish": 0, "solve_mpc": 0, "error": 0, "handl": 0, "solver": 0, "get_initial_condit": 0, "initialize_environmental_vari": 0, "override_ev_charg": [], "p_cmd": [], "override_t_in": 1, "t_sp": [], "override_t_wh": [], "redis_get_initial_valu": 0, "outsid": 0, "environ": 0, "redis_get_prev_optimal_v": 0, "point": 0, "temperatur": [0, 1], "redis_write_optimal_v": 0, "send": 0, "optim": 0, "run_hom": 0, "intend": 0, "parallel": 0, "parent": 0, "e": [0, 3], "g": [0, 3], "set_base_p_grid": 0, "p_grid": 0, "equal": 0, "load": [0, 3], "onli": [0, 1, 2], "set_battery_only_p_grid": 0, "plu": 0, "minu": 0, "charg": [0, 1, 3], "discharg": [0, 1], "battery_onli": 0, "set_environmental_vari": 0, "slice": 0, "set_p_grid": 0, "set_pv_battery_p_grid": 0, "potenti": 0, "subsystem": 0, "pv_batteri": 0, "set_pv_only_p_grid": 0, "pv_onli": 0, "setup_base_problem": 0, "variabl": 0, "cvx": 0, "problem": [0, 1], "debug": 0, "fals": 0, "manag": [0, 3], "minim": [0, 1, 3], "cost": [0, 3], "over": [0, 3], "solv": [0, 1], "cvxpy": [0, 1], "solve_type_problem": 0, "select": 0, "routin": 0, "setup": 0, "manage_hom": 0, "method": [0, 1], "top": 0, "level": 0, "pickliz": 0, "url": [], "necessari": 2, "add_date_rang": 0, "add_mpc_param": 0, "all_rp": 0, "fig": 0, "get_type_list": 0, "plot_al": 0, "save_imag": 0, "plot_all_hom": 0, "plot_base_hom": 0, "summari": 0, "fname": 0, "plot_pric": 0, "true": [0, 1], "plot_baselin": 0, "plot_batteri": 0, "plot_environmental_valu": 0, "plot_ev": 0, "plot_max_and_12hravg": 0, "plot_parametr": 0, "plot_pv": 0, "plot_single_hom": 0, "plot_thermal_bound": 0, "x_lim": 0, "plot_typ_dai": 0, "rl2baselin": 0, "set_date_fold": 0, "set_fil": 0, "set_mpc_fold": 0, "smart": 1, "thi": 1, "model": [1, 3], "linear": [1, 3], "r1": 1, "c1": 1, "determin": 1, "indoor": 1, "air": 1, "sourc": 1, "http": 1, "hal": 1, "archiv": 1, "ouvert": 1, "fr": 1, "01739625": 1, "document": 1, "constraint": [1, 3], "make": 1, "act": 1, "an": [1, 3], "occup": 1, "travel": 1, "distanc": 1, "cmd": 1, "enforce_bound": 1, "re": 1, "portion": 1, "schedul": 1, "sometim": 1, "comfort": [1, 3], "imposs": 1, "adher": 1, "bound": 1, "enforc": 1, "differ": 1, "observ": 1, "desir": 1, "packag": 3, "subpackag": [], "submodul": [], "content": [], "aggreg": [0, 2], "logger": 0, "main": 0, "mpc_calc": 0, "redis_cli": [], "reformat": 0, "override_charg": 1, "override_p_wh": 1, "input": 1, "boolean": 1, "whether": 1, "strictli": 1, "con": 1, "introduc": 1, "physic": 1, "equip": [1, 3], "The": [0, 1, 3], "c": 1, "heat": [1, 3], "altern": 1, "disabl": 1, "season": 1, "reduc": 1, "off": 1, "cycl": [1, 3], "simaultan": 1, "cool": 1, "when": 1, "electr": [1, 3], "neg": 1, "1": 1, "manual": 1, "result": 1, "min": 1, "max": 1, "safeti": [1, 3], "unoccupi": 1, "dictat": 1, "normal": 1, "command": 1, "tank": 1, "resist": [1, 3], "effici": 1, "100": 1, "statu": 1, "hot": 1, "directli": 1, "consum": [1, 3], "conserv": 1, "check": 1, "exce": 1, "either": 1, "direct": 1, "specif": 1, "event": 1, "whole": 1, "cannot": 1, "satisfi": 1, "attempt": 1, "consumpt": [0, 1, 3], "while": [1, 2, 3], "second": 1, "deviat": 1, "new": 1, "depend": 2, "databas": 2, "individu": 2, "therefor": 2, "linux": 2, "oper": 2, "we": [2, 3], "have": 2, "dockerfil": 2, "deploi": 2, "window": 2, "python": 3, "approxim": 3, "profil": 3, "famili": 3, "valid": 3, "respons": 3, "maintain": 3, "provid": 3, "stochast": 3, "emul": 3, "divers": 3, "typic": 3, "residenti": 3, "within": 3, "repres": 3, "person": 3, "per": 3, "kwh": 3, "durat": 3, "simualt": 3, "manipul": 3, "pump": 3, "vehicl": 3, "capabl": 3, "grid": 3, "arrai": 3, "everi": 3, "mix": 3, "integ": 3, "program": 3, "duti": 3, "still": 3, "under": 3, "develop": 3, "welcom": 3, "featur": 3, "collabor": 3}, "objects": {"dragg": [[0, 0, 0, "-", "aggregator"], [0, 0, 0, "-", "logger"], [0, 0, 0, "-", "mpc_calc"], [0, 0, 0, "-", "reformat"]], "dragg.aggregator": [[0, 1, 1, "", "Aggregator"]], "dragg.aggregator.Aggregator": [[0, 2, 1, "", "calc_start_hour_index"], [0, 2, 1, "", "check_all_data_indices"], [0, 2, 1, "", "check_baseline_vals"], [0, 2, 1, "", "collect_data"], [0, 2, 1, "", "create_homes"], [0, 2, 1, "", "create_mpc_home_obj"], [0, 2, 1, "", "flush_redis"], [0, 2, 1, "", "gen_setpoint"], [0, 2, 1, "", "get_homes"], [0, 2, 1, "", "join_data"], [0, 2, 1, "", "my_summary"], [0, 2, 1, "", "redis_add_all_data"], [0, 2, 1, "", "redis_set_current_values"], [0, 2, 1, "", "redis_set_initial_values"], [0, 2, 1, "", "reset_collected_data"], [0, 2, 1, "", "reset_seed"], [0, 2, 1, "", "run"], [0, 2, 1, "", "run_baseline"], [0, 2, 1, "", "run_iteration"], [0, 2, 1, "", "set_agg_mpc_initial_vals"], [0, 2, 1, "", "set_dummy_rl_parameters"], [0, 2, 1, "", "set_run_dir"], [0, 2, 1, "", "setup_rl_agg_run"], [0, 2, 1, "", "summarize_baseline"], [0, 2, 1, "", "write_home_configs"], [0, 2, 1, "", "write_outputs"]], "dragg.devices": [[1, 0, 0, "-", "battery"], [1, 0, 0, "-", "electric_vehicle"], [1, 0, 0, "-", "hvac"], [1, 0, 0, "-", "pv"], [1, 0, 0, "-", "water_heater"]], "dragg.devices.battery": [[1, 1, 1, "", "Battery"]], "dragg.devices.battery.Battery": [[1, 2, 1, "", "add_constraints"], [1, 2, 1, "", "resolve"]], "dragg.devices.electric_vehicle": [[1, 1, 1, "", "EV"]], "dragg.devices.electric_vehicle.EV": [[1, 2, 1, "", "add_constraints"], [1, 2, 1, "", "override_charge"], [1, 2, 1, "", "resolve"]], "dragg.devices.hvac": [[1, 1, 1, "", "HVAC"]], "dragg.devices.hvac.HVAC": [[1, 2, 1, "", "add_constraints"], [1, 2, 1, "", "override_t_in"], [1, 2, 1, "", "resolve"]], "dragg.devices.pv": [[1, 1, 1, "", "PV"]], "dragg.devices.pv.PV": [[1, 2, 1, "", "add_constraints"], [1, 2, 1, "", "resolve"]], "dragg.devices.water_heater": [[1, 1, 1, "", "WH"]], "dragg.devices.water_heater.WH": [[1, 2, 1, "", "add_constraints"], [1, 2, 1, "", "override_p_wh"], [1, 2, 1, "", "resolve"]], "dragg.logger": [[0, 1, 1, "", "Logger"], [0, 3, 1, "", "progress"]], "dragg.mpc_calc": [[0, 1, 1, "", "MPCCalc"], [0, 3, 1, "", "manage_home"]], "dragg.mpc_calc.MPCCalc": [[0, 2, 1, "", "add_base_constraints"], [0, 2, 1, "", "add_current_bounds"], [0, 2, 1, "", "cast_redis_curr_rps"], [0, 2, 1, "", "cast_redis_timestep"], [0, 2, 1, "", "cleanup_and_finish"], [0, 2, 1, "", "get_initial_conditions"], [0, 2, 1, "", "initialize_environmental_variables"], [0, 2, 1, "", "redis_get_initial_values"], [0, 2, 1, "", "redis_get_prev_optimal_vals"], [0, 2, 1, "", "redis_write_optimal_vals"], [0, 2, 1, "", "run_home"], [0, 2, 1, "", "set_base_p_grid"], [0, 2, 1, "", "set_battery_only_p_grid"], [0, 2, 1, "", "set_environmental_variables"], [0, 2, 1, "", "set_p_grid"], [0, 2, 1, "", "set_pv_battery_p_grid"], [0, 2, 1, "", "set_pv_only_p_grid"], [0, 2, 1, "", "setup_base_problem"], [0, 2, 1, "", "solve_mpc"], [0, 2, 1, "", "solve_type_problem"]], "dragg.reformat": [[0, 1, 1, "", "Reformat"]], "dragg.reformat.Reformat": [[0, 2, 1, "", "add_date_ranges"], [0, 2, 1, "", "add_mpc_params"], [0, 2, 1, "", "all_rps"], [0, 2, 1, "", "get_type_list"], [0, 2, 1, "", "main"], [0, 2, 1, "", "plot_all"], [0, 2, 1, "", "plot_all_homes"], [0, 2, 1, "", "plot_base_home"], [0, 2, 1, "", "plot_baseline"], [0, 2, 1, "", "plot_battery"], [0, 2, 1, "", "plot_environmental_values"], [0, 2, 1, "", "plot_ev"], [0, 2, 1, "", "plot_max_and_12hravg"], [0, 2, 1, "", "plot_parametric"], [0, 2, 1, "", "plot_pv"], [0, 2, 1, "", "plot_single_home"], [0, 2, 1, "", "plot_thermal_bounds"], [0, 2, 1, "", "plot_typ_day"], [0, 2, 1, "", "rl2baseline"], [0, 2, 1, "", "save_images"], [0, 2, 1, "", "set_date_folders"], [0, 2, 1, "", "set_files"], [0, 2, 1, "", "set_mpc_folders"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:function"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "function", "Python function"]}, "titleterms": {"welcom": [], "dragg": [0, 1, 3], "": [], "document": [], "indic": [], "tabl": [], "api": [], "refer": [], "function": [], "get": 2, "start": 2, "instal": 2, "class": [], "packag": [0, 1], "subpackag": [], "submodul": [], "aggreg": 3, "modul": [], "logger": [], "main": [], "mpc_calc": [], "redis_cli": [], "reformat": [], "content": 3, "devic": 1, "batteri": [], "electric_vehicl": [], "hvac": [], "pv": [], "water_heat": [], "setup": [], "distribut": 3, "resourc": 3}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx": 57}, "alltitles": {"dragg package": [[0, "module-dragg.aggregator"]], "dragg.devices package": [[1, "module-dragg.devices.battery"]], "Getting Started": [[2, "getting-started"]], "Installation": [[2, "installation"]], "Distributed Resource AGGregator (DRAGG)": [[3, "distributed-resource-aggregator-dragg"]], "Contents": [[3, "contents"]]}, "indexentries": {}}) \ No newline at end of file diff --git a/docs/build/html/setup.html b/docs/build/html/setup.html new file mode 100644 index 0000000..4c025b6 --- /dev/null +++ b/docs/build/html/setup.html @@ -0,0 +1,107 @@ + + + + + + + + + setup module — DRAGG 3.0 documentation + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+ +
+

setup module

+
+ + +
+ +
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/docs/img/NSRDB_data_download_example.png b/docs/img/NSRDB_data_download_example.png deleted file mode 100755 index 22c475e..0000000 Binary files a/docs/img/NSRDB_data_download_example.png and /dev/null differ diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..747ffb7 --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/source/_static/thermal.png b/docs/source/_static/thermal.png new file mode 100644 index 0000000..f983963 Binary files /dev/null and b/docs/source/_static/thermal.png differ diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 0000000..130c2a9 --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,33 @@ +import os +import sys +sys.path.insert(0, os.path.abspath('../..')) +sys.path.insert(0, os.path.abspath('../../dragg')) + +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = 'DRAGG' +copyright = '2022, Aisling Pigott' +author = 'Aisling Pigott' +release = '3.0' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ['sphinx.ext.autodoc','sphinx.ext.autosummary'] + +templates_path = ['_templates'] +exclude_patterns = [] + + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'pydata_sphinx_theme' +html_static_path = ['_static'] diff --git a/docs/source/dragg.devices.rst b/docs/source/dragg.devices.rst new file mode 100644 index 0000000..49f0aa5 --- /dev/null +++ b/docs/source/dragg.devices.rst @@ -0,0 +1,27 @@ +dragg.devices +============= + +.. automodule:: dragg.devices.battery + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.electric_vehicle + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.hvac + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.pv + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.devices.water_heater + :members: + :undoc-members: + :show-inheritance: \ No newline at end of file diff --git a/docs/source/dragg.rst b/docs/source/dragg.rst new file mode 100644 index 0000000..49971ce --- /dev/null +++ b/docs/source/dragg.rst @@ -0,0 +1,22 @@ +dragg +===== + +.. automodule:: dragg.aggregator + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.logger + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.mpc_calc + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: dragg.reformat + :members: + :undoc-members: + :show-inheritance: diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst new file mode 100644 index 0000000..3e3d8dd --- /dev/null +++ b/docs/source/getting_started.rst @@ -0,0 +1,23 @@ +Getting Started +=============== + +Installation +------------ + +DRAGG is available on PyPI and can be downloaded via pip. + +.. code-block:: console + + $ pip install dragg + +Dependencies +^^^^^^^^^^^^ + +DRAGG utilizes the Redis database to communicate between individual HEMS and the Aggregator. Therefore Redis is necessary to run DRAGG. While Redis is only available for Unix based operating systems we have included a `Dockerfile` in `/deploy` for Windows installations. + +Running a Simulation +^^^^^^^^^^^^^^^^^^^^ + +1. Configure your simulation via `data/config.toml` +2. Run the + diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 0000000..581cc6e --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,28 @@ +.. DRAGG documentation master file, created by + sphinx-quickstart on Thu Oct 6 14:58:49 2022. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Distributed Resource AGGregator (DRAGG) +======================================= + +DRAGG is a Python based package for creating approximate load profiles of single family homes. DRAGG's thermal models can be used to validate demand response from consumers (e.g. maintaining thermal comfort and safety) while providing the corresponding demand. The thermal models in DRAGG are stochastically initialized to emulate the diversity of a typical residential community. + +Each consumer within DRAGG is represented via a `Model Predictive Control `_ Home Energy Management System (HEMS) with the objective to minimize their personal cost: cost per kWh by kWh consumed over the duration of the simualtion. To manipulate consumption the base HEMS is equipped with an electric HVAC system (based on a heat pump), an electric resistance water heater, and an electric vehicle that is capable of vehicle-to-grid charging. Optionally the HEMS can be equipped with a PV array and home battery. + +Every system is approximated by a set of `mixed-integer linear programming `_ constraints which can be used to approximate the `duty cycle `_ of the HVAC and water heater respectively. + +.. image:: _static/thermal.png + :scale: 50% + +Contents +--------- +.. toctree:: + :maxdepth: 1 + + getting_started + config + dragg + dragg.devices + +.. note:: DRAGG is still under development and we welcome feature requests or collaboration. diff --git a/dragg/Dockerfile b/dragg/Dockerfile deleted file mode 100644 index b732ee9..0000000 --- a/dragg/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM python:3 - -WORKDIR /dragg - -COPY . /dragg -COPY requirements.txt /dragg -COPY ./deploy/wait-for-it.sh /usr/local/wait-for-it.sh -COPY ./deploy/start_worker.sh start_worker.sh -RUN pip3 install --ignore-installed -r requirements.txt -RUN pip3 install . - -CMD ["start_worker.sh"] diff --git a/dragg/agent.py b/dragg/agent.py deleted file mode 100644 index cd87ba8..0000000 --- a/dragg/agent.py +++ /dev/null @@ -1,282 +0,0 @@ -import os -import sys -import threading -from queue import Queue -from copy import deepcopy - -import pandas as pd -from datetime import datetime, timedelta -import time -import numpy as np -import json -import toml -import random -import names -import string -import cvxpy as cp -import dccp -import itertools as it -import redis -from sklearn.linear_model import Ridge -import scipy.stats -from abc import ABC, abstractmethod -import pathos -from pathos.pools import ProcessPool - -# Local -from dragg.mpc_calc import MPCCalc -from dragg.redis_client import RedisClient -from dragg.logger import Logger - -# class Experience: -# def __init__(self, state, action, reward, next_state): -# self.state = state -# self.action = action -# self.reward = reward -# self.next_state = next_state -# -# def process(self) -def manage_experience_processing(exp): - return - -class RLAgent(ABC): - def __init__(self, parameters, rl_log): - self.data_dir = 'data' - self.config_file = os.path.join(self.data_dir, os.environ.get('CONFIG_FILE', 'config.toml')) - self.config = self._import_config() - self.theta_mu = None - self.theta_q = None - self.prev_state = None - self.state = None - self.next_state = None - self.action = None - self.next_action = None - self.memory = [] - self.cumulative_reward = 0 - self.average_reward = 0 - self.mu = 0 - self.rla_log = rl_log - self.i = 0 - self.z_theta_mu = 0 - self.lam_theta = 0.01 - - self.rl_data = {} #self.set_rl_data() - self.set_rl_data() - self._set_parameters(parameters) - - @abstractmethod - def calc_state(self, env): - pass - - def _import_config(self): - with open(self.config_file) as f: - data = toml.load(f) - - self.actionspace = data['rl']['utility']['action_space'] # this is janky - return data - - def _set_parameters(self, params): - self.ALPHA_q = params['alpha'] - self.ALPHA_mu = params['alpha'] - self.ALPHA_w = params['alpha'] * (2) - self.ALPHA_r = params['alpha'] * (2 ** 2) - self.BETA = params['beta'] - self.BATCH_SIZE = params['batch_size'] - self.TWIN_Q = params['twin_q'] - self.SIGMA = params['epsilon'] - - def state_basis(self, state): - forecast_error_basis = np.array([1, state["fcst_error"], state["fcst_error"]**2]) - forecast_trend_basis = np.array([1, state["forecast_trend"], state["forecast_trend"]**2]) - time_basis = np.array([1, np.sin(2 * np.pi * state["time_of_day"]), np.cos(2 * np.pi * state["time_of_day"])]) - - phi = np.outer(forecast_error_basis, forecast_trend_basis).flatten()[1:] - phi = np.outer(phi, time_basis).flatten()[1:] - - return phi - - def state_action_basis(self, state, action): - action_basis = np.array([1, action, action**2]) - delta_action_basis = np.array([1, state['delta_action'], state['delta_action']**2]) - time_basis = np.array([1, np.sin(2 * np.pi * state["time_of_day"]), np.cos(2 * np.pi * state["time_of_day"])]) - forecast_error_basis = np.array([1, state["fcst_error"], state["fcst_error"]**2]) - forecast_trend_basis = np.array([1, state["forecast_trend"], state["forecast_trend"]**2]) - - v = np.outer(forecast_trend_basis, action_basis).flatten()[1:] - w = np.outer(forecast_error_basis, action_basis).flatten()[1:] #8 - z = np.outer(forecast_error_basis, delta_action_basis).flatten()[1:] #14 - phi = np.concatenate((v, w, z)) - phi = np.outer(phi, time_basis).flatten()[1:] - - return phi - - @abstractmethod - def reward(self): - """ Reward function encourages the RL agent to move towards a - state with curr_error = 0. Negative reward values ensure that the agent - tries to terminate the "epsiode" as soon as possible. - _reward() should only be called to calculate the reward at the current - timestep, when reward must be used in stochastic gradient descent it may - be sampled through an experience tuple. - :return: float - """ - pass - - def memorize(self): - if self.state and self.action: - experience = {"state": self.state, "action": self.action, "reward": self.r, "next_state": self.next_state} - self.memory.append(experience) - - def train(self, env): - self.next_state = self.calc_state(env) - if not self.state: # should only be true for timestep 0 - self.state = self.next_state - if not self.next_action: - self.next_action = 0 - self.action = self.next_action - - self.r = self.reward() - - self.xu_k = self.state_action_basis(self.state, self.action) - self.next_action = self.get_policy_action(self.next_state) - self.xu_k1 = self.state_action_basis(self.next_state, self.next_action) - self.memorize() - self.update_qfunction() - self.update_policy() - self.record_rl_data() - - self.state = self.next_state - return self.next_action - - def get_policy_action(self, state): - """ - Selects action of the RL agent according to a Gaussian probability density - function. - Gaussian mean is parameterized linearly. Gaussian standard deviation is fixed. - :return: float - """ - x_k = self.state_basis(state) - if self.theta_mu is None: - n = len(x_k) - self.theta_mu = np.zeros(n) - self.mu = self.theta_mu @ x_k - - action = scipy.stats.norm.rvs(loc=self.mu, scale=self.SIGMA) - return action - - def parse_exp(self, exp): - x = exp["state"] - x1 = exp["next_state"] - u = exp["action"] - u1 = self.get_policy_action(x1) - xu_k = self.state_action_basis(x,u) - xu_k1 = self.state_action_basis(x1,u1) - q_k1 = min(self.theta_q[:,i] @ xu_k1 for i in range(self.theta_q.shape[1])) - y = exp["reward"] + self.BETA * q_k1 - return y, xu_k - - def process_exp(self, exp): - x = exp["state"] - x1 = exp["next_state"] - u = exp["action"] - u1 = self.get_policy_action(x1) - xu_k = self.state_action_basis(x,u) - xu_k1 = self.state_action_basis(x1,u1) - q_k1 = min(self.theta_q[:,i] @ xu_k1 for i in range(self.theta_q.shape[1])) - y = exp["reward"] + self.BETA * q_k1 - return y - - def update_qfunction(self): - if self.TWIN_Q: - self.i = (self.i + 1) % 2 - - if self.theta_q is None: # generate critic network if none exist - n = len(self.state_action_basis(self.state, self.action)) - if self.TWIN_Q: - m = 2 # generate 2 q networks - else: - m = 1 - self.theta_q = np.random.normal(0, 0.3, (n, m)) - self.q_predicted = self.theta_q[:,self.i] @ self.xu_k # recorded for analysis - self.q_observed = self.r + self.BETA * self.theta_q[:,self.i] @ self.xu_k1 # recorded for analysis - - if len(self.memory) > self.BATCH_SIZE: - batch = random.sample(self.memory, self.BATCH_SIZE) - - pool = ProcessPool(nodes=self.config['simulation']['n_nodes']) - batch_y = np.array(pool.map(self.process_exp, batch)) - batch_phi = np.array([self.state_action_basis(exp['state'],exp['action']) for exp in batch]) - - clf = Ridge(alpha = 0.01) - clf.fit(batch_phi, batch_y) - temp_theta = clf.coef_ - self.theta_q[:,self.i] = self.ALPHA_q * temp_theta + (1-self.ALPHA_q) * self.theta_q.flatten() - - def update_policy(self): - """ - Updates the mean of the Gaussian action selection policy. - :return: - """ - x_k = self.state_basis(self.state) - x_k1 = self.state_basis(self.next_state) - delta = np.clip(self.q_predicted - self.q_observed, -1, 1) - self.average_reward += self.ALPHA_r * delta - self.cumulative_reward += self.r - # self.average_reward = self.cummulative_reward / (self.timestep + 1) - # self.z_w = self.lam_w * self.z_w + (x_k1 - x_k) - self.mu = self.theta_mu @ x_k - self.mu = np.clip(self.mu, self.actionspace[0], self.actionspace[1]) - grad_pi_mu = (self.SIGMA**2) * (self.action - self.mu) * x_k - self.z_theta_mu = self.lam_theta * self.z_theta_mu + (grad_pi_mu) - # self.w += self.ALPHA_w * delta * self.z_w # update reward function - self.theta_mu += self.ALPHA_mu * delta * self.z_theta_mu - - def set_rl_data(self): - self.rl_data["theta_q"] = [] - self.rl_data["theta_mu"] = [] - self.rl_data["phi"] = [] - self.rl_data["q_obs"] = [] - self.rl_data["q_pred"] = [] - self.rl_data["action"] = [] - self.rl_data["q_tables"] = [] - self.rl_data["average_reward"] = [] - self.rl_data["cumulative_reward"] = [] - self.rl_data["reward"] = [] - self.rl_data["mu"] = [] - - def record_rl_data(self): - self.rl_data["theta_q"].append(self.theta_q[:,self.i].flatten().tolist()) - self.rl_data["theta_mu"].append(self.theta_mu.flatten().tolist()) - self.rl_data["q_obs"].append(self.q_observed) - self.rl_data["q_pred"].append(self.q_predicted) - self.rl_data["action"].append(self.action) - self.rl_data["average_reward"].append(self.average_reward) - self.rl_data["cumulative_reward"].append(self.cumulative_reward) - self.rl_data["reward"].append(self.r) - self.rl_data["mu"].append(self.mu) - - def record_parameters(self): - self.rl_data["parameters"] = { - "alpha_q": self.ALPHA_q, - "alpha_mu": self.ALPHA_mu, - "alpha_w": self.ALPHA_w, - "alpha_r": self.ALPHA_r, - "beta": self.BETA, - "batch_size": self.BATCH_SIZE, - "twin_q": self.TWIN_Q, - "sigma": self.SIGMA - } - - def write_rl_data(self, output_dir): - file = os.path.join(output_dir, f"{self.name}_agent-results.json") - with open(file, "w+") as f: - json.dump(self.rl_data, f, indent=4) - - def load_from_previous(self, file): - with open(file) as f: - data = json.load(f) - try: - self.theta_mu = data[name]['theta_mu'] - self.theta_q = data[name]['theta_q'] - except: - pass diff --git a/dragg/aggregator.py b/dragg/aggregator.py index 0e34895..88ac9c0 100644 --- a/dragg/aggregator.py +++ b/dragg/aggregator.py @@ -3,8 +3,6 @@ import os import sys -import threading -from queue import Queue import pandas as pd from datetime import datetime, timedelta @@ -15,26 +13,37 @@ import random import names import string -import itertools as it import redis import pathos from pathos.pools import ProcessPool # Local from dragg.mpc_calc import MPCCalc, manage_home -from dragg.redis_client import RedisClient +import dragg.redis_client as rc from dragg.logger import Logger +REDIS_URL = "redis://localhost" + class Aggregator: - def __init__(self): + """ + The aggregator combines the power consumption from all homes in the simulation, and manages + the simulation of each home (MPCCalc) object in parallel. + """ + def __init__(self, start=None, end=None, redis_url=REDIS_URL): + """ + :parameter start: optional override of the start simulation datetime, string "YYYY-MM-DD HH" + :parameter end: optional override of the end simulation datetime, string "YYYY-MM-DD HH" + :parameter redis_url: optional override of the Redis host URL (must align with MPCCalc REDIS_URL) + """ self.log = Logger("aggregator") self.data_dir = os.path.expanduser(os.environ.get('DATA_DIR','data')) - self.outputs_dir = os.path.join('outputs') + self.outputs_dir = os.path.join(os.getcwd(), 'outputs') if not os.path.isdir(self.outputs_dir): os.makedirs(self.outputs_dir) self.config_file = os.path.join(self.data_dir, os.environ.get('CONFIG_FILE', 'config.toml')) self.ts_data_file = os.path.join(self.data_dir, os.environ.get('SOLAR_TEMPERATURE_DATA_FILE', 'nsrdb.csv')) self.spp_data_file = os.path.join(self.data_dir, os.environ.get('SPP_DATA_FILE', 'spp_data.xlsx')) + self.required_keys = { "community": {"total_number_homes"}, "home": { @@ -45,9 +54,12 @@ def __init__(self): "hems": {"prediction_horizon", "discomfort", "disutility"} }, "simulation": {"start_datetime", "end_datetime", "random_seed", "load_zone", "check_type", "run_rbo_mpc"}, - # "agg": {"action_horizon", "forecast_horizon", "base_price", "max_rp", "subhourly_steps"} "agg": {"base_price", "subhourly_steps"} } + + self.str_start_dt = start + self.str_end_dt = end + self.timestep = None # Set by redis_set_initial_values self.iteration = None # Set by redis_set_initial_values self.reward_price = None # Set by redis_set_initial_values @@ -63,9 +75,12 @@ def __init__(self): self.hours = None # Set by _set_dt self.dt = None # Set by _set_dt self.num_timesteps = None # Set by _set_dt - self.all_homes = None # Set by get_homes - self.redis_client = RedisClient() + self.all_homes = None # Set by create_homes + self.redis_url = redis_url + self.redis_client = rc.connection(redis_url) self.config = self._import_config() + self.waterdraws_file = os.path.join(self.data_dir, self.config['home']['wh']['waterdraw_file']) + self.check_type = self.config['simulation']['check_type'] # One of: 'pv_only', 'base', 'battery_only', 'pv_battery', 'all' self.thermal_trend = None @@ -73,9 +88,10 @@ def __init__(self): self.max_daily_ghi = None self.min_daily_temp = None self.prev_load = None - self.ts_data = self._import_ts_data() # Temp: degC, RH: %, Pressure: mbar, GHI: W/m2 + self.dt = min(2, int(self.config['agg']['subhourly_steps'])) # temporary reporting issue with dt == 1 self._set_dt() - + self.ts_data = self._import_ts_data() # Temp: degC, RH: %, Pressure: mbar, GHI: W/m2 + self.spp_data = self._import_spp_data() # SPP: $/kWh self.tou_data = self._build_tou_price() # TOU: $/kWh self.all_data = self.join_data() @@ -84,6 +100,10 @@ def __init__(self): self.all_sps = np.zeros(self.num_timesteps) self.case = "baseline" + self.start_time = datetime.now() + + self.overwrite_output = False + self.daily_peak = 0 def _import_config(self): if not os.path.exists(self.config_file): @@ -114,9 +134,13 @@ def _set_dt(self): objects. Calculate the number of hours for which the simulation will run. :return: """ - try: - self.start_dt = datetime.strptime(self.config['simulation']['start_datetime'], '%Y-%m-%d %H') - self.end_dt = datetime.strptime(self.config['simulation']['end_datetime'], '%Y-%m-%d %H') + try: + if not self.str_start_dt: + self.str_start_dt = self.config["simulation"]["start_datetime"] + if not self.str_end_dt: + self.str_end_dt = self.config["simulation"]["end_datetime"] + self.start_dt = datetime.strptime(self.str_start_dt, '%Y-%m-%d %H') + self.end_dt = datetime.strptime(self.str_end_dt, '%Y-%m-%d %H') except ValueError as e: self.log.logger.error(f"Error parsing datetimes: {e}") sys.exit(1) @@ -138,30 +162,49 @@ def _import_ts_data(self): sys.exit(1) df = pd.read_csv(self.ts_data_file, skiprows=2) - self.dt = int(self.config['agg']['subhourly_steps']) + + self.dt_interval = 60 // self.dt - reps = [np.ceil(self.dt/2) if val==0 else np.floor(self.dt/2) for val in df.Minute] - df = df.loc[np.repeat(df.index.values, reps)] - interval_minutes = self.dt_interval * np.arange(self.dt) - n_intervals = len(df.index) // self.dt - x = np.tile(interval_minutes, n_intervals) - df.Minute = x - df = df.astype(str) - df['ts'] = df[["Year", "Month", "Day", "Hour", "Minute"]].apply(lambda x: ' '.join(x), axis=1) + + # read in original data + df["ts"] = pd.to_datetime(df[['Year','Month','Day','Hour','Minute']]) df = df.rename(columns={"Temperature": "OAT"}) - df["ts"] = df["ts"].apply(lambda x: datetime.strptime(x, '%Y %m %d %H %M')) - df = df.filter(["ts", "GHI", "OAT"]) - df[["GHI", "OAT"]] = df[["GHI", "OAT"]].astype(int) + df.set_index('ts', inplace=True) + + # create interpolated index + df_interp = pd.DataFrame(index=pd.date_range(start=df.index.min(),end=df.index.max(), + freq=f'{self.dt_interval}T')) + + # create merged data and interpolate to fill missing points + df = pd.concat([df, df_interp]).sort_index().interpolate('linear') + df = df[~df.index.duplicated(keep='first')] + + # filter to only interpolated data (exclude non-control datetimes) + df.filter(df_interp.index, axis=0) + df.bfill(inplace=True) + + if self.dt == 1: + print(type(df["Minute"].iloc[2]), df["Minute"].iloc[2]) + df["Minute"] = 0.0 + df["ts"] = pd.to_datetime(df[['Year','Month','Day','Hour','Minute']]) + df.set_index('ts', inplace=True) + self.oat = df['OAT'].to_numpy() self.ghi = df['GHI'].to_numpy() - df = df.set_index('ts') - - day_of_year = 0 - self.thermal_trend = self.oat[4 * self.dt] - self.oat[0] - self.max_daily_temp = max(self.oat[day_of_year*(self.dt*24):(day_of_year+1)*(self.dt*24)]) - self.min_daily_temp = min(self.oat[day_of_year*(self.dt*24):(day_of_year+1)*(self.dt*24)]) - self.max_daily_ghi = max(self.ghi[day_of_year*(self.dt*24):(day_of_year+1)*(self.dt*24)]) + df["WEEKDAY"] = df.index.weekday + df["Hour"] = df.index.hour + (df.index.minute/60) + + self.start_index = df.index.get_loc(self.start_dt, method='nearest') # the index of the start datetime w/r/t the entire year + self.end_index = df.index.get_loc(self.end_dt, method='nearest') + idx = df.index[self.start_index] + idx_h = df.index[self.start_index + 4 * self.dt] + idx_end = df.index[self.end_index] + self.thermal_trend = df.loc[idx_h, 'OAT'] - df.loc[idx, 'OAT'] + self.max_daily_temp = max(df.loc[df.index.date >= self.start_dt.date()]["OAT"]) + self.min_daily_temp = min(df.loc[df.index.date >= self.start_dt.date()]["OAT"]) + self.max_daily_ghi = max(df.loc[df.index.date >= self.start_dt.date()]["GHI"]) + return df def _import_spp_data(self): @@ -267,322 +310,214 @@ def get_homes(self): self.all_homes = json.load(f) else: self.create_homes() + self.create_mpc_home_obj() self._check_home_configs() self.write_home_configs() - def create_homes(self): - """ - Given parameter distributions and number of homes of each type, create a list - of dictionaries of homes with the parameters set for each home. - :return: - """ - # Set seed before sampling. Will ensure home name and parameters - # are the same throughout different runs - np.random.seed(self.config['simulation']['random_seed']) - random.seed(self.config['simulation']['random_seed']) - - # Define home and HVAC parameters - home_r_dist = np.random.uniform( - self.config['home']['hvac']['r_dist'][0], - self.config['home']['hvac']['r_dist'][1], - self.config['community']['total_number_homes'] - ) - home_c_dist = np.random.uniform( - self.config['home']['hvac']['c_dist'][0], - self.config['home']['hvac']['c_dist'][1], - self.config['community']['total_number_homes'] - ) - home_hvac_p_cool_dist = np.random.uniform( - self.config['home']['hvac']['p_cool_dist'][0], - self.config['home']['hvac']['p_cool_dist'][1], - self.config['community']['total_number_homes'] - ) - home_hvac_p_heat_dist = np.random.uniform( - self.config['home']['hvac']['p_heat_dist'][0], - self.config['home']['hvac']['p_heat_dist'][1], - self.config['community']['total_number_homes'] - ) - home_hvac_temp_in_sp_dist = np.random.uniform( - self.config['home']['hvac']['temp_sp_dist'][0], - self.config['home']['hvac']['temp_sp_dist'][1], - self.config['community']['total_number_homes'] - ) - home_hvac_temp_in_db_dist = np.random.uniform( - self.config['home']['hvac']['temp_deadband_dist'][0], - self.config['home']['hvac']['temp_deadband_dist'][1], - self.config['community']['total_number_homes'] - ) - home_hvac_temp_in_init_pos_dist = np.random.uniform( - 0.25, - 0.75, - self.config['community']['total_number_homes'] - ) - home_hvac_temp_in_min_dist = home_hvac_temp_in_sp_dist - 0.5 * home_hvac_temp_in_db_dist - home_hvac_temp_in_max_dist = home_hvac_temp_in_sp_dist + 0.5 * home_hvac_temp_in_db_dist - home_hvac_temp_init = np.add(home_hvac_temp_in_min_dist, np.multiply(home_hvac_temp_in_init_pos_dist, home_hvac_temp_in_db_dist)) - - # Define water heater parameters - wh_r_dist = np.random.uniform( - self.config['home']['wh']['r_dist'][0], - self.config['home']['wh']['r_dist'][1], - self.config['community']['total_number_homes'] - ) - wh_p_dist = np.random.uniform( - self.config['home']['wh']['p_dist'][0], - self.config['home']['wh']['p_dist'][1], - self.config['community']['total_number_homes'] - ) - home_wh_temp_sp_dist = np.random.uniform( - self.config['home']['wh']['sp_dist'][0], - self.config['home']['wh']['sp_dist'][1], - self.config['community']['total_number_homes'] - ) - home_wh_temp_db_dist = np.random.uniform( - self.config['home']['wh']['deadband_dist'][0], - self.config['home']['wh']['deadband_dist'][1], - self.config['community']['total_number_homes'] - ) - home_wh_temp_init_pos_dist = np.random.uniform( - 0.25, - 0.75, - self.config['community']['total_number_homes'] - ) - home_wh_temp_min_dist = home_wh_temp_sp_dist - 0.5 * home_wh_temp_db_dist - home_wh_temp_max_dist = home_wh_temp_sp_dist + 0.5 * home_wh_temp_db_dist - home_wh_temp_init = np.add(home_wh_temp_min_dist, np.multiply(home_wh_temp_init_pos_dist, home_wh_temp_db_dist)) - - # define water heater draw events - home_wh_size_dist = np.random.uniform( - self.config['home']['wh']['size_dist'][0], - self.config['home']['wh']['size_dist'][1], - self.config['community']['total_number_homes'] - ) - - ndays = self.num_timesteps // (24 * self.dt) + 1 - daily_timesteps = int(24 * self.dt) + def get_home_names(self): + return [f"{names.get_first_name()}-{''.join(random.choices(string.ascii_uppercase + string.digits, k=5))}" for _ in range(self.config['community']['total_number_homes'])] + + def get_hvac_params(self): + hvac = { + "r": np.random.uniform( + self.config['home']['hvac']['r_dist'][0], + self.config['home']['hvac']['r_dist'][1]), + "c": np.random.uniform( + self.config['home']['hvac']['c_dist'][0], + self.config['home']['hvac']['c_dist'][1]), + "w": np.random.uniform( + self.config['home']['hvac']['window_eq_dist'][0], + self.config['home']['hvac']['window_eq_dist'][1]), + "hvac_seer": self.config["home"]["hvac"]["seer"], + "hvac_hspf": self.config["home"]["hvac"]["hspf"], + "p_c": np.random.uniform( + self.config['home']['hvac']['p_cool_dist'][0], + self.config['home']['hvac']['p_cool_dist'][1]), + "p_h": np.random.uniform( + self.config['home']['hvac']['p_heat_dist'][0], + self.config['home']['hvac']['p_heat_dist'][1]), + "temp_in_sp": np.random.uniform( + self.config['home']['hvac']['temp_sp_dist'][0], + self.config['home']['hvac']['temp_sp_dist'][1]), + "temp_in_db": np.random.uniform( + self.config['home']['hvac']['temp_deadband_dist'][0], + self.config['home']['hvac']['temp_deadband_dist'][1]), + "temp_setback_delta": np.random.uniform( + self.config['home']['hvac']['temp_setback_delta'][0], + self.config['home']['hvac']['temp_setback_delta'][1]) + } - home_wh_all_draw_size_dist = [] - self.waterdraws_file = os.path.join(self.data_dir, self.config['home']['wh']['waterdraw_file']) + hvac.update({ + "temp_in_min": hvac["temp_in_sp"] - 0.5 * hvac["temp_in_db"], + "temp_in_max": hvac["temp_in_sp"] + 0.5 * hvac["temp_in_db"], + "temp_in_init": hvac["temp_in_sp"] + np.random.uniform(-0.5,0.5) * hvac["temp_in_db"] + }) + return hvac + + def get_wh_params(self): + wh = { + "r": np.random.uniform( + self.config['home']['wh']['r_dist'][0], + self.config['home']['wh']['r_dist'][1]), + "p": np.random.uniform( + self.config['home']['wh']['p_dist'][0], + self.config['home']['wh']['p_dist'][1]), + "temp_wh_sp": np.random.uniform( + self.config['home']['wh']['sp_dist'][0], + self.config['home']['wh']['sp_dist'][1]), + "temp_wh_db": np.random.uniform( + self.config['home']['wh']['deadband_dist'][0], + self.config['home']['wh']['deadband_dist'][1]), + "tank_size": np.random.uniform( + self.config['home']['wh']['size_dist'][0], + self.config['home']['wh']['size_dist'][1]), + } waterdraw_df = pd.read_csv(self.waterdraws_file, index_col=0) waterdraw_df.index = pd.to_datetime(waterdraw_df.index, format='%Y-%m-%d %H:%M:%S') sigma = 0.2 waterdraw_df = waterdraw_df.applymap(lambda x: x * (1 + sigma * np.random.randn())) - waterdraw_df = waterdraw_df.resample('H').sum() - for j in range(self.config['community']['total_number_homes']): - this_house = waterdraw_df.sample(axis='columns').values - this_house = np.reshape(this_house, (-1, 24)) - this_house = this_house[np.random.choice(this_house.shape[0], ndays)].flatten() - this_house = np.clip(this_house, 0, home_wh_size_dist[j]) #.tolist() - home_wh_all_draw_size_dist.append(this_house.tolist()) + waterdraw_df = waterdraw_df.resample(f'{self.dt_interval}T').sum() + this_house_waterdraws = waterdraw_df[list(waterdraw_df.sample(axis='columns'))[0]].values.tolist() + this_house_waterdraws = np.clip(this_house_waterdraws, 0, wh["tank_size"]).tolist() + + wh.update({ + "temp_wh_min": wh["temp_wh_sp"] - 0.5 * wh["temp_wh_db"], + "temp_wh_max": wh["temp_wh_sp"] + 0.5 * wh["temp_wh_db"], + "temp_wh_init": wh["temp_wh_sp"] + np.random.uniform(-0.5,0.5) * wh["temp_wh_db"], + "draw_sizes": this_house_waterdraws + }) + return wh - all_homes = [] + def get_battery_params(self): + battery = { + "max_rate": np.random.uniform(self.config['home']['battery']['max_rate'][0], + self.config['home']['battery']['max_rate'][1]), + "capacity": np.random.uniform(self.config['home']['battery']['capacity'][0], + self.config['home']['battery']['capacity'][1]), + "capacity_lower": np.random.uniform(self.config['home']['battery']['lower_bound'][0], + self.config['home']['battery']['lower_bound'][1]), + "capacity_upper": np.random.uniform(self.config['home']['battery']['upper_bound'][0], + self.config['home']['battery']['upper_bound'][1]), + "ch_eff": np.random.uniform(self.config['home']['battery']['charge_eff'][0], + self.config['home']['battery']['charge_eff'][1]), + "disch_eff": np.random.uniform(self.config['home']['battery']['discharge_eff'][0], + self.config['home']['battery']['discharge_eff'][1]), + "e_batt_init": np.random.uniform(self.config['home']['battery']['lower_bound'][1], + self.config['home']['battery']['upper_bound'][0]) + } + return battery + + def get_pv_params(self): + pv = { + "area": np.random.uniform(self.config['home']['pv']['area'][0], + self.config['home']['pv']['area'][1]), + "eff": np.random.uniform(self.config['home']['pv']['efficiency'][0], + self.config['home']['pv']['efficiency'][1]) + } + return pv + def get_hems_params(self): responsive_hems = { "horizon": self.config['home']['hems']['prediction_horizon'], "hourly_agg_steps": self.dt, "sub_subhourly_steps": self.config['home']['hems']['sub_subhourly_steps'], "solver": self.config['home']['hems']['solver'], - "discount_factor": self.config['home']['hems']['discount_factor'] + "discount_factor": self.config['home']['hems']['discount_factor'], + "weekday_occ_schedule": self.config['home']['hems']['weekday_occ_schedule'], # depricated + "schedule_group": random.choices(list(self.config['community']['schedules'].keys()), + weights=list(self.config['community']['schedules'].values()))[0] } + offset = -3 if responsive_hems['schedule_group'] == 'early_birds' else 3 if responsive_hems['schedule_group'] == 'night_owls' else 0 + responsive_hems.update({ + "typ_leave": np.random.randint(8,10) + offset, + "typ_return": np.random.randint(18,20) + offset + }) + return responsive_hems + + def create_homes(self): + """ + Given parameter distributions and number of homes of each type, create a list + of dictionaries of homes with the parameters set for each home. + :return: + """ + # Set seed before sampling. Will ensure home name and parameters + # are the same throughout different runs + np.random.seed(self.config['simulation']['random_seed']) + random.seed(self.config['simulation']['random_seed']) + + daily_timesteps = int(24 * self.dt) + ndays = self.num_timesteps // daily_timesteps + 1 + + self.all_homes = [] if not os.path.isdir(os.path.join('home_logs')): os.makedirs('home_logs') + all_names = self.get_home_names() + i = 0 # Define pv and battery homes num_pv_battery_homes = self.config['community']['homes_pv_battery'] - for j in range(num_pv_battery_homes): - res = ''.join(random.choices(string.ascii_uppercase + string.digits, k=5)) - name = names.get_first_name() + '-' + res - - battery = { - "max_rate": np.random.uniform(self.config['home']['battery']['max_rate'][0], - self.config['home']['battery']['max_rate'][1]), - "capacity": np.random.uniform(self.config['home']['battery']['capacity'][0], - self.config['home']['battery']['capacity'][1]), - "capacity_lower": np.random.uniform(self.config['home']['battery']['lower_bound'][0], - self.config['home']['battery']['lower_bound'][1]), - "capacity_upper": np.random.uniform(self.config['home']['battery']['upper_bound'][0], - self.config['home']['battery']['upper_bound'][1]), - "ch_eff": np.random.uniform(self.config['home']['battery']['charge_eff'][0], - self.config['home']['battery']['charge_eff'][1]), - "disch_eff": np.random.uniform(self.config['home']['battery']['discharge_eff'][0], - self.config['home']['battery']['discharge_eff'][1]), - "e_batt_init": np.random.uniform(self.config['home']['battery']['lower_bound'][1], - self.config['home']['battery']['upper_bound'][0]) - } - - pv = { - "area": np.random.uniform(self.config['home']['pv']['area'][0], - self.config['home']['pv']['area'][1]), - "eff": np.random.uniform(self.config['home']['pv']['efficiency'][0], - self.config['home']['pv']['efficiency'][1]) - } + num_pv_homes = self.config['community']['homes_pv'] + num_battery_homes = self.config['community']['homes_battery'] + num_base_homes = self.config['community']['total_number_homes'] - num_battery_homes - num_pv_homes - num_pv_battery_homes - all_homes.append({ - "name": name, - "type": "pv_battery", - "hvac": { - "r": home_r_dist[i], - "c": home_c_dist[i], - "p_c": home_hvac_p_cool_dist[i], - "p_h": home_hvac_p_heat_dist[i], - "temp_in_min": home_hvac_temp_in_min_dist[i], - "temp_in_max": home_hvac_temp_in_max_dist[i], - "temp_in_sp": home_hvac_temp_in_sp_dist[i], - "temp_in_init": home_hvac_temp_init[i] - }, - "wh": { - "r": wh_r_dist[i], - "p": wh_p_dist[i], - "temp_wh_min": home_wh_temp_min_dist[i], - "temp_wh_max": home_wh_temp_max_dist[i], - "temp_wh_sp": home_wh_temp_sp_dist[i], - "temp_wh_init": home_wh_temp_init[i], - "tank_size": home_wh_size_dist[i], - "draw_sizes": home_wh_all_draw_size_dist[i], - }, - "hems": responsive_hems, - "battery": battery, - "pv": pv - }) - i += 1 + - # Define pv only homes - num_pv_homes = self.config['community']['homes_pv'] for j in range(num_pv_homes): - hems = responsive_hems - res = ''.join(random.choices(string.ascii_uppercase + string.digits, k=5)) - name = names.get_first_name() + '-' + res - - pv = { - "area": np.random.uniform(self.config['home']['pv']['area'][0], - self.config['home']['pv']['area'][1]), - "eff": np.random.uniform(self.config['home']['pv']['efficiency'][0], - self.config['home']['pv']['efficiency'][1]) - } + name = all_names.pop() + self.all_homes += [{ + "name": name, + "type": "pv_only", + "hvac": self.get_hvac_params(), + "wh": self.get_wh_params(), + "hems": self.get_hems_params(), + "pv": self.get_pv_params() + }] - all_homes.append({ - "name": name, - "type": "pv_only", - "hvac": { - "r": home_r_dist[i], - "c": home_c_dist[i], - "p_c": home_hvac_p_cool_dist[i], - "p_h": home_hvac_p_heat_dist[i], - "temp_in_min": home_hvac_temp_in_min_dist[i], - "temp_in_max": home_hvac_temp_in_max_dist[i], - "temp_in_sp": home_hvac_temp_in_sp_dist[i], - "temp_in_init": home_hvac_temp_init[i] - }, - "wh": { - "r": wh_r_dist[i], - "p": wh_p_dist[i], - "temp_wh_min": home_wh_temp_min_dist[i], - "temp_wh_max": home_wh_temp_max_dist[i], - "temp_wh_sp": home_wh_temp_sp_dist[i], - "temp_wh_init": home_wh_temp_init[i], - "tank_size": home_wh_size_dist[i], - "draw_sizes": home_wh_all_draw_size_dist[i], - }, - "hems": responsive_hems, - "pv": pv - }) - i += 1 - - # Define battery only homes - num_battery_homes = self.config['community']['homes_battery'] for j in range(num_battery_homes): - hems = responsive_hems - res = ''.join(random.choices(string.ascii_uppercase + string.digits, k=5)) - name = names.get_first_name() + '-' + res - - battery = { - "max_rate": np.random.uniform(self.config['home']['battery']['max_rate'][0], - self.config['home']['battery']['max_rate'][1]), - "capacity": np.random.uniform(self.config['home']['battery']['capacity'][0], - self.config['home']['battery']['capacity'][1]), - "capacity_lower": np.random.uniform(self.config['home']['battery']['lower_bound'][0], - self.config['home']['battery']['lower_bound'][1]), - "capacity_upper": np.random.uniform(self.config['home']['battery']['upper_bound'][0], - self.config['home']['battery']['upper_bound'][1]), - "ch_eff": np.random.uniform(self.config['home']['battery']['charge_eff'][0], - self.config['home']['battery']['charge_eff'][1]), - "disch_eff": np.random.uniform(self.config['home']['battery']['discharge_eff'][0], - self.config['home']['battery']['discharge_eff'][1]), - "e_batt_init": np.random.uniform(self.config['home']['battery']['lower_bound'][1], - self.config['home']['battery']['upper_bound'][0]) - } - - all_homes.append({ - "name": name, - "type": "battery_only", - "hvac": { - "r": home_r_dist[i], - "c": home_c_dist[i], - "p_c": home_hvac_p_cool_dist[i], - "p_h": home_hvac_p_heat_dist[i], - "temp_in_min": home_hvac_temp_in_min_dist[i], - "temp_in_max": home_hvac_temp_in_max_dist[i], - "temp_in_sp": home_hvac_temp_in_sp_dist[i], - "temp_in_init": home_hvac_temp_init[i] - }, - "wh": { - "r": wh_r_dist[i], - "p": wh_p_dist[i], - "temp_wh_min": home_wh_temp_min_dist[i], - "temp_wh_max": home_wh_temp_max_dist[i], - "temp_wh_sp": home_wh_temp_sp_dist[i], - "temp_wh_init": home_wh_temp_init[i], - "tank_size": home_wh_size_dist[i], - "draw_sizes": home_wh_all_draw_size_dist[i], - }, - "hems": responsive_hems, - "battery": battery - }) - i += 1 + name = all_names.pop() + self.all_homes += [{ + "name": name, + "type": "battery_only", + "hvac": self.get_hvac_params(), + "wh": self.get_wh_params(), + "hems": self.get_hems_params(), + "battery": self.get_battery_params() + }] - # Define base type homes - num_base_homes = self.config['community']['total_number_homes'] - num_battery_homes - num_pv_homes - num_pv_battery_homes - for j in range(int(num_base_homes)): - res = ''.join(random.choices(string.ascii_uppercase + string.digits, k=5)) - name = names.get_first_name() + '-' + res - hems = responsive_hems - - all_homes.append({ - "name": name, - "type": "base", - "hvac": { - "r": home_r_dist[i], - "c": home_c_dist[i], - "p_c": home_hvac_p_cool_dist[i], - "p_h": home_hvac_p_heat_dist[i], - "temp_in_min": home_hvac_temp_in_min_dist[i], - "temp_in_max": home_hvac_temp_in_max_dist[i], - "temp_in_sp": home_hvac_temp_in_sp_dist[i], - "temp_in_init": home_hvac_temp_init[i] - }, - "wh": { - "r": wh_r_dist[i], - "p": wh_p_dist[i], - "temp_wh_min": home_wh_temp_min_dist[i], - "temp_wh_max": home_wh_temp_max_dist[i], - "temp_wh_sp": home_wh_temp_sp_dist[i], - "temp_wh_init": home_wh_temp_init[i], - "tank_size": home_wh_size_dist[i], - "draw_sizes": home_wh_all_draw_size_dist[i], - }, - "hems": responsive_hems - }) - i += 1 + for j in range(num_pv_battery_homes): + name = all_names.pop() + self.all_homes += [{ + "name": name, + "type": "pv_battery", + "hvac": self.get_hvac_params(), + "wh": self.get_wh_params(), + "hems": self.get_hems_params(), + "battery": self.get_battery_params(), + "pv": self.get_pv_params() + }] + + for j in range(num_base_homes): + name = all_names.pop() + self.all_homes += [{ + "name": name, + "type": "base", + "hvac": self.get_hvac_params(), + "wh": self.get_wh_params(), + "hems": self.get_hems_params(), + }] + + self.contribution2peak = {home['name']:0 for home in self.all_homes} - self.all_homes = all_homes self.all_homes_obj = [] self.max_poss_load = 0 self.min_poss_load = 0 - for home in all_homes: - home_obj = MPCCalc(home) + + def create_mpc_home_obj(self): + for home in self.all_homes: + home_obj = MPCCalc(home, self.redis_url) self.all_homes_obj += [home_obj] self.max_poss_load += home_obj.max_load @@ -604,7 +539,9 @@ def reset_collected_data(self): "wh_heat_on_opt": [], "cost_opt": [], "waterdraws": [], - "correct_solve": [] + "correct_solve": [], + "t_in_min":[], + "t_in_max":[], } if 'pv' in home["type"]: self.collected_data[home["name"]]["p_pv_opt"] = [] @@ -613,6 +550,11 @@ def reset_collected_data(self): self.collected_data[home["name"]]["e_batt_opt"] = [home["battery"]["e_batt_init"]] self.collected_data[home["name"]]["p_batt_ch"] = [] self.collected_data[home["name"]]["p_batt_disch"] = [] + if True: # 'ev' in home["type"]: + self.collected_data[home["name"]]["e_ev_opt"] = [16.0] + self.collected_data[home["name"]]["p_ev_ch"] = [] + self.collected_data[home["name"]]["p_ev_disch"] = [] + self.collected_data[home["name"]]["p_v2g"] = [] def check_all_data_indices(self): """ @@ -634,6 +576,7 @@ def calc_start_hour_index(self): hour needs to be calculated. :return: None """ + start_hour_index = self.start_dt - self.all_data.index[0] self.start_hour_index = int(start_hour_index.total_seconds() / 3600) @@ -644,11 +587,12 @@ def redis_set_initial_values(self): """ self.timestep = 0 - self.redis_client.conn.set("start_hour_index", self.start_hour_index) - self.redis_client.conn.hset("current_values", "timestep", self.timestep) - + self.redis_client.set("start_hour_index", self.start_hour_index) + self.redis_client.hset("current_values", "timestep", self.timestep) + self.redis_client.hset("current_values", "start_index", self.start_index) + self.redis_client.hset("current_values", "end_index", self.end_index) self.reward_price = np.zeros(self.config['agg']['rl']['action_horizon'] * self.dt) - self.redis_client.conn.rpush("reward_price", *self.reward_price.tolist()) + self.redis_client.rpush("reward_price", *self.reward_price.tolist()) def redis_add_all_data(self): """ @@ -657,22 +601,23 @@ def redis_add_all_data(self): as the data in self.all_data, which is 8760 for default config file. :return: None """ + self.all_data.bfill(inplace=True) for c in self.all_data.columns.to_list(): - self.redis_client.conn.delete(c) - self.redis_client.conn.rpush(c, *self.all_data[c].values.tolist()) + self.redis_client.delete(c) + self.redis_client.rpush(c, *self.all_data[c].values.tolist()) def redis_set_current_values(self): """ Sets the current values of the utility agent (reward price). :return: None """ - self.redis_client.conn.hset("current_values", "timestep", self.timestep) + self.redis_client.hset("current_values", "timestep", self.timestep) if 'rl' in self.case: self.all_sps[self.timestep] = self.agg_setpoint self.all_rps[self.timestep] = self.reward_price[0] - self.redis_client.conn.delete("reward_price") - self.redis_client.conn.rpush("reward_price", *self.reward_price) + self.redis_client.delete("reward_price") + self.redis_client.rpush("reward_price", *self.reward_price) def gen_setpoint(self): """ @@ -721,9 +666,9 @@ def run_iteration(self): self.max_daily_ghi = max(self.ghi[day_of_year*(self.dt*24):(day_of_year+1)*(self.dt*24)]) pool = ProcessPool(nodes=self.config['simulation']['n_nodes']) # open a pool of nodes - results = pool.map(manage_home, self.as_list) + results = pool.map(manage_home, self.mpc_players) - self.timestep += 1 + # self.timestep = (self.timestep + 1) % self.num_timesteps def collect_data(self): """ @@ -732,27 +677,45 @@ def collect_data(self): """ agg_load = 0 agg_cost = 0 - self.house_load = [] + + house_load = {} self.forecast_house_load = [] + + # if self.timestep % (24 * self.dt) == 0: # at the end of the day + # self.daily_peak = 0.01 # remove if we want the max peak of the simulation + # for k,v in self.contribution2peak.items(): + # self.redis_client.hset("peak_contribution", k, v) + for home in self.all_homes: if self.check_type == 'all' or home["type"] == self.check_type: - vals = self.redis_client.conn.hgetall(home["name"]) + vals = self.redis_client.hgetall(home["name"]) for k, v in vals.items(): - opt_keys = ["p_grid_opt", "forecast_p_grid_opt", "p_load_opt", "temp_in_opt", "temp_wh_opt", "hvac_cool_on_opt", "hvac_heat_on_opt", "wh_heat_on_opt", "cost_opt", "waterdraws", "correct_solve"] + opt_keys = ["p_grid_opt", "forecast_p_grid_opt", "p_load_opt", "temp_in_opt", "temp_wh_opt", "hvac_cool_on_opt", "hvac_heat_on_opt", "wh_heat_on_opt", "cost_opt", "waterdraws", "correct_solve", "t_in_max", "t_in_min"] if 'pv' in home["type"]: opt_keys += ['p_pv_opt','u_pv_curt_opt'] if 'battery' in home["type"]: opt_keys += ['p_batt_ch', 'p_batt_disch', 'e_batt_opt'] + if True: #'ev' in home["type"]: + opt_keys += ['p_ev_ch', 'p_ev_disch', 'p_v2g', 'e_ev_opt'] if k in opt_keys: self.collected_data[home["name"]][k].append(float(v)) - self.house_load.append(float(vals["p_grid_opt"])) + house_load.update({home['name']:float(vals["p_grid_opt"])}) self.forecast_house_load.append(float(vals["forecast_p_grid_opt"])) agg_cost += float(vals["cost_opt"]) - self.agg_load = np.sum(self.house_load) + self.agg_load = sum(house_load.values()) + + if self.agg_load >= self.daily_peak and self.agg_load >= 0.1: + self.daily_peak = self.agg_load + self.contribution2peak = {k:house_load[k]/self.daily_peak for k,v in self.contribution2peak.items()} + for k,v in self.contribution2peak.items(): + self.redis_client.hset("peak_contribution", k, v) + self.forecast_load = np.sum(self.forecast_house_load) self.agg_cost = agg_cost self.baseline_agg_load_list.append(self.agg_load) self.agg_setpoint = self.gen_setpoint() + self.log.logger.info(f"At time t={self.timestep} aggregate load is {round(self.agg_load,2)} kW.") + self.timestep = (self.timestep + 1) % self.num_timesteps def run_baseline(self): """ @@ -764,10 +727,10 @@ def run_baseline(self): self.log.logger.info(f"Performing baseline run for horizon: {self.config['home']['hems']['prediction_horizon']}") self.start_time = datetime.now() - self.as_list = [] + self.mpc_players = [] for home in self.all_homes_obj: if self.check_type == "all" or home.type == self.check_type: - self.as_list += [home] + self.mpc_players += [home] for t in range(self.num_timesteps): self.redis_set_current_values() self.run_iteration() @@ -796,6 +759,7 @@ def summarize_baseline(self): "case": self.case, "start_datetime": self.start_dt.strftime('%Y-%m-%d %H'), "end_datetime": self.end_dt.strftime('%Y-%m-%d %H'), + "num_timesteps": self.num_timesteps, "solve_time": self.t_diff.total_seconds(), "horizon": self.config['home']['hems']['prediction_horizon'], "num_homes": self.config['community']['total_number_homes'], @@ -804,16 +768,15 @@ def summarize_baseline(self): "OAT": self.all_data.loc[self.mask, "OAT"].values.tolist(), "GHI": self.all_data.loc[self.mask, "GHI"].values.tolist(), "RP": self.all_rps.tolist(), - "p_grid_setpoint": self.all_sps.tolist(), - # "rl_rewards": self.all_rewards + "p_grid_setpoint": self.all_sps.tolist() } self.my_summary() if self.config['agg']['spp_enabled']: - self.collected_data["Summary"]["SPP"] = self.all_data.loc[self.mask, "SPP"].values.tolist(), + self.collected_data["Summary"]["SPP"] = self.all_data.loc[self.mask, "SPP"].values.tolist() else: - self.collected_data["Summary"]["TOU"] = self.all_data.loc[self.mask, "tou"].values.tolist(), + self.collected_data["Summary"]["TOU"] = self.all_data.loc[self.mask, "tou"].values.tolist() def set_run_dir(self): """ @@ -821,12 +784,15 @@ def set_run_dir(self): and the named version. :return: none """ - date_output = os.path.join(self.outputs_dir, f"{self.start_dt.strftime('%Y-%m-%dT%H')}_{self.end_dt.strftime('%Y-%m-%dT%H')}") - mpc_output = os.path.join(date_output, f"{self.check_type}-homes_{self.config['community']['total_number_homes']}-horizon_{self.config['home']['hems']['prediction_horizon']}-interval_{self.dt_interval}-{self.dt_interval // self.config['home']['hems']['sub_subhourly_steps']}-solver_{self.config['home']['hems']['solver']}") + if not self.overwrite_output: + date_output = os.path.join(self.outputs_dir, f"{self.start_dt.strftime('%Y-%m-%dT%H')}_{self.end_dt.strftime('%Y-%m-%dT%H')}") + mpc_output = os.path.join(date_output, f"{self.check_type}-homes_{self.config['community']['total_number_homes']}-horizon_{self.config['home']['hems']['prediction_horizon']}-interval_{self.dt_interval}-{self.dt_interval // self.config['home']['hems']['sub_subhourly_steps']}-solver_{self.config['home']['hems']['solver']}") - self.run_dir = os.path.join(mpc_output, f"version-{self.version}") - if not os.path.isdir(self.run_dir): - os.makedirs(self.run_dir) + self.run_dir = os.path.join(mpc_output, f"version-{self.version}") + if not os.path.isdir(self.run_dir): + os.makedirs(self.run_dir) + else: + self.run_dir = self.outputs_dir def write_outputs(self): """ @@ -834,12 +800,18 @@ def write_outputs(self): called at the end of the simulation run period and optionally at a checkpoint period. :return: None """ + self.summarize_baseline() - case_dir = os.path.join(self.run_dir, self.case) - if not os.path.isdir(case_dir): - os.makedirs(case_dir) - file = os.path.join(case_dir, "results.json") + if not self.overwrite_output: + case_dir = os.path.join(self.run_dir, self.case) + if not os.path.isdir(case_dir): + os.makedirs(case_dir) + file = os.path.join(case_dir, "results.json") + else: + file = os.path.join(self.outputs_dir, "results.json") + + print(f'Writing outputs to file {file}') with open(file, 'w+') as f: json.dump(self.collected_data, f, indent=4) @@ -851,7 +823,7 @@ def write_home_configs(self): """ ah = os.path.join(self.outputs_dir, f"all_homes-{self.config['community']['total_number_homes']}-config.json") with open(ah, 'w+') as f: - json.dump(self.all_homes, f, indent=4) + json.dump(self.all_homes + [{"start_dt":self.str_start_dt, "end_dt":self.str_end_dt, "num_timesteps":self.num_timesteps}], f, indent=4) def set_agg_mpc_initial_vals(self): """ @@ -870,16 +842,14 @@ def set_agg_mpc_initial_vals(self): def set_dummy_rl_parameters(self): self.tracked_loads = self.config['community']['house_p_avg']*self.config['community']['total_number_homes']*np.ones(12) - # self.util = self.util_permutations[0] - # self.rl_params = self.rl_permutations[0] def setup_rl_agg_run(self): self.flush_redis() - self.as_list = [] + self.mpc_players = [] for home in self.all_homes_obj: if self.check_type == "all" or home["type"] == self.check_type: - self.as_list += [home] + self.mpc_players += [home] # self.log.logger.info(f"Performing RL AGG (agg. horizon: {self.util['rl_agg_horizon']}, learning rate: {self.rl_params['alpha']}, discount factor: {self.rl_params['beta']}, exploration rate: {self.rl_params['epsilon']}) with MPC HEMS for horizon: {self.config['home']['hems']['prediction_horizon']}") self.start_time = datetime.now() @@ -895,28 +865,13 @@ def setup_rl_agg_run(self): self.redis_set_current_values() - def test_response(self): - """ - Tests the RL agent using a linear model of the community's response - to changes in the reward price. - :return: None - """ - c = self.config['agg']['simplified']['response_rate'] - k = self.config['agg']['simplified']['offset'] - if self.timestep == 0: - self.agg_load = self.agg_setpoint + 0.1*self.agg_setpoint - self.agg_load = self.agg_load - c * self.reward_price[0] * (self.agg_setpoint - self.agg_load) - self.agg_cost = self.agg_load * self.reward_price[0] - self.log.logger.info(f"Iteration {self.timestep} finished. Aggregate load {self.agg_load}") - self.timestep += 1 - def flush_redis(self): """ Cleans all information stored in the Redis server. (Including environmental and home data.) :return: None """ - self.redis_client.conn.flushall() + self.redis_client.flushall() self.log.logger.info("Flushing Redis") time.sleep(1) self.check_all_data_indices() @@ -924,20 +879,6 @@ def flush_redis(self): self.redis_add_all_data() self.redis_set_initial_values() - # def set_value_permutations(self): - # """ - # --CURRENTLY DEPRICATED TO INTERFACE WITH DRAGGEnv-- - # Uses the list of config parameters to create permutations of all parameters listed - # for use in batch runs. - # """ - # mpc_parameters = {"horizon": [int(i) for i in self.config['home']['hems'][]]} - # keys, values = zip(*mpc_parameters.items()) - # self.mpc_permutations = [dict(zip(keys, v)) for v in it.product(*values)] - # - # util_parameters = {"rl_agg_horizon": [int(i) for i in self.config['agg'][]]]} - # keys, values = zip(*util_parameters.items()) - # self.util_permutations = [dict(zip(keys, v)) for v in it.product(*values)] - def run(self): """ Runs simulation(s) specified in the config file with all combinations of @@ -951,7 +892,7 @@ def run(self): self.checkpoint_interval = self.dt elif self.config['simulation']['checkpoint_interval'] == 'daily': self.checkpoint_interval = self.dt * 24 - elif self.config['simulation']['checkpoint_interval'] == "weekly": + elif self.config['simulation']['checkpoint_interval'] == 'weekly': self.checkpoint_interval = self.dt * 24 * 7 self.version = self.config['simulation']['named_version'] @@ -968,3 +909,7 @@ def run(self): self.reset_collected_data() self.run_baseline() self.write_outputs() + +if __name__=="__main__": + a = Aggregator() + a.run() diff --git a/dragg/data/config-template.toml b/dragg/data/config-template.toml deleted file mode 100644 index 4b0cb7f..0000000 --- a/dragg/data/config-template.toml +++ /dev/null @@ -1,70 +0,0 @@ -[community] -total_number_homes = 10 -homes_battery = 0 -homes_pv = 4 -homes_pv_battery = 0 -overwrite_existing = true -house_p_avg = 1.2 - -[simulation] -start_datetime = "2015-01-01 00" -end_datetime = "2015-01-04 00" -random_seed = 12 -n_nodes = 4 -load_zone = "LZ_HOUSTON" -check_type = "all" -run_rbo_mpc = true -checkpoint_interval = "daily" -named_version = "test" - -[agg] -base_price = 0.07 -subhourly_steps = 1 -tou_enabled = true -spp_enabled = false - -[agg.rl] -action_horizon = 1 -forecast_horizon = 1 -prev_timesteps = 12 -max_rp = 0.02 - -[home.hvac] -r_dist = [ 6.8, 9.199999999999999,] -c_dist = [ 4.25, 5.75,] -p_cool_dist = [ 3.5, 3.5,] -p_heat_dist = [ 3.5, 3.5,] -temp_sp_dist = [ 18, 22,] -temp_deadband_dist = [ 2, 3,] - -[home.wh] -r_dist = [ 18.7, 25.3,] -p_dist = [ 2.5, 2.5,] -sp_dist = [ 45.5, 48.5,] -deadband_dist = [ 9, 12,] -size_dist = [ 200, 300,] -waterdraw_file = '100_Random_Flow_Profiles.csv' - -[home.battery] -max_rate = [3,5] -capacity = [9.0,13.5] -lower_bound = [ 0.01, 0.15] -upper_bound = [ 0.85, 0.99] -charge_eff = [0.85, 0.95] -discharge_eff = [0.97, 0.99] - -[home.pv] -area = [20, 32] -efficiency = [0.15, 0.2] - -[home.hems] -prediction_horizon = 6 -sub_subhourly_steps = 6 -discount_factor = 0.92 -solver = "GLPK_MI" - -[agg.tou] -shoulder_times = [ 9, 21,] -shoulder_price = 0.09 -peak_times = [ 14, 18,] -peak_price = 0.13 diff --git a/dragg/data/config.toml b/dragg/data/config.toml index 4b0cb7f..529cd63 100644 --- a/dragg/data/config.toml +++ b/dragg/data/config.toml @@ -1,25 +1,31 @@ [community] -total_number_homes = 10 +total_number_homes = 1 homes_battery = 0 -homes_pv = 4 +homes_pv = 0 homes_pv_battery = 0 overwrite_existing = true house_p_avg = 1.2 +n_players = 0 + +[community.schedules] +early_birds = 0.25 +night_owls = 0.25 +normal = 0.5 [simulation] -start_datetime = "2015-01-01 00" -end_datetime = "2015-01-04 00" +start_datetime = "2003-01-01 00" +end_datetime = "2003-01-02 00" random_seed = 12 -n_nodes = 4 +n_nodes = 1 load_zone = "LZ_HOUSTON" check_type = "all" run_rbo_mpc = true checkpoint_interval = "daily" -named_version = "test" +named_version = "final" [agg] base_price = 0.07 -subhourly_steps = 1 +subhourly_steps = 2 tou_enabled = true spp_enabled = false @@ -30,12 +36,16 @@ prev_timesteps = 12 max_rp = 0.02 [home.hvac] -r_dist = [ 6.8, 9.199999999999999,] -c_dist = [ 4.25, 5.75,] -p_cool_dist = [ 3.5, 3.5,] -p_heat_dist = [ 3.5, 3.5,] +r_dist = [ 0.014, 0.02,] +c_dist = [ 1.2, 1.7,] +window_eq_dist = [2, 5] +seer = 20 +hspf = 10 +p_cool_dist = [ 6.5, 8.5,] +p_heat_dist = [ 4.5, 4.5,] temp_sp_dist = [ 18, 22,] temp_deadband_dist = [ 2, 3,] +temp_setback_delta = [ 1,2] [home.wh] r_dist = [ 18.7, 25.3,] @@ -58,8 +68,9 @@ area = [20, 32] efficiency = [0.15, 0.2] [home.hems] -prediction_horizon = 6 -sub_subhourly_steps = 6 +weekday_occ_schedule = [19,8,17,18] +prediction_horizon = 4 +sub_subhourly_steps = 4 discount_factor = 0.92 solver = "GLPK_MI" diff --git a/dragg/data/nsrdb.csv b/dragg/data/nsrdb.csv old mode 100755 new mode 100644 index af8fe44..6b14bcb --- a/dragg/data/nsrdb.csv +++ b/dragg/data/nsrdb.csv @@ -1,17523 +1,8763 @@ -Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version -NSRDB,734589,-,-,-,29.69,-95.34,-6,12,-6,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,v3.0.1 -Year,Month,Day,Hour,Minute,GHI,Relative Humidity,Temperature,Pressure -2015,1,1,0,0,0,93.69,5,1020.0 -2015,1,1,0,30,0,93.67,5,1020.0 -2015,1,1,1,0,0,93.78,5,1020.0 -2015,1,1,1,30,0,93.75,5,1020.0 -2015,1,1,2,0,0,94.13,5,1020.0 -2015,1,1,2,30,0,94.10000000000001,5,1020.0 -2015,1,1,3,0,0,94.5,5,1020.0 -2015,1,1,3,30,0,94.48,5,1020.0 -2015,1,1,4,0,0,94.47,5,1020.0 -2015,1,1,4,30,0,94.46000000000001,5,1020.0 -2015,1,1,5,0,0,95.18,5,1020.0 -2015,1,1,5,30,0,95.19,5,1020.0 -2015,1,1,6,0,0,95.95,5,1020.0 -2015,1,1,6,30,0,95.96000000000001,5,1020.0 -2015,1,1,7,0,0,96.37,5,1020.0 -2015,1,1,7,30,2,96.38,5,1020.0 -2015,1,1,8,0,12,97.16,5,1020.0 -2015,1,1,8,30,28,97.16,5,1020.0 -2015,1,1,9,0,38,92.81,6,1020.0 -2015,1,1,9,30,44,92.79,6,1020.0 -2015,1,1,10,0,90,89.43,7,1020.0 -2015,1,1,10,30,105,89.38,7,1020.0 -2015,1,1,11,0,154,92.77,8,1020.0 -2015,1,1,11,30,203,92.7,8,1020.0 -2015,1,1,12,0,179,89.4,8,1020.0 -2015,1,1,12,30,176,89.33,8,1020.0 -2015,1,1,13,0,70,91.31,8,1010.0 -2015,1,1,13,30,121,91.28,8,1010.0 -2015,1,1,14,0,160,93.05,8,1010.0 -2015,1,1,14,30,96,93.03,8,1010.0 -2015,1,1,15,0,121,93.9,8,1010.0 -2015,1,1,15,30,141,93.9,8,1010.0 -2015,1,1,16,0,95,93.74,8,1010.0 -2015,1,1,16,30,75,100.0,7,1010.0 -2015,1,1,17,0,30,99.46000000000001,7,1010.0 -2015,1,1,17,30,0,99.48,7,1010.0 -2015,1,1,18,0,0,99.11,7,1010.0 -2015,1,1,18,30,0,99.12,7,1010.0 -2015,1,1,19,0,0,98.92,7,1010.0 -2015,1,1,19,30,0,98.92,7,1010.0 -2015,1,1,20,0,0,98.79,7,1010.0 -2015,1,1,20,30,0,98.77,7,1010.0 -2015,1,1,21,0,0,98.85000000000001,7,1010.0 -2015,1,1,21,30,0,98.83,7,1010.0 -2015,1,1,22,0,0,98.97,7,1010.0 -2015,1,1,22,30,0,98.95,7,1010.0 -2015,1,1,23,0,0,99.2,7,1010.0 -2015,1,1,23,30,0,99.18,7,1010.0 -2015,1,2,0,0,0,99.45,7,1010.0 -2015,1,2,0,30,0,99.43,7,1010.0 -2015,1,2,1,0,0,99.48,7,1010.0 -2015,1,2,1,30,0,99.47,7,1010.0 -2015,1,2,2,0,0,99.37,7,1010.0 -2015,1,2,2,30,0,99.37,7,1010.0 -2015,1,2,3,0,0,99.39,7,1010.0 -2015,1,2,3,30,0,99.38,7,1010.0 -2015,1,2,4,0,0,99.34,7,1010.0 -2015,1,2,4,30,0,99.34,7,1010.0 -2015,1,2,5,0,0,99.31,7,1010.0 -2015,1,2,5,30,0,99.32000000000001,7,1010.0 -2015,1,2,6,0,0,99.32000000000001,7,1010.0 -2015,1,2,6,30,0,99.33,7,1010.0 -2015,1,2,7,0,0,99.79,7,1010.0 -2015,1,2,7,30,6,99.81,7,1010.0 -2015,1,2,8,0,35,96.46000000000001,8,1010.0 -2015,1,2,8,30,51,96.47,8,1010.0 -2015,1,2,9,0,37,95.53,9,1010.0 -2015,1,2,9,30,49,89.32000000000001,10,1010.0 -2015,1,2,10,0,140,89.29,11,1010.0 -2015,1,2,10,30,162,89.24,11,1010.0 -2015,1,2,11,0,111,89.01,12,1010.0 -2015,1,2,11,30,103,88.94,12,1010.0 -2015,1,2,12,0,27,88.77,13,1010.0 -2015,1,2,12,30,148,88.72,13,1010.0 -2015,1,2,13,0,228,88.51,14,1010.0 -2015,1,2,13,30,103,88.49,14,1010.0 -2015,1,2,14,0,45,92.91,14,1010.0 -2015,1,2,14,30,136,92.9,14,1010.0 -2015,1,2,15,0,15,95.95,14,1010.0 -2015,1,2,15,30,8,95.94,14,1010.0 -2015,1,2,16,0,3,97.78,14,1010.0 -2015,1,2,16,30,2,100.0,13,1010.0 -2015,1,2,17,0,0,100.0,13,1010.0 -2015,1,2,17,30,0,100.0,13,1010.0 -2015,1,2,18,0,0,100.0,13,1010.0 -2015,1,2,18,30,0,100.0,13,1010.0 -2015,1,2,19,0,0,100.0,13,1010.0 -2015,1,2,19,30,0,100.0,13,1010.0 -2015,1,2,20,0,0,100.0,13,1010.0 -2015,1,2,20,30,0,100.0,13,1010.0 -2015,1,2,21,0,0,100.0,13,1010.0 -2015,1,2,21,30,0,100.0,12,1010.0 -2015,1,2,22,0,0,100.0,12,1010.0 -2015,1,2,22,30,0,100.0,12,1010.0 -2015,1,2,23,0,0,100.0,12,1010.0 -2015,1,2,23,30,0,100.0,11,1010.0 -2015,1,3,0,0,0,100.0,11,1010.0 -2015,1,3,0,30,0,100.0,10,1010.0 -2015,1,3,1,0,0,100.0,10,1010.0 -2015,1,3,1,30,0,100.0,10,1010.0 -2015,1,3,2,0,0,99.59,10,1010.0 -2015,1,3,2,30,0,100.0,9,1010.0 -2015,1,3,3,0,0,100.0,9,1010.0 -2015,1,3,3,30,0,100.0,9,1010.0 -2015,1,3,4,0,0,100.0,9,1010.0 -2015,1,3,4,30,0,100.0,8,1010.0 -2015,1,3,5,0,0,100.0,8,1010.0 -2015,1,3,5,30,0,100.0,8,1010.0 -2015,1,3,6,0,0,100.0,9,1010.0 -2015,1,3,6,30,0,100.0,9,1010.0 -2015,1,3,7,0,0,96.79,9,1010.0 -2015,1,3,7,30,0,96.83,9,1010.0 -2015,1,3,8,0,3,97.10000000000001,9,1010.0 -2015,1,3,8,30,7,97.13,9,1010.0 -2015,1,3,9,0,11,93.31,10,1010.0 -2015,1,3,9,30,14,93.31,10,1010.0 -2015,1,3,10,0,28,89.79,11,1010.0 -2015,1,3,10,30,33,89.75,11,1010.0 -2015,1,3,11,0,37,85.85000000000001,12,1010.0 -2015,1,3,11,30,40,85.79,12,1010.0 -2015,1,3,12,0,72,81.47,13,1010.0 -2015,1,3,12,30,73,81.43,13,1010.0 -2015,1,3,13,0,183,76.94,14,1010.0 -2015,1,3,13,30,192,76.93,14,1010.0 -2015,1,3,14,0,298,71.85000000000001,15,1010.0 -2015,1,3,14,30,323,76.64,15,1010.0 -2015,1,3,15,0,182,75.39,15,1010.0 -2015,1,3,15,30,287,80.47,14,1010.0 -2015,1,3,16,0,217,81.96000000000001,13,1010.0 -2015,1,3,16,30,150,93.51,12,1010.0 -2015,1,3,17,0,66,96.0,11,1010.0 -2015,1,3,17,30,0,100.0,10,1010.0 -2015,1,3,18,0,0,96.59,9,1010.0 -2015,1,3,18,30,0,96.63,9,1010.0 -2015,1,3,19,0,0,94.79,9,1010.0 -2015,1,3,19,30,0,100.0,8,1010.0 -2015,1,3,20,0,0,100.0,8,1010.0 -2015,1,3,20,30,0,100.0,8,1010.0 -2015,1,3,21,0,0,99.10000000000001,8,1010.0 -2015,1,3,21,30,0,100.0,8,1010.0 -2015,1,3,22,0,0,100.0,8,1010.0 -2015,1,3,22,30,0,100.0,7,1010.0 -2015,1,3,23,0,0,100.0,7,1010.0 -2015,1,3,23,30,0,100.0,6,1010.0 -2015,1,4,0,0,0,100.0,6,1010.0 -2015,1,4,0,30,0,100.0,5,1010.0 -2015,1,4,1,0,0,100.0,5,1010.0 -2015,1,4,1,30,0,100.0,4,1010.0 -2015,1,4,2,0,0,100.0,4,1020.0 -2015,1,4,2,30,0,100.0,4,1020.0 -2015,1,4,3,0,0,100.0,5,1020.0 -2015,1,4,3,30,0,100.0,5,1020.0 -2015,1,4,4,0,0,100.0,5,1020.0 -2015,1,4,4,30,0,100.0,5,1020.0 -2015,1,4,5,0,0,100.0,5,1020.0 -2015,1,4,5,30,0,100.0,5,1020.0 -2015,1,4,6,0,0,100.0,5,1020.0 -2015,1,4,6,30,0,100.0,5,1020.0 -2015,1,4,7,0,0,96.87,5,1020.0 -2015,1,4,7,30,18,96.94,5,1020.0 -2015,1,4,8,0,97,90.14,6,1020.0 -2015,1,4,8,30,193,84.21000000000001,7,1020.0 -2015,1,4,9,0,221,78.16,8,1020.0 -2015,1,4,9,30,381,78.19,8,1020.0 -2015,1,4,10,0,462,70.74,9,1020.0 -2015,1,4,10,30,532,70.74,9,1020.0 -2015,1,4,11,0,486,64.29,10,1020.0 -2015,1,4,11,30,557,64.28,10,1020.0 -2015,1,4,12,0,575,58.57,11,1020.0 -2015,1,4,12,30,582,58.56,11,1020.0 -2015,1,4,13,0,554,56.46,11,1020.0 -2015,1,4,13,30,625,56.46,11,1020.0 -2015,1,4,14,0,523,53.71,11,1020.0 -2015,1,4,14,30,487,57.410000000000004,10,1020.0 -2015,1,4,15,0,412,54.32,10,1020.0 -2015,1,4,15,30,356,58.11,9,1020.0 -2015,1,4,16,0,182,56.300000000000004,9,1020.0 -2015,1,4,16,30,132,60.27,8,1030.0 -2015,1,4,17,0,60,66.2,7,1030.0 -2015,1,4,17,30,0,70.95,6,1030.0 -2015,1,4,18,0,0,75.75,5,1030.0 -2015,1,4,18,30,0,81.27,5,1030.0 -2015,1,4,19,0,0,80.26,5,1030.0 -2015,1,4,19,30,0,80.28,4,1030.0 -2015,1,4,20,0,0,78.98,4,1030.0 -2015,1,4,20,30,0,84.75,3,1030.0 -2015,1,4,21,0,0,82.75,3,1030.0 -2015,1,4,21,30,0,88.84,2,1030.0 -2015,1,4,22,0,0,86.26,2,1030.0 -2015,1,4,22,30,0,86.28,2,1030.0 -2015,1,4,23,0,0,84.13,2,1030.0 -2015,1,4,23,30,0,90.4,1,1030.0 -2015,1,5,0,0,0,88.29,1,1030.0 -2015,1,5,0,30,0,88.31,1,1030.0 -2015,1,5,1,0,0,86.18,1,1030.0 -2015,1,5,1,30,0,92.63,0,1030.0 -2015,1,5,2,0,0,90.37,0,1030.0 -2015,1,5,2,30,0,90.36,0,1030.0 -2015,1,5,3,0,0,88.10000000000001,0,1030.0 -2015,1,5,3,30,0,88.09,0,1030.0 -2015,1,5,4,0,0,85.97,0,1030.0 -2015,1,5,4,30,0,85.97,0,1030.0 -2015,1,5,5,0,0,84.4,0,1030.0 -2015,1,5,5,30,0,84.41,0,1030.0 -2015,1,5,6,0,0,89.55,0,1030.0 -2015,1,5,6,30,0,89.57000000000001,0,1030.0 -2015,1,5,7,0,0,88.92,0,1030.0 -2015,1,5,7,30,13,82.7,0,1030.0 -2015,1,5,8,0,66,81.10000000000001,0,1030.0 -2015,1,5,8,30,140,75.47,1,1030.0 -2015,1,5,9,0,251,69.51,2,1030.0 -2015,1,5,9,30,327,64.73,3,1030.0 -2015,1,5,10,0,412,61.24,4,1030.0 -2015,1,5,10,30,479,57.08,5,1030.0 -2015,1,5,11,0,502,55.22,6,1030.0 -2015,1,5,11,30,554,51.51,7,1030.0 -2015,1,5,12,0,610,50.81,8,1030.0 -2015,1,5,12,30,591,50.77,8,1030.0 -2015,1,5,13,0,573,49.57,9,1030.0 -2015,1,5,13,30,580,49.54,9,1030.0 -2015,1,5,14,0,532,48.01,10,1030.0 -2015,1,5,14,30,538,47.99,10,1030.0 -2015,1,5,15,0,462,49.09,10,1030.0 -2015,1,5,15,30,375,52.480000000000004,9,1030.0 -2015,1,5,16,0,280,58.7,9,1030.0 -2015,1,5,16,30,180,62.79,8,1030.0 -2015,1,5,17,0,82,58.050000000000004,8,1030.0 -2015,1,5,17,30,0,62.13,7,1030.0 -2015,1,5,18,0,0,58.77,7,1030.0 -2015,1,5,18,30,0,58.77,7,1030.0 -2015,1,5,19,0,0,57.85,7,1030.0 -2015,1,5,19,30,0,61.97,6,1030.0 -2015,1,5,20,0,0,61.620000000000005,6,1030.0 -2015,1,5,20,30,0,61.61,6,1030.0 -2015,1,5,21,0,0,61.690000000000005,6,1030.0 -2015,1,5,21,30,0,66.1,5,1030.0 -2015,1,5,22,0,0,67.24,5,1020.0 -2015,1,5,22,30,0,72.08,4,1020.0 -2015,1,5,23,0,0,74.03,4,1020.0 -2015,1,5,23,30,0,79.41,3,1020.0 -2015,1,6,0,0,0,82.02,3,1020.0 -2015,1,6,0,30,0,88.04,2,1020.0 -2015,1,6,1,0,0,91.25,2,1020.0 -2015,1,6,1,30,0,91.24,2,1020.0 -2015,1,6,2,0,0,93.5,2,1020.0 -2015,1,6,2,30,0,93.48,2,1020.0 -2015,1,6,3,0,0,95.06,2,1020.0 -2015,1,6,3,30,0,95.05,2,1020.0 -2015,1,6,4,0,0,95.93,2,1020.0 -2015,1,6,4,30,0,95.93,2,1020.0 -2015,1,6,5,0,0,96.38,2,1020.0 -2015,1,6,5,30,0,96.39,2,1020.0 -2015,1,6,6,0,0,96.72,2,1020.0 -2015,1,6,6,30,0,96.75,2,1020.0 -2015,1,6,7,0,0,97.91,2,1020.0 -2015,1,6,7,30,8,91.24,3,1020.0 -2015,1,6,8,0,43,84.78,5,1020.0 -2015,1,6,8,30,103,79.12,6,1030.0 -2015,1,6,9,0,220,72.53,8,1030.0 -2015,1,6,9,30,320,67.79,9,1030.0 -2015,1,6,10,0,449,62.33,11,1030.0 -2015,1,6,10,30,518,58.32,12,1020.0 -2015,1,6,11,0,572,55.85,13,1020.0 -2015,1,6,11,30,612,52.31,14,1020.0 -2015,1,6,12,0,634,49.78,15,1020.0 -2015,1,6,12,30,531,49.75,15,1020.0 -2015,1,6,13,0,512,47.52,16,1020.0 -2015,1,6,13,30,490,47.5,16,1020.0 -2015,1,6,14,0,561,48.34,16,1020.0 -2015,1,6,14,30,504,48.32,16,1020.0 -2015,1,6,15,0,434,50.7,16,1020.0 -2015,1,6,15,30,352,54.04,15,1020.0 -2015,1,6,16,0,262,63.15,15,1020.0 -2015,1,6,16,30,167,67.35,14,1020.0 -2015,1,6,17,0,76,63.230000000000004,13,1020.0 -2015,1,6,17,30,0,67.52,12,1020.0 -2015,1,6,18,0,0,64.45,12,1020.0 -2015,1,6,18,30,0,68.85000000000001,11,1020.0 -2015,1,6,19,0,0,68.55,11,1020.0 -2015,1,6,19,30,0,68.55,11,1020.0 -2015,1,6,20,0,0,69.02,11,1020.0 -2015,1,6,20,30,0,73.76,10,1020.0 -2015,1,6,21,0,0,75.18,10,1020.0 -2015,1,6,21,30,0,80.39,9,1020.0 -2015,1,6,22,0,0,82.47,9,1020.0 -2015,1,6,22,30,0,82.46000000000001,9,1020.0 -2015,1,6,23,0,0,84.7,9,1020.0 -2015,1,6,23,30,0,90.61,8,1020.0 -2015,1,7,0,0,0,92.84,8,1020.0 -2015,1,7,0,30,0,92.84,8,1020.0 -2015,1,7,1,0,0,94.72,8,1020.0 -2015,1,7,1,30,0,100.0,8,1020.0 -2015,1,7,2,0,0,100.0,8,1020.0 -2015,1,7,2,30,0,100.0,7,1020.0 -2015,1,7,3,0,0,100.0,7,1020.0 -2015,1,7,3,30,0,100.0,6,1020.0 -2015,1,7,4,0,0,100.0,6,1020.0 -2015,1,7,4,30,0,100.0,6,1020.0 -2015,1,7,5,0,0,100.0,6,1020.0 -2015,1,7,5,30,0,100.0,6,1020.0 -2015,1,7,6,0,0,100.0,6,1020.0 -2015,1,7,6,30,0,100.0,6,1020.0 -2015,1,7,7,0,0,95.62,7,1020.0 -2015,1,7,7,30,14,89.37,8,1020.0 -2015,1,7,8,0,82,85.15,9,1020.0 -2015,1,7,8,30,16,85.19,10,1020.0 -2015,1,7,9,0,25,82.41,11,1020.0 -2015,1,7,9,30,62,77.12,11,1020.0 -2015,1,7,10,0,68,75.94,12,1020.0 -2015,1,7,10,30,103,71.12,13,1020.0 -2015,1,7,11,0,158,68.68,14,1020.0 -2015,1,7,11,30,199,68.67,14,1020.0 -2015,1,7,12,0,270,65.42,15,1020.0 -2015,1,7,12,30,344,65.42,15,1020.0 -2015,1,7,13,0,278,65.09,15,1020.0 -2015,1,7,13,30,326,65.1,15,1020.0 -2015,1,7,14,0,314,63.46,15,1020.0 -2015,1,7,14,30,357,67.72,14,1030.0 -2015,1,7,15,0,298,63.6,14,1030.0 -2015,1,7,15,30,241,67.92,13,1030.0 -2015,1,7,16,0,249,65.32000000000001,13,1030.0 -2015,1,7,16,30,158,69.83,11,1030.0 -2015,1,7,17,0,74,66.14,10,1030.0 -2015,1,7,17,30,0,70.77,9,1030.0 -2015,1,7,18,0,0,69.32000000000001,8,1030.0 -2015,1,7,18,30,0,74.24,7,1030.0 -2015,1,7,19,0,0,70.74,7,1030.0 -2015,1,7,19,30,0,75.79,6,1030.0 -2015,1,7,20,0,0,78.24,5,1030.0 -2015,1,7,20,30,0,78.25,5,1030.0 -2015,1,7,21,0,0,74.39,5,1030.0 -2015,1,7,21,30,0,79.77,4,1030.0 -2015,1,7,22,0,0,76.39,4,1030.0 -2015,1,7,22,30,0,81.95,3,1030.0 -2015,1,7,23,0,0,78.60000000000001,3,1030.0 -2015,1,7,23,30,0,84.38,2,1030.0 -2015,1,8,0,0,0,80.74,2,1030.0 -2015,1,8,0,30,0,86.72,1,1030.0 -2015,1,8,1,0,0,82.3,1,1030.0 -2015,1,8,1,30,0,82.28,1,1030.0 -2015,1,8,2,0,0,77.9,1,1030.0 -2015,1,8,2,30,0,83.72,0,1030.0 -2015,1,8,3,0,0,79.52,0,1030.0 -2015,1,8,3,30,0,79.51,0,1030.0 -2015,1,8,4,0,0,75.23,0,1030.0 -2015,1,8,4,30,0,75.24,0,1030.0 -2015,1,8,5,0,0,77.04,-1,1030.0 -2015,1,8,5,30,0,77.05,-1,1030.0 -2015,1,8,6,0,0,73.8,-1,1030.0 -2015,1,8,6,30,0,73.8,-1,1030.0 -2015,1,8,7,0,0,70.77,-1,1030.0 -2015,1,8,7,30,18,65.8,0,1030.0 -2015,1,8,8,0,97,57.410000000000004,0,1030.0 -2015,1,8,8,30,192,57.4,0,1030.0 -2015,1,8,9,0,288,52.86,1,1030.0 -2015,1,8,9,30,378,49.160000000000004,1,1030.0 -2015,1,8,10,0,458,44.77,2,1030.0 -2015,1,8,10,30,526,44.730000000000004,2,1030.0 -2015,1,8,11,0,523,42.300000000000004,3,1030.0 -2015,1,8,11,30,547,42.26,4,1030.0 -2015,1,8,12,0,633,40.53,5,1030.0 -2015,1,8,12,30,638,40.5,5,1030.0 -2015,1,8,13,0,484,39.25,5,1030.0 -2015,1,8,13,30,434,39.230000000000004,5,1020.0 -2015,1,8,14,0,547,40.56,6,1020.0 -2015,1,8,14,30,436,40.550000000000004,5,1020.0 -2015,1,8,15,0,183,43.12,5,1020.0 -2015,1,8,15,30,172,43.11,5,1020.0 -2015,1,8,16,0,185,47.81,5,1020.0 -2015,1,8,16,30,75,51.25,4,1020.0 -2015,1,8,17,0,34,69.78,4,1020.0 -2015,1,8,17,30,0,74.85000000000001,3,1020.0 -2015,1,8,18,0,0,80.3,3,1020.0 -2015,1,8,18,30,0,80.28,3,1020.0 -2015,1,8,19,0,0,79.32000000000001,3,1020.0 -2015,1,8,19,30,0,79.31,3,1020.0 -2015,1,8,20,0,0,79.91,3,1020.0 -2015,1,8,20,30,0,79.9,3,1020.0 -2015,1,8,21,0,0,81.92,3,1020.0 -2015,1,8,21,30,0,81.91,3,1020.0 -2015,1,8,22,0,0,83.99,3,1020.0 -2015,1,8,22,30,0,83.99,3,1020.0 -2015,1,8,23,0,0,83.54,3,1020.0 -2015,1,8,23,30,0,83.55,3,1020.0 -2015,1,9,0,0,0,84.97,4,1020.0 -2015,1,9,0,30,0,84.98,3,1020.0 -2015,1,9,1,0,0,88.09,3,1020.0 -2015,1,9,1,30,0,88.10000000000001,3,1020.0 -2015,1,9,2,0,0,89.18,3,1020.0 -2015,1,9,2,30,0,89.17,3,1020.0 -2015,1,9,3,0,0,90.17,3,1020.0 -2015,1,9,3,30,0,96.8,2,1020.0 -2015,1,9,4,0,0,97.82000000000001,2,1020.0 -2015,1,9,4,30,0,97.83,2,1020.0 -2015,1,9,5,0,0,98.9,2,1020.0 -2015,1,9,5,30,0,98.92,2,1020.0 -2015,1,9,6,0,0,100.0,2,1020.0 -2015,1,9,6,30,0,100.0,2,1020.0 -2015,1,9,7,0,0,95.04,3,1020.0 -2015,1,9,7,30,0,95.08,3,1020.0 -2015,1,9,8,0,5,96.75,3,1020.0 -2015,1,9,8,30,8,96.79,3,1020.0 -2015,1,9,9,0,62,91.43,4,1030.0 -2015,1,9,9,30,67,91.44,4,1030.0 -2015,1,9,10,0,27,91.19,4,1030.0 -2015,1,9,10,30,192,91.16,4,1020.0 -2015,1,9,11,0,53,84.08,5,1020.0 -2015,1,9,11,30,25,84.05,5,1020.0 -2015,1,9,12,0,201,82.85000000000001,5,1020.0 -2015,1,9,12,30,95,82.83,5,1020.0 -2015,1,9,13,0,75,81.74,5,1020.0 -2015,1,9,13,30,103,87.65,4,1020.0 -2015,1,9,14,0,92,86.4,4,1020.0 -2015,1,9,14,30,82,86.41,4,1020.0 -2015,1,9,15,0,58,85.16,4,1020.0 -2015,1,9,15,30,156,91.4,3,1020.0 -2015,1,9,16,0,48,90.25,3,1020.0 -2015,1,9,16,30,40,90.28,3,1020.0 -2015,1,9,17,0,18,89.63,3,1030.0 -2015,1,9,17,30,2,96.26,3,1030.0 -2015,1,9,18,0,0,95.73,3,1030.0 -2015,1,9,18,30,0,95.76,2,1030.0 -2015,1,9,19,0,0,94.93,2,1030.0 -2015,1,9,19,30,0,94.94,2,1030.0 -2015,1,9,20,0,0,94.22,2,1030.0 -2015,1,9,20,30,0,94.22,2,1030.0 -2015,1,9,21,0,0,93.98,2,1030.0 -2015,1,9,21,30,0,93.96000000000001,2,1030.0 -2015,1,9,22,0,0,94.25,2,1030.0 -2015,1,9,22,30,0,94.22,2,1030.0 -2015,1,9,23,0,0,95.13,2,1030.0 -2015,1,9,23,30,0,95.11,2,1030.0 -2015,1,10,0,0,0,96.02,2,1030.0 -2015,1,10,0,30,0,96.02,2,1030.0 -2015,1,10,1,0,0,95.66,2,1030.0 -2015,1,10,1,30,0,95.65,2,1030.0 -2015,1,10,2,0,0,95.32000000000001,2,1030.0 -2015,1,10,2,30,0,95.3,2,1030.0 -2015,1,10,3,0,0,95.21000000000001,2,1030.0 -2015,1,10,3,30,0,95.2,2,1030.0 -2015,1,10,4,0,0,94.36,2,1020.0 -2015,1,10,4,30,0,94.36,2,1020.0 -2015,1,10,5,0,0,92.95,2,1030.0 -2015,1,10,5,30,0,92.96000000000001,2,1030.0 -2015,1,10,6,0,0,90.63,2,1030.0 -2015,1,10,6,30,0,90.65,2,1030.0 -2015,1,10,7,0,0,89.27,2,1030.0 -2015,1,10,7,30,4,89.29,2,1030.0 -2015,1,10,8,0,24,78.97,3,1030.0 -2015,1,10,8,30,49,78.98,3,1030.0 -2015,1,10,9,0,75,67.01,4,1030.0 -2015,1,10,9,30,71,66.99,4,1030.0 -2015,1,10,10,0,131,59.56,5,1030.0 -2015,1,10,10,30,82,59.52,5,1030.0 -2015,1,10,11,0,106,56.29,6,1020.0 -2015,1,10,11,30,297,56.26,6,1020.0 -2015,1,10,12,0,73,55.15,7,1020.0 -2015,1,10,12,30,127,55.13,7,1020.0 -2015,1,10,13,0,123,58.58,7,1020.0 -2015,1,10,13,30,117,62.72,6,1020.0 -2015,1,10,14,0,230,66.18,6,1020.0 -2015,1,10,14,30,226,70.91,5,1020.0 -2015,1,10,15,0,68,73.91,5,1020.0 -2015,1,10,15,30,78,79.25,4,1020.0 -2015,1,10,16,0,33,82.28,4,1020.0 -2015,1,10,16,30,70,82.29,4,1020.0 -2015,1,10,17,0,32,85.67,4,1020.0 -2015,1,10,17,30,4,91.93,3,1020.0 -2015,1,10,18,0,0,94.46000000000001,3,1020.0 -2015,1,10,18,30,0,94.46000000000001,3,1020.0 -2015,1,10,19,0,0,95.56,3,1020.0 -2015,1,10,19,30,0,95.55,3,1020.0 -2015,1,10,20,0,0,96.55,3,1020.0 -2015,1,10,20,30,0,96.53,3,1020.0 -2015,1,10,21,0,0,97.04,3,1020.0 -2015,1,10,21,30,0,96.99000000000001,3,1020.0 -2015,1,10,22,0,0,97.97,3,1020.0 -2015,1,10,22,30,0,97.92,3,1020.0 -2015,1,10,23,0,0,99.43,3,1020.0 -2015,1,10,23,30,0,99.39,3,1020.0 -2015,1,11,0,0,0,100.0,3,1020.0 -2015,1,11,0,30,0,100.0,3,1020.0 -2015,1,11,1,0,0,98.81,4,1020.0 -2015,1,11,1,30,0,98.77,4,1020.0 -2015,1,11,2,0,0,100.0,4,1020.0 -2015,1,11,2,30,0,100.0,4,1020.0 -2015,1,11,3,0,0,100.0,5,1020.0 -2015,1,11,3,30,0,100.0,5,1020.0 -2015,1,11,4,0,0,100.0,5,1020.0 -2015,1,11,4,30,0,100.0,5,1020.0 -2015,1,11,5,0,0,100.0,6,1020.0 -2015,1,11,5,30,0,100.0,6,1020.0 -2015,1,11,6,0,0,100.0,6,1020.0 -2015,1,11,6,30,0,100.0,6,1020.0 -2015,1,11,7,0,0,100.0,6,1020.0 -2015,1,11,7,30,7,100.0,6,1020.0 -2015,1,11,8,0,43,100.0,7,1020.0 -2015,1,11,8,30,70,100.0,7,1020.0 -2015,1,11,9,0,14,100.0,8,1020.0 -2015,1,11,9,30,22,100.0,8,1020.0 -2015,1,11,10,0,17,100.0,9,1020.0 -2015,1,11,10,30,132,100.0,9,1020.0 -2015,1,11,11,0,23,99.62,10,1020.0 -2015,1,11,11,30,26,99.56,10,1010.0 -2015,1,11,12,0,27,97.27,11,1010.0 -2015,1,11,12,30,100,97.22,11,1010.0 -2015,1,11,13,0,53,94.32000000000001,12,1010.0 -2015,1,11,13,30,69,94.32000000000001,12,1010.0 -2015,1,11,14,0,73,95.66,12,1010.0 -2015,1,11,14,30,131,95.66,12,1010.0 -2015,1,11,15,0,64,95.01,12,1010.0 -2015,1,11,15,30,13,95.02,12,1010.0 -2015,1,11,16,0,74,93.31,12,1010.0 -2015,1,11,16,30,166,99.68,11,1010.0 -2015,1,11,17,0,79,100.0,10,1010.0 -2015,1,11,17,30,12,100.0,9,1010.0 -2015,1,11,18,0,0,100.0,9,1010.0 -2015,1,11,18,30,0,100.0,8,1010.0 -2015,1,11,19,0,0,100.0,8,1010.0 -2015,1,11,19,30,0,100.0,8,1010.0 -2015,1,11,20,0,0,100.0,8,1010.0 -2015,1,11,20,30,0,100.0,7,1010.0 -2015,1,11,21,0,0,100.0,7,1010.0 -2015,1,11,21,30,0,100.0,7,1010.0 -2015,1,11,22,0,0,100.0,7,1020.0 -2015,1,11,22,30,0,100.0,7,1020.0 -2015,1,11,23,0,0,100.0,7,1020.0 -2015,1,11,23,30,0,100.0,7,1010.0 -2015,1,12,0,0,0,100.0,7,1010.0 -2015,1,12,0,30,0,100.0,6,1010.0 -2015,1,12,1,0,0,100.0,6,1020.0 -2015,1,12,1,30,0,100.0,6,1020.0 -2015,1,12,2,0,0,100.0,6,1020.0 -2015,1,12,2,30,0,100.0,6,1020.0 -2015,1,12,3,0,0,100.0,6,1020.0 -2015,1,12,3,30,0,100.0,6,1020.0 -2015,1,12,4,0,0,100.0,6,1020.0 -2015,1,12,4,30,0,100.0,6,1020.0 -2015,1,12,5,0,0,100.0,6,1020.0 -2015,1,12,5,30,0,100.0,6,1020.0 -2015,1,12,6,0,0,100.0,6,1020.0 -2015,1,12,6,30,0,100.0,6,1020.0 -2015,1,12,7,0,0,100.0,6,1020.0 -2015,1,12,7,30,1,100.0,6,1020.0 -2015,1,12,8,0,6,97.06,7,1020.0 -2015,1,12,8,30,3,97.11,7,1020.0 -2015,1,12,9,0,27,93.61,8,1020.0 -2015,1,12,9,30,73,93.63,8,1020.0 -2015,1,12,10,0,93,89.08,9,1020.0 -2015,1,12,10,30,115,89.05,9,1020.0 -2015,1,12,11,0,127,84.81,10,1020.0 -2015,1,12,11,30,167,84.76,10,1020.0 -2015,1,12,12,0,165,80.33,11,1020.0 -2015,1,12,12,30,234,80.31,11,1020.0 -2015,1,12,13,0,251,80.09,11,1020.0 -2015,1,12,13,30,46,80.08,11,1020.0 -2015,1,12,14,0,165,78.58,11,1020.0 -2015,1,12,14,30,161,78.59,11,1020.0 -2015,1,12,15,0,190,75.82000000000001,11,1020.0 -2015,1,12,15,30,150,81.04,10,1020.0 -2015,1,12,16,0,54,78.22,10,1020.0 -2015,1,12,16,30,179,83.66,9,1020.0 -2015,1,12,17,0,87,88.22,8,1020.0 -2015,1,12,17,30,15,94.47,7,1020.0 -2015,1,12,18,0,0,93.62,7,1020.0 -2015,1,12,18,30,0,100.0,6,1020.0 -2015,1,12,19,0,0,99.36,6,1020.0 -2015,1,12,19,30,0,99.38,6,1020.0 -2015,1,12,20,0,0,98.31,6,1020.0 -2015,1,12,20,30,0,98.32000000000001,6,1020.0 -2015,1,12,21,0,0,97.58,6,1020.0 -2015,1,12,21,30,0,97.58,6,1020.0 -2015,1,12,22,0,0,97.38,6,1020.0 -2015,1,12,22,30,0,97.37,6,1020.0 -2015,1,12,23,0,0,97.45,6,1020.0 -2015,1,12,23,30,0,97.44,6,1020.0 -2015,1,13,0,0,0,97.64,6,1020.0 -2015,1,13,0,30,0,97.63,6,1020.0 -2015,1,13,1,0,0,97.58,6,1020.0 -2015,1,13,1,30,0,97.57000000000001,6,1020.0 -2015,1,13,2,0,0,97.2,6,1020.0 -2015,1,13,2,30,0,97.19,6,1020.0 -2015,1,13,3,0,0,96.58,6,1020.0 -2015,1,13,3,30,0,96.58,6,1020.0 -2015,1,13,4,0,0,96.17,6,1020.0 -2015,1,13,4,30,0,96.19,6,1020.0 -2015,1,13,5,0,0,95.66,6,1020.0 -2015,1,13,5,30,0,95.7,6,1020.0 -2015,1,13,6,0,0,94.99,6,1020.0 -2015,1,13,6,30,0,95.02,6,1020.0 -2015,1,13,7,0,0,94.13,6,1020.0 -2015,1,13,7,30,4,94.14,6,1020.0 -2015,1,13,8,0,32,92.98,6,1020.0 -2015,1,13,8,30,68,92.99,6,1020.0 -2015,1,13,9,0,105,85.94,7,1020.0 -2015,1,13,9,30,141,85.94,7,1020.0 -2015,1,13,10,0,68,85.85000000000001,7,1020.0 -2015,1,13,10,30,79,80.17,8,1020.0 -2015,1,13,11,0,141,75.9,9,1020.0 -2015,1,13,11,30,125,75.85000000000001,9,1020.0 -2015,1,13,12,0,123,76.86,9,1020.0 -2015,1,13,12,30,188,76.84,9,1020.0 -2015,1,13,13,0,145,72.48,10,1020.0 -2015,1,13,13,30,254,72.46000000000001,10,1020.0 -2015,1,13,14,0,144,72.76,10,1020.0 -2015,1,13,14,30,130,72.75,10,1020.0 -2015,1,13,15,0,119,72.53,10,1020.0 -2015,1,13,15,30,95,77.55,9,1020.0 -2015,1,13,16,0,89,77.5,9,1020.0 -2015,1,13,16,30,84,82.92,8,1020.0 -2015,1,13,17,0,40,91.01,8,1020.0 -2015,1,13,17,30,6,91.02,7,1020.0 -2015,1,13,18,0,0,90.32000000000001,7,1020.0 -2015,1,13,18,30,0,96.76,7,1020.0 -2015,1,13,19,0,0,95.94,7,1020.0 -2015,1,13,19,30,0,95.95,6,1020.0 -2015,1,13,20,0,0,94.5,6,1020.0 -2015,1,13,20,30,0,94.51,6,1020.0 -2015,1,13,21,0,0,93.22,6,1020.0 -2015,1,13,21,30,0,99.91,5,1020.0 -2015,1,13,22,0,0,98.39,5,1020.0 -2015,1,13,22,30,0,98.37,5,1020.0 -2015,1,13,23,0,0,96.19,5,1020.0 -2015,1,13,23,30,0,96.16,5,1020.0 -2015,1,14,0,0,0,93.84,5,1020.0 -2015,1,14,0,30,0,100.0,4,1020.0 -2015,1,14,1,0,0,98.49000000000001,4,1020.0 -2015,1,14,1,30,0,98.48,4,1020.0 -2015,1,14,2,0,0,97.12,4,1020.0 -2015,1,14,2,30,0,97.10000000000001,4,1020.0 -2015,1,14,3,0,0,95.96000000000001,4,1020.0 -2015,1,14,3,30,0,95.96000000000001,4,1020.0 -2015,1,14,4,0,0,95.45,4,1020.0 -2015,1,14,4,30,0,95.46000000000001,4,1020.0 -2015,1,14,5,0,0,95.53,4,1020.0 -2015,1,14,5,30,0,95.56,4,1020.0 -2015,1,14,6,0,0,95.78,4,1020.0 -2015,1,14,6,30,0,95.78,4,1020.0 -2015,1,14,7,0,0,95.79,4,1020.0 -2015,1,14,7,30,2,95.79,4,1020.0 -2015,1,14,8,0,16,88.53,5,1020.0 -2015,1,14,8,30,26,88.54,5,1020.0 -2015,1,14,9,0,52,87.27,5,1020.0 -2015,1,14,9,30,67,87.26,5,1020.0 -2015,1,14,10,0,101,80.94,6,1020.0 -2015,1,14,10,30,92,80.91,6,1020.0 -2015,1,14,11,0,190,81.51,7,1020.0 -2015,1,14,11,30,119,81.45,7,1020.0 -2015,1,14,12,0,146,77.15,7,1020.0 -2015,1,14,12,30,156,77.12,7,1020.0 -2015,1,14,13,0,163,78.58,7,1020.0 -2015,1,14,13,30,197,78.56,7,1020.0 -2015,1,14,14,0,150,79.71000000000001,7,1020.0 -2015,1,14,14,30,131,79.71000000000001,7,1020.0 -2015,1,14,15,0,142,80.73,7,1020.0 -2015,1,14,15,30,88,80.72,7,1020.0 -2015,1,14,16,0,144,81.84,7,1020.0 -2015,1,14,16,30,93,87.67,6,1020.0 -2015,1,14,17,0,46,92.5,6,1020.0 -2015,1,14,17,30,8,92.52,6,1020.0 -2015,1,14,18,0,0,92.15,6,1020.0 -2015,1,14,18,30,0,98.77,5,1020.0 -2015,1,14,19,0,0,97.21000000000001,5,1020.0 -2015,1,14,19,30,0,97.22,5,1020.0 -2015,1,14,20,0,0,96.17,5,1020.0 -2015,1,14,20,30,0,96.17,5,1020.0 -2015,1,14,21,0,0,95.54,5,1020.0 -2015,1,14,21,30,0,95.54,5,1020.0 -2015,1,14,22,0,0,94.83,5,1020.0 -2015,1,14,22,30,0,100.0,5,1020.0 -2015,1,14,23,0,0,100.0,5,1020.0 -2015,1,14,23,30,0,100.0,4,1020.0 -2015,1,15,0,0,0,98.57000000000001,4,1020.0 -2015,1,15,0,30,0,98.56,4,1020.0 -2015,1,15,1,0,0,96.67,4,1020.0 -2015,1,15,1,30,0,100.0,4,1020.0 -2015,1,15,2,0,0,100.0,4,1020.0 -2015,1,15,2,30,0,100.0,3,1020.0 -2015,1,15,3,0,0,100.0,3,1020.0 -2015,1,15,3,30,0,100.0,3,1020.0 -2015,1,15,4,0,0,98.99000000000001,3,1020.0 -2015,1,15,4,30,0,99.01,3,1020.0 -2015,1,15,5,0,0,97.66,3,1020.0 -2015,1,15,5,30,0,97.69,3,1020.0 -2015,1,15,6,0,0,96.69,3,1020.0 -2015,1,15,6,30,0,96.73,3,1020.0 -2015,1,15,7,0,0,97.02,3,1020.0 -2015,1,15,7,30,4,97.05,3,1020.0 -2015,1,15,8,0,27,91.12,4,1020.0 -2015,1,15,8,30,64,85.0,5,1020.0 -2015,1,15,9,0,29,77.0,6,1020.0 -2015,1,15,9,30,39,77.01,6,1020.0 -2015,1,15,10,0,443,71.51,7,1020.0 -2015,1,15,10,30,373,66.78,8,1020.0 -2015,1,15,11,0,400,63.61,9,1020.0 -2015,1,15,11,30,421,63.57,9,1020.0 -2015,1,15,12,0,643,61.63,10,1020.0 -2015,1,15,12,30,653,61.6,10,1020.0 -2015,1,15,13,0,513,59.910000000000004,11,1020.0 -2015,1,15,13,30,502,59.9,11,1020.0 -2015,1,15,14,0,470,61.88,11,1020.0 -2015,1,15,14,30,411,61.870000000000005,11,1020.0 -2015,1,15,15,0,396,63.190000000000005,11,1020.0 -2015,1,15,15,30,289,67.54,11,1020.0 -2015,1,15,16,0,196,71.12,11,1020.0 -2015,1,15,16,30,106,81.39,9,1020.0 -2015,1,15,17,0,55,88.87,8,1020.0 -2015,1,15,17,30,11,95.22,7,1020.0 -2015,1,15,18,0,0,90.86,7,1020.0 -2015,1,15,18,30,0,90.88,6,1020.0 -2015,1,15,19,0,0,89.56,6,1020.0 -2015,1,15,19,30,0,89.56,6,1020.0 -2015,1,15,20,0,0,87.69,6,1020.0 -2015,1,15,20,30,0,93.98,5,1020.0 -2015,1,15,21,0,0,91.72,5,1020.0 -2015,1,15,21,30,0,91.73,5,1020.0 -2015,1,15,22,0,0,89.16,5,1020.0 -2015,1,15,22,30,0,95.60000000000001,4,1020.0 -2015,1,15,23,0,0,93.07000000000001,4,1020.0 -2015,1,15,23,30,0,99.85000000000001,4,1020.0 -2015,1,16,0,0,0,98.05,4,1020.0 -2015,1,16,0,30,0,98.05,3,1020.0 -2015,1,16,1,0,0,96.39,3,1020.0 -2015,1,16,1,30,0,100.0,3,1020.0 -2015,1,16,2,0,0,100.0,3,1020.0 -2015,1,16,2,30,0,100.0,2,1020.0 -2015,1,16,3,0,0,99.79,2,1020.0 -2015,1,16,3,30,0,99.78,2,1020.0 -2015,1,16,4,0,0,97.95,2,1020.0 -2015,1,16,4,30,0,97.96000000000001,2,1020.0 -2015,1,16,5,0,0,96.51,2,1020.0 -2015,1,16,5,30,0,100.0,2,1020.0 -2015,1,16,6,0,0,100.0,2,1020.0 -2015,1,16,6,30,0,100.0,2,1020.0 -2015,1,16,7,0,0,95.15,2,1020.0 -2015,1,16,7,30,20,88.64,3,1020.0 -2015,1,16,8,0,106,82.36,5,1020.0 -2015,1,16,8,30,155,76.86,6,1020.0 -2015,1,16,9,0,236,75.07000000000001,7,1020.0 -2015,1,16,9,30,296,65.54,9,1020.0 -2015,1,16,10,0,393,55.93,11,1020.0 -2015,1,16,10,30,488,52.34,12,1020.0 -2015,1,16,11,0,530,49.5,13,1020.0 -2015,1,16,11,30,542,49.47,13,1020.0 -2015,1,16,12,0,564,47.83,14,1020.0 -2015,1,16,12,30,604,47.800000000000004,14,1020.0 -2015,1,16,13,0,687,48.800000000000004,14,1020.0 -2015,1,16,13,30,661,48.78,14,1020.0 -2015,1,16,14,0,485,49.230000000000004,14,1020.0 -2015,1,16,14,30,439,49.22,14,1020.0 -2015,1,16,15,0,365,49.79,14,1020.0 -2015,1,16,15,30,396,53.13,13,1020.0 -2015,1,16,16,0,302,57.410000000000004,13,1020.0 -2015,1,16,16,30,151,61.29,12,1020.0 -2015,1,16,17,0,105,53.370000000000005,12,1020.0 -2015,1,16,17,30,23,57.01,11,1020.0 -2015,1,16,18,0,0,56.18,11,1020.0 -2015,1,16,18,30,0,60.04,10,1020.0 -2015,1,16,19,0,0,66.64,9,1020.0 -2015,1,16,19,30,0,71.29,8,1020.0 -2015,1,16,20,0,0,72.8,8,1020.0 -2015,1,16,20,30,0,77.92,7,1020.0 -2015,1,16,21,0,0,85.9,6,1020.0 -2015,1,16,21,30,0,85.89,6,1020.0 -2015,1,16,22,0,0,87.73,6,1020.0 -2015,1,16,22,30,0,87.71000000000001,6,1020.0 -2015,1,16,23,0,0,89.39,6,1020.0 -2015,1,16,23,30,0,89.37,6,1020.0 -2015,1,17,0,0,0,91.05,6,1020.0 -2015,1,17,0,30,0,97.56,6,1020.0 -2015,1,17,1,0,0,99.68,6,1020.0 -2015,1,17,1,30,0,99.67,5,1020.0 -2015,1,17,2,0,0,100.0,5,1020.0 -2015,1,17,2,30,0,100.0,5,1020.0 -2015,1,17,3,0,0,100.0,5,1020.0 -2015,1,17,3,30,0,100.0,4,1020.0 -2015,1,17,4,0,0,100.0,4,1010.0 -2015,1,17,4,30,0,100.0,4,1010.0 -2015,1,17,5,0,0,100.0,4,1010.0 -2015,1,17,5,30,0,100.0,4,1010.0 -2015,1,17,6,0,0,100.0,5,1020.0 -2015,1,17,6,30,0,100.0,5,1020.0 -2015,1,17,7,0,0,100.0,5,1020.0 -2015,1,17,7,30,17,100.0,6,1020.0 -2015,1,17,8,0,94,92.24,8,1020.0 -2015,1,17,8,30,189,86.22,9,1020.0 -2015,1,17,9,0,288,85.24,10,1020.0 -2015,1,17,9,30,380,79.76,12,1020.0 -2015,1,17,10,0,465,71.75,14,1020.0 -2015,1,17,10,30,537,67.21000000000001,14,1020.0 -2015,1,17,11,0,595,64.93,15,1010.0 -2015,1,17,11,30,637,64.88,15,1010.0 -2015,1,17,12,0,664,63.25,16,1010.0 -2015,1,17,12,30,673,63.21,16,1010.0 -2015,1,17,13,0,664,65.52,16,1010.0 -2015,1,17,13,30,639,65.51,16,1010.0 -2015,1,17,14,0,597,68.36,16,1010.0 -2015,1,17,14,30,541,68.36,16,1010.0 -2015,1,17,15,0,473,73.31,16,1010.0 -2015,1,17,15,30,302,78.15,15,1010.0 -2015,1,17,16,0,260,87.05,14,1010.0 -2015,1,17,16,30,203,92.91,13,1010.0 -2015,1,17,17,0,106,92.5,12,1010.0 -2015,1,17,17,30,25,98.84,11,1010.0 -2015,1,17,18,0,0,95.63,11,1010.0 -2015,1,17,18,30,0,95.64,11,1010.0 -2015,1,17,19,0,0,94.13,11,1010.0 -2015,1,17,19,30,0,100.0,10,1010.0 -2015,1,17,20,0,0,99.39,10,1010.0 -2015,1,17,20,30,0,99.4,10,1010.0 -2015,1,17,21,0,0,98.39,10,1010.0 -2015,1,17,21,30,0,100.0,9,1010.0 -2015,1,17,22,0,0,100.0,9,1010.0 -2015,1,17,22,30,0,100.0,9,1010.0 -2015,1,17,23,0,0,100.0,9,1020.0 -2015,1,17,23,30,0,100.0,8,1020.0 -2015,1,18,0,0,0,100.0,8,1020.0 -2015,1,18,0,30,0,100.0,7,1020.0 -2015,1,18,1,0,0,100.0,7,1020.0 -2015,1,18,1,30,0,100.0,7,1020.0 -2015,1,18,2,0,0,94.82000000000001,7,1020.0 -2015,1,18,2,30,0,100.0,6,1020.0 -2015,1,18,3,0,0,96.96000000000001,6,1020.0 -2015,1,18,3,30,0,96.98,6,1020.0 -2015,1,18,4,0,0,94.79,6,1020.0 -2015,1,18,4,30,0,94.81,6,1020.0 -2015,1,18,5,0,0,92.61,6,1020.0 -2015,1,18,5,30,0,99.28,5,1020.0 -2015,1,18,6,0,0,96.97,5,1020.0 -2015,1,18,6,30,0,97.0,5,1020.0 -2015,1,18,7,0,0,96.73,5,1020.0 -2015,1,18,7,30,10,90.28,6,1020.0 -2015,1,18,8,0,50,86.54,7,1020.0 -2015,1,18,8,30,138,80.86,8,1020.0 -2015,1,18,9,0,245,76.08,10,1020.0 -2015,1,18,9,30,279,66.65,12,1020.0 -2015,1,18,10,0,399,62.43,14,1020.0 -2015,1,18,10,30,517,58.52,15,1020.0 -2015,1,18,11,0,642,42.13,17,1020.0 -2015,1,18,11,30,686,42.1,17,1020.0 -2015,1,18,12,0,713,38.17,18,1020.0 -2015,1,18,12,30,722,38.15,18,1020.0 -2015,1,18,13,0,713,38.92,18,1020.0 -2015,1,18,13,30,687,38.9,18,1020.0 -2015,1,18,14,0,644,39.75,18,1020.0 -2015,1,18,14,30,585,39.75,18,1020.0 -2015,1,18,15,0,511,41.46,18,1020.0 -2015,1,18,15,30,425,44.15,17,1020.0 -2015,1,18,16,0,328,53.08,17,1020.0 -2015,1,18,16,30,226,60.28,15,1020.0 -2015,1,18,17,0,122,62.09,13,1020.0 -2015,1,18,17,30,31,66.3,12,1020.0 -2015,1,18,18,0,0,68.22,11,1020.0 -2015,1,18,18,30,0,72.91,10,1020.0 -2015,1,18,19,0,0,78.85000000000001,9,1020.0 -2015,1,18,19,30,0,84.36,8,1020.0 -2015,1,18,20,0,0,84.52,8,1020.0 -2015,1,18,20,30,0,90.46000000000001,7,1020.0 -2015,1,18,21,0,0,90.32000000000001,7,1020.0 -2015,1,18,21,30,0,90.31,7,1020.0 -2015,1,18,22,0,0,90.29,7,1020.0 -2015,1,18,22,30,0,96.69,6,1020.0 -2015,1,18,23,0,0,96.97,6,1020.0 -2015,1,18,23,30,0,96.94,6,1020.0 -2015,1,19,0,0,0,97.82000000000001,6,1020.0 -2015,1,19,0,30,0,100.0,5,1020.0 -2015,1,19,1,0,0,100.0,5,1020.0 -2015,1,19,1,30,0,100.0,4,1020.0 -2015,1,19,2,0,0,100.0,4,1020.0 -2015,1,19,2,30,0,100.0,4,1020.0 -2015,1,19,3,0,0,100.0,4,1020.0 -2015,1,19,3,30,0,100.0,4,1020.0 -2015,1,19,4,0,0,100.0,5,1010.0 -2015,1,19,4,30,0,100.0,5,1010.0 -2015,1,19,5,0,0,100.0,5,1010.0 -2015,1,19,5,30,0,100.0,5,1010.0 -2015,1,19,6,0,0,100.0,5,1010.0 -2015,1,19,6,30,0,100.0,5,1010.0 -2015,1,19,7,0,0,100.0,6,1010.0 -2015,1,19,7,30,22,97.38,7,1010.0 -2015,1,19,8,0,108,90.67,9,1010.0 -2015,1,19,8,30,210,84.8,10,1010.0 -2015,1,19,9,0,313,83.01,12,1020.0 -2015,1,19,9,30,408,72.79,13,1010.0 -2015,1,19,10,0,494,66.82000000000001,15,1010.0 -2015,1,19,10,30,566,62.65,16,1010.0 -2015,1,19,11,0,623,60.74,17,1010.0 -2015,1,19,11,30,665,60.69,17,1010.0 -2015,1,19,12,0,691,59.93,18,1010.0 -2015,1,19,12,30,699,59.88,18,1010.0 -2015,1,19,13,0,687,59.22,19,1010.0 -2015,1,19,13,30,661,59.2,19,1010.0 -2015,1,19,14,0,616,62.17,19,1010.0 -2015,1,19,14,30,558,62.160000000000004,19,1010.0 -2015,1,19,15,0,485,65.49,19,1010.0 -2015,1,19,15,30,401,69.7,18,1010.0 -2015,1,19,16,0,307,82.47,17,1010.0 -2015,1,19,16,30,209,93.66,15,1010.0 -2015,1,19,17,0,111,93.87,14,1010.0 -2015,1,19,17,30,28,100.0,13,1010.0 -2015,1,19,18,0,0,99.39,13,1010.0 -2015,1,19,18,30,0,100.0,12,1010.0 -2015,1,19,19,0,0,100.0,12,1010.0 -2015,1,19,19,30,0,100.0,12,1010.0 -2015,1,19,20,0,0,100.0,12,1010.0 -2015,1,19,20,30,0,100.0,11,1010.0 -2015,1,19,21,0,0,100.0,11,1010.0 -2015,1,19,21,30,0,100.0,11,1010.0 -2015,1,19,22,0,0,100.0,11,1010.0 -2015,1,19,22,30,0,100.0,11,1010.0 -2015,1,19,23,0,0,100.0,11,1010.0 -2015,1,19,23,30,0,100.0,10,1010.0 -2015,1,20,0,0,0,100.0,10,1010.0 -2015,1,20,0,30,0,100.0,10,1010.0 -2015,1,20,1,0,0,100.0,10,1010.0 -2015,1,20,1,30,0,100.0,10,1010.0 -2015,1,20,2,0,0,100.0,10,1010.0 -2015,1,20,2,30,0,100.0,10,1010.0 -2015,1,20,3,0,0,100.0,10,1010.0 -2015,1,20,3,30,0,100.0,10,1010.0 -2015,1,20,4,0,0,100.0,10,1010.0 -2015,1,20,4,30,0,100.0,10,1010.0 -2015,1,20,5,0,0,100.0,10,1010.0 -2015,1,20,5,30,0,100.0,9,1010.0 -2015,1,20,6,0,0,100.0,9,1010.0 -2015,1,20,6,30,0,100.0,9,1010.0 -2015,1,20,7,0,0,100.0,10,1010.0 -2015,1,20,7,30,19,100.0,11,1010.0 -2015,1,20,8,0,98,99.74000000000001,13,1010.0 -2015,1,20,8,30,195,93.48,14,1010.0 -2015,1,20,9,0,295,90.15,15,1010.0 -2015,1,20,9,30,389,84.58,16,1010.0 -2015,1,20,10,0,474,78.74,17,1010.0 -2015,1,20,10,30,547,73.91,18,1010.0 -2015,1,20,11,0,606,69.29,19,1010.0 -2015,1,20,11,30,649,69.25,19,1010.0 -2015,1,20,12,0,677,65.72,20,1010.0 -2015,1,20,12,30,687,65.69,20,1010.0 -2015,1,20,13,0,679,62.34,21,1010.0 -2015,1,20,13,30,654,62.33,21,1010.0 -2015,1,20,14,0,613,62.7,21,1010.0 -2015,1,20,14,30,557,62.690000000000005,21,1010.0 -2015,1,20,15,0,486,63.910000000000004,21,1010.0 -2015,1,20,15,30,404,67.96000000000001,20,1010.0 -2015,1,20,16,0,312,80.87,19,1010.0 -2015,1,20,16,30,214,91.67,17,1010.0 -2015,1,20,17,0,115,88.28,16,1010.0 -2015,1,20,17,30,30,94.13,15,1010.0 -2015,1,20,18,0,0,97.38,14,1010.0 -2015,1,20,18,30,0,100.0,13,1010.0 -2015,1,20,19,0,0,100.0,13,1010.0 -2015,1,20,19,30,0,100.0,12,1010.0 -2015,1,20,20,0,0,100.0,12,1010.0 -2015,1,20,20,30,0,100.0,12,1010.0 -2015,1,20,21,0,0,100.0,12,1010.0 -2015,1,20,21,30,0,100.0,11,1010.0 -2015,1,20,22,0,0,100.0,11,1010.0 -2015,1,20,22,30,0,100.0,11,1010.0 -2015,1,20,23,0,0,100.0,11,1010.0 -2015,1,20,23,30,0,100.0,11,1010.0 -2015,1,21,0,0,0,100.0,11,1010.0 -2015,1,21,0,30,0,100.0,11,1010.0 -2015,1,21,1,0,0,100.0,12,1010.0 -2015,1,21,1,30,0,100.0,11,1010.0 -2015,1,21,2,0,0,100.0,11,1010.0 -2015,1,21,2,30,0,100.0,11,1010.0 -2015,1,21,3,0,0,100.0,11,1010.0 -2015,1,21,3,30,0,100.0,10,1010.0 -2015,1,21,4,0,0,100.0,10,1010.0 -2015,1,21,4,30,0,100.0,10,1010.0 -2015,1,21,5,0,0,100.0,10,1010.0 -2015,1,21,5,30,0,100.0,10,1010.0 -2015,1,21,6,0,0,100.0,10,1010.0 -2015,1,21,6,30,0,100.0,10,1010.0 -2015,1,21,7,0,0,100.0,11,1010.0 -2015,1,21,7,30,19,100.0,12,1010.0 -2015,1,21,8,0,15,98.63,13,1010.0 -2015,1,21,8,30,29,92.45,14,1010.0 -2015,1,21,9,0,49,93.69,15,1010.0 -2015,1,21,9,30,65,87.9,16,1010.0 -2015,1,21,10,0,79,87.28,17,1010.0 -2015,1,21,10,30,112,81.95,18,1010.0 -2015,1,21,11,0,92,77.60000000000001,19,1010.0 -2015,1,21,11,30,113,77.55,19,1010.0 -2015,1,21,12,0,163,77.31,19,1010.0 -2015,1,21,12,30,165,77.27,19,1010.0 -2015,1,21,13,0,202,76.67,19,1010.0 -2015,1,21,13,30,243,76.66,19,1010.0 -2015,1,21,14,0,274,76.03,19,1010.0 -2015,1,21,14,30,223,80.93,18,1010.0 -2015,1,21,15,0,162,81.04,18,1010.0 -2015,1,21,15,30,133,86.31,17,1010.0 -2015,1,21,16,0,43,87.89,17,1010.0 -2015,1,21,16,30,83,93.66,16,1010.0 -2015,1,21,17,0,44,98.58,16,1010.0 -2015,1,21,17,30,11,98.61,15,1010.0 -2015,1,21,18,0,0,96.57000000000001,15,1010.0 -2015,1,21,18,30,0,100.0,14,1010.0 -2015,1,21,19,0,0,100.0,14,1010.0 -2015,1,21,19,30,0,100.0,14,1010.0 -2015,1,21,20,0,0,99.52,14,1010.0 -2015,1,21,20,30,0,99.49000000000001,14,1010.0 -2015,1,21,21,0,0,97.73,14,1010.0 -2015,1,21,21,30,0,100.0,14,1010.0 -2015,1,21,22,0,0,100.0,14,1010.0 -2015,1,21,22,30,0,100.0,13,1010.0 -2015,1,21,23,0,0,100.0,13,1010.0 -2015,1,21,23,30,0,100.0,13,1010.0 -2015,1,22,0,0,0,98.59,13,1010.0 -2015,1,22,0,30,0,98.57000000000001,13,1010.0 -2015,1,22,1,0,0,97.69,13,1010.0 -2015,1,22,1,30,0,97.66,13,1010.0 -2015,1,22,2,0,0,97.33,13,1010.0 -2015,1,22,2,30,0,97.3,13,1010.0 -2015,1,22,3,0,0,97.49000000000001,13,1010.0 -2015,1,22,3,30,0,97.46000000000001,13,1010.0 -2015,1,22,4,0,0,98.19,13,1010.0 -2015,1,22,4,30,0,98.17,13,1010.0 -2015,1,22,5,0,0,99.49000000000001,13,1010.0 -2015,1,22,5,30,0,99.49000000000001,13,1010.0 -2015,1,22,6,0,0,100.0,13,1010.0 -2015,1,22,6,30,0,100.0,13,1010.0 -2015,1,22,7,0,0,100.0,14,1010.0 -2015,1,22,7,30,1,100.0,14,1010.0 -2015,1,22,8,0,6,100.0,14,1010.0 -2015,1,22,8,30,7,100.0,14,1010.0 -2015,1,22,9,0,15,100.0,15,1010.0 -2015,1,22,9,30,32,100.0,15,1010.0 -2015,1,22,10,0,14,99.69,15,1010.0 -2015,1,22,10,30,20,99.67,15,1010.0 -2015,1,22,11,0,34,100.0,15,1010.0 -2015,1,22,11,30,45,100.0,15,1010.0 -2015,1,22,12,0,28,100.0,16,1010.0 -2015,1,22,12,30,27,100.0,15,1010.0 -2015,1,22,13,0,74,100.0,15,1010.0 -2015,1,22,13,30,58,100.0,14,1010.0 -2015,1,22,14,0,59,98.98,14,1010.0 -2015,1,22,14,30,151,100.0,13,1010.0 -2015,1,22,15,0,35,100.0,12,1010.0 -2015,1,22,15,30,30,100.0,11,1010.0 -2015,1,22,16,0,11,100.0,10,1010.0 -2015,1,22,16,30,56,100.0,9,1010.0 -2015,1,22,17,0,106,100.0,8,1010.0 -2015,1,22,17,30,29,100.0,7,1010.0 -2015,1,22,18,0,0,99.12,6,1010.0 -2015,1,22,18,30,0,100.0,5,1010.0 -2015,1,22,19,0,0,98.42,5,1010.0 -2015,1,22,19,30,0,98.46000000000001,5,1010.0 -2015,1,22,20,0,0,95.69,5,1010.0 -2015,1,22,20,30,0,95.73,5,1010.0 -2015,1,22,21,0,0,94.94,5,1010.0 -2015,1,22,21,30,0,94.96000000000001,5,1010.0 -2015,1,22,22,0,0,94.85000000000001,5,1010.0 -2015,1,22,22,30,0,94.86,5,1010.0 -2015,1,22,23,0,0,94.42,5,1010.0 -2015,1,22,23,30,0,94.42,5,1010.0 -2015,1,23,0,0,0,93.56,5,1010.0 -2015,1,23,0,30,0,93.55,5,1010.0 -2015,1,23,1,0,0,92.23,5,1010.0 -2015,1,23,1,30,0,92.21000000000001,5,1010.0 -2015,1,23,2,0,0,90.88,5,1010.0 -2015,1,23,2,30,0,90.85000000000001,5,1010.0 -2015,1,23,3,0,0,90.07000000000001,5,1010.0 -2015,1,23,3,30,0,96.57000000000001,5,1010.0 -2015,1,23,4,0,0,96.38,5,1010.0 -2015,1,23,4,30,0,96.41,5,1010.0 -2015,1,23,5,0,0,90.52,5,1010.0 -2015,1,23,5,30,0,90.57000000000001,5,1010.0 -2015,1,23,6,0,0,91.74,5,1010.0 -2015,1,23,6,30,0,91.77,5,1010.0 -2015,1,23,7,0,0,93.33,5,1010.0 -2015,1,23,7,30,9,93.34,5,1010.0 -2015,1,23,8,0,53,88.34,6,1020.0 -2015,1,23,8,30,110,88.36,6,1020.0 -2015,1,23,9,0,167,88.78,6,1020.0 -2015,1,23,9,30,223,88.78,6,1020.0 -2015,1,23,10,0,25,83.26,7,1020.0 -2015,1,23,10,30,64,83.26,7,1020.0 -2015,1,23,11,0,167,83.85000000000001,7,1020.0 -2015,1,23,11,30,45,83.83,7,1020.0 -2015,1,23,12,0,93,84.13,7,1010.0 -2015,1,23,12,30,78,84.11,7,1010.0 -2015,1,23,13,0,152,84.24,8,1010.0 -2015,1,23,13,30,79,84.23,8,1010.0 -2015,1,23,14,0,97,83.96000000000001,8,1010.0 -2015,1,23,14,30,93,83.97,8,1010.0 -2015,1,23,15,0,96,83.33,8,1010.0 -2015,1,23,15,30,148,83.36,7,1010.0 -2015,1,23,16,0,119,82.55,7,1010.0 -2015,1,23,16,30,123,88.46000000000001,6,1020.0 -2015,1,23,17,0,69,88.01,6,1020.0 -2015,1,23,17,30,19,94.36,5,1020.0 -2015,1,23,18,0,0,93.04,5,1020.0 -2015,1,23,18,30,0,99.8,4,1020.0 -2015,1,23,19,0,0,98.3,4,1020.0 -2015,1,23,19,30,0,100.0,3,1020.0 -2015,1,23,20,0,0,100.0,3,1020.0 -2015,1,23,20,30,0,100.0,3,1020.0 -2015,1,23,21,0,0,100.0,3,1020.0 -2015,1,23,21,30,0,100.0,3,1020.0 -2015,1,23,22,0,0,100.0,3,1020.0 -2015,1,23,22,30,0,100.0,3,1020.0 -2015,1,23,23,0,0,100.0,3,1020.0 -2015,1,23,23,30,0,100.0,3,1020.0 -2015,1,24,0,0,0,100.0,3,1020.0 -2015,1,24,0,30,0,100.0,2,1020.0 -2015,1,24,1,0,0,100.0,2,1020.0 -2015,1,24,1,30,0,100.0,2,1020.0 -2015,1,24,2,0,0,99.64,2,1020.0 -2015,1,24,2,30,0,99.62,2,1020.0 -2015,1,24,3,0,0,97.62,2,1020.0 -2015,1,24,3,30,0,100.0,1,1020.0 -2015,1,24,4,0,0,100.0,1,1020.0 -2015,1,24,4,30,0,100.0,1,1020.0 -2015,1,24,5,0,0,100.0,1,1020.0 -2015,1,24,5,30,0,100.0,0,1020.0 -2015,1,24,6,0,0,100.0,0,1020.0 -2015,1,24,6,30,0,100.0,0,1020.0 -2015,1,24,7,0,0,100.0,1,1020.0 -2015,1,24,7,30,25,95.68,2,1020.0 -2015,1,24,8,0,63,94.18,4,1020.0 -2015,1,24,8,30,157,87.79,5,1020.0 -2015,1,24,9,0,296,82.36,6,1020.0 -2015,1,24,9,30,421,71.83,8,1020.0 -2015,1,24,10,0,509,63.6,10,1020.0 -2015,1,24,10,30,584,59.47,11,1020.0 -2015,1,24,11,0,645,50.44,13,1020.0 -2015,1,24,11,30,691,50.4,13,1020.0 -2015,1,24,12,0,717,47.88,14,1020.0 -2015,1,24,12,30,728,47.85,14,1010.0 -2015,1,24,13,0,720,48.29,15,1010.0 -2015,1,24,13,30,695,48.27,15,1010.0 -2015,1,24,14,0,652,45.84,15,1010.0 -2015,1,24,14,30,595,48.88,14,1010.0 -2015,1,24,15,0,522,49.99,14,1010.0 -2015,1,24,15,30,437,53.33,13,1010.0 -2015,1,24,16,0,342,62.27,13,1010.0 -2015,1,24,16,30,143,71.01,11,1010.0 -2015,1,24,17,0,136,80.66,9,1010.0 -2015,1,24,17,30,43,86.3,8,1010.0 -2015,1,24,18,0,0,79.07000000000001,8,1010.0 -2015,1,24,18,30,0,84.65,7,1010.0 -2015,1,24,19,0,0,83.05,7,1010.0 -2015,1,24,19,30,0,83.05,7,1010.0 -2015,1,24,20,0,0,82.7,7,1010.0 -2015,1,24,20,30,0,88.58,6,1010.0 -2015,1,24,21,0,0,86.83,6,1010.0 -2015,1,24,21,30,0,86.82000000000001,6,1010.0 -2015,1,24,22,0,0,86.57000000000001,6,1010.0 -2015,1,24,22,30,0,92.77,5,1010.0 -2015,1,24,23,0,0,92.8,5,1010.0 -2015,1,24,23,30,0,92.79,5,1010.0 -2015,1,25,0,0,0,93.9,5,1010.0 -2015,1,25,0,30,0,93.88,5,1010.0 -2015,1,25,1,0,0,94.98,5,1010.0 -2015,1,25,1,30,0,100.0,4,1010.0 -2015,1,25,2,0,0,100.0,4,1010.0 -2015,1,25,2,30,0,100.0,4,1010.0 -2015,1,25,3,0,0,100.0,4,1010.0 -2015,1,25,3,30,0,100.0,3,1010.0 -2015,1,25,4,0,0,100.0,3,1010.0 -2015,1,25,4,30,0,100.0,3,1010.0 -2015,1,25,5,0,0,100.0,3,1010.0 -2015,1,25,5,30,0,100.0,3,1010.0 -2015,1,25,6,0,0,100.0,3,1010.0 -2015,1,25,6,30,0,100.0,3,1010.0 -2015,1,25,7,0,0,97.86,4,1010.0 -2015,1,25,7,30,25,91.27,5,1010.0 -2015,1,25,8,0,111,82.88,7,1010.0 -2015,1,25,8,30,213,77.43,8,1010.0 -2015,1,25,9,0,315,73.14,10,1010.0 -2015,1,25,9,30,412,68.42,11,1010.0 -2015,1,25,10,0,499,60.57,13,1010.0 -2015,1,25,10,30,574,56.74,14,1010.0 -2015,1,25,11,0,635,51.64,16,1010.0 -2015,1,25,11,30,679,51.64,16,1010.0 -2015,1,25,12,0,708,50.59,17,1010.0 -2015,1,25,12,30,718,50.58,17,1010.0 -2015,1,25,13,0,711,49.800000000000004,18,1010.0 -2015,1,25,13,30,687,49.79,18,1010.0 -2015,1,25,14,0,648,52.77,18,1010.0 -2015,1,25,14,30,591,52.78,18,1010.0 -2015,1,25,15,0,520,56.08,18,1010.0 -2015,1,25,15,30,436,59.72,17,1010.0 -2015,1,25,16,0,343,65.62,17,1010.0 -2015,1,25,16,30,170,74.55,15,1010.0 -2015,1,25,17,0,98,80.29,13,1010.0 -2015,1,25,17,30,45,85.76,12,1010.0 -2015,1,25,18,0,0,78.21000000000001,12,1010.0 -2015,1,25,18,30,0,83.56,11,1010.0 -2015,1,25,19,0,0,77.66,11,1010.0 -2015,1,25,19,30,0,83.02,10,1010.0 -2015,1,25,20,0,0,81.88,9,1010.0 -2015,1,25,20,30,0,87.64,9,1010.0 -2015,1,25,21,0,0,80.47,9,1010.0 -2015,1,25,21,30,0,86.16,8,1010.0 -2015,1,25,22,0,0,82.16,8,1010.0 -2015,1,25,22,30,0,82.16,7,1010.0 -2015,1,25,23,0,0,80.16,7,1010.0 -2015,1,25,23,30,0,85.85000000000001,6,1010.0 -2015,1,26,0,0,0,84.33,6,1010.0 -2015,1,26,0,30,0,90.38,5,1010.0 -2015,1,26,1,0,0,89.09,5,1010.0 -2015,1,26,1,30,0,95.53,4,1010.0 -2015,1,26,2,0,0,94.53,4,1010.0 -2015,1,26,2,30,0,94.53,4,1010.0 -2015,1,26,3,0,0,94.15,4,1010.0 -2015,1,26,3,30,0,100.0,3,1010.0 -2015,1,26,4,0,0,100.0,3,1010.0 -2015,1,26,4,30,0,100.0,3,1020.0 -2015,1,26,5,0,0,100.0,3,1020.0 -2015,1,26,5,30,0,100.0,3,1020.0 -2015,1,26,6,0,0,100.0,3,1020.0 -2015,1,26,6,30,0,100.0,3,1020.0 -2015,1,26,7,0,0,96.08,4,1020.0 -2015,1,26,7,30,27,89.62,5,1020.0 -2015,1,26,8,0,116,81.98,7,1020.0 -2015,1,26,8,30,166,76.59,8,1020.0 -2015,1,26,9,0,226,72.35000000000001,10,1020.0 -2015,1,26,9,30,327,67.69,11,1020.0 -2015,1,26,10,0,414,59.09,13,1020.0 -2015,1,26,10,30,475,55.36,14,1020.0 -2015,1,26,11,0,637,51.51,15,1020.0 -2015,1,26,11,30,682,51.480000000000004,16,1020.0 -2015,1,26,12,0,566,50.09,17,1020.0 -2015,1,26,12,30,615,50.06,17,1020.0 -2015,1,26,13,0,714,49.09,17,1020.0 -2015,1,26,13,30,598,49.08,17,1020.0 -2015,1,26,14,0,548,48.26,18,1010.0 -2015,1,26,14,30,505,51.38,18,1010.0 -2015,1,26,15,0,455,53.67,18,1010.0 -2015,1,26,15,30,307,57.18,17,1010.0 -2015,1,26,16,0,289,70.91,16,1010.0 -2015,1,26,16,30,219,80.60000000000001,15,1010.0 -2015,1,26,17,0,126,78.28,14,1010.0 -2015,1,26,17,30,41,83.58,13,1010.0 -2015,1,26,18,0,0,77.18,12,1010.0 -2015,1,26,18,30,0,82.44,11,1010.0 -2015,1,26,19,0,0,82.66,11,1010.0 -2015,1,26,19,30,0,88.34,11,1010.0 -2015,1,26,20,0,0,88.57000000000001,11,1010.0 -2015,1,26,20,30,0,88.57000000000001,11,1010.0 -2015,1,26,21,0,0,88.92,11,1010.0 -2015,1,26,21,30,0,88.91,10,1010.0 -2015,1,26,22,0,0,89.17,10,1010.0 -2015,1,26,22,30,0,89.17,10,1010.0 -2015,1,26,23,0,0,88.85000000000001,10,1010.0 -2015,1,26,23,30,0,94.99,9,1010.0 -2015,1,27,0,0,0,94.0,9,1010.0 -2015,1,27,0,30,0,93.99,9,1010.0 -2015,1,27,1,0,0,92.82000000000001,9,1010.0 -2015,1,27,1,30,0,99.29,8,1010.0 -2015,1,27,2,0,0,97.98,8,1010.0 -2015,1,27,2,30,0,97.96000000000001,8,1010.0 -2015,1,27,3,0,0,96.26,8,1010.0 -2015,1,27,3,30,0,100.0,7,1010.0 -2015,1,27,4,0,0,100.0,7,1010.0 -2015,1,27,4,30,0,100.0,7,1010.0 -2015,1,27,5,0,0,99.34,7,1010.0 -2015,1,27,5,30,0,99.36,7,1010.0 -2015,1,27,6,0,0,97.82000000000001,7,1010.0 -2015,1,27,6,30,0,97.85000000000001,7,1010.0 -2015,1,27,7,0,0,97.55,8,1010.0 -2015,1,27,7,30,27,91.15,9,1010.0 -2015,1,27,8,0,115,81.36,10,1010.0 -2015,1,27,8,30,218,76.14,11,1010.0 -2015,1,27,9,0,320,70.75,13,1020.0 -2015,1,27,9,30,417,66.31,14,1020.0 -2015,1,27,10,0,504,60.26,16,1020.0 -2015,1,27,10,30,579,56.54,17,1010.0 -2015,1,27,11,0,640,57.68,18,1010.0 -2015,1,27,11,30,685,54.160000000000004,19,1010.0 -2015,1,27,12,0,715,52.95,20,1010.0 -2015,1,27,12,30,726,52.93,20,1010.0 -2015,1,27,13,0,719,51.64,21,1010.0 -2015,1,27,13,30,695,51.63,21,1010.0 -2015,1,27,14,0,654,49.89,22,1010.0 -2015,1,27,14,30,597,49.88,22,1010.0 -2015,1,27,15,0,524,52.26,22,1010.0 -2015,1,27,15,30,440,55.550000000000004,21,1010.0 -2015,1,27,16,0,345,63.72,21,1010.0 -2015,1,27,16,30,244,67.76,20,1010.0 -2015,1,27,17,0,141,58.730000000000004,19,1010.0 -2015,1,27,17,30,48,58.74,19,1010.0 -2015,1,27,18,0,0,52.57,19,1010.0 -2015,1,27,18,30,0,55.97,18,1010.0 -2015,1,27,19,0,0,54.92,18,1010.0 -2015,1,27,19,30,0,58.5,17,1010.0 -2015,1,27,20,0,0,58.370000000000005,17,1010.0 -2015,1,27,20,30,0,62.190000000000005,16,1010.0 -2015,1,27,21,0,0,67.33,15,1010.0 -2015,1,27,21,30,0,71.81,14,1010.0 -2015,1,27,22,0,0,77.61,14,1010.0 -2015,1,27,22,30,0,82.86,13,1010.0 -2015,1,27,23,0,0,83.51,12,1010.0 -2015,1,27,23,30,0,89.21000000000001,11,1010.0 -2015,1,28,0,0,0,90.23,11,1010.0 -2015,1,28,0,30,0,96.43,10,1010.0 -2015,1,28,1,0,0,97.48,10,1010.0 -2015,1,28,1,30,0,100.0,10,1010.0 -2015,1,28,2,0,0,100.0,10,1010.0 -2015,1,28,2,30,0,100.0,9,1010.0 -2015,1,28,3,0,0,100.0,9,1010.0 -2015,1,28,3,30,0,100.0,8,1010.0 -2015,1,28,4,0,0,100.0,8,1010.0 -2015,1,28,4,30,0,100.0,8,1010.0 -2015,1,28,5,0,0,100.0,8,1010.0 -2015,1,28,5,30,0,100.0,8,1010.0 -2015,1,28,6,0,0,100.0,8,1020.0 -2015,1,28,6,30,0,100.0,8,1020.0 -2015,1,28,7,0,0,100.0,9,1020.0 -2015,1,28,7,30,27,98.63,11,1020.0 -2015,1,28,8,0,115,91.86,13,1020.0 -2015,1,28,8,30,217,86.06,14,1020.0 -2015,1,28,9,0,320,79.03,15,1020.0 -2015,1,28,9,30,417,74.15,16,1020.0 -2015,1,28,10,0,504,65.22,18,1020.0 -2015,1,28,10,30,579,61.26,19,1020.0 -2015,1,28,11,0,640,54.7,20,1020.0 -2015,1,28,11,30,685,51.410000000000004,21,1020.0 -2015,1,28,12,0,715,47.82,22,1020.0 -2015,1,28,12,30,726,47.79,22,1010.0 -2015,1,28,13,0,718,48.45,22,1010.0 -2015,1,28,13,30,694,48.44,22,1010.0 -2015,1,28,14,0,653,50.050000000000004,22,1010.0 -2015,1,28,14,30,596,53.18,21,1010.0 -2015,1,28,15,0,521,57.1,21,1010.0 -2015,1,28,15,30,438,60.71,20,1010.0 -2015,1,28,16,0,345,71.62,19,1010.0 -2015,1,28,16,30,244,81.17,17,1010.0 -2015,1,28,17,0,143,86.98,16,1010.0 -2015,1,28,17,30,49,92.74,15,1010.0 -2015,1,28,18,0,0,99.71000000000001,14,1010.0 -2015,1,28,18,30,0,100.0,13,1010.0 -2015,1,28,19,0,0,100.0,13,1010.0 -2015,1,28,19,30,0,100.0,12,1010.0 -2015,1,28,20,0,0,100.0,12,1010.0 -2015,1,28,20,30,0,100.0,12,1010.0 -2015,1,28,21,0,0,100.0,12,1010.0 -2015,1,28,21,30,0,100.0,12,1010.0 -2015,1,28,22,0,0,100.0,12,1010.0 -2015,1,28,22,30,0,100.0,11,1010.0 -2015,1,28,23,0,0,100.0,11,1010.0 -2015,1,28,23,30,0,100.0,11,1010.0 -2015,1,29,0,0,0,100.0,11,1010.0 -2015,1,29,0,30,0,100.0,11,1010.0 -2015,1,29,1,0,0,100.0,11,1010.0 -2015,1,29,1,30,0,100.0,11,1010.0 -2015,1,29,2,0,0,100.0,11,1010.0 -2015,1,29,2,30,0,100.0,11,1010.0 -2015,1,29,3,0,0,100.0,11,1010.0 -2015,1,29,3,30,0,100.0,11,1010.0 -2015,1,29,4,0,0,100.0,11,1010.0 -2015,1,29,4,30,0,100.0,11,1010.0 -2015,1,29,5,0,0,100.0,11,1010.0 -2015,1,29,5,30,0,100.0,11,1020.0 -2015,1,29,6,0,0,100.0,11,1020.0 -2015,1,29,6,30,0,100.0,11,1020.0 -2015,1,29,7,0,0,100.0,12,1020.0 -2015,1,29,7,30,28,100.0,13,1020.0 -2015,1,29,8,0,114,99.87,15,1020.0 -2015,1,29,8,30,215,93.71000000000001,16,1020.0 -2015,1,29,9,0,314,92.56,18,1020.0 -2015,1,29,9,30,409,86.93,18,1020.0 -2015,1,29,10,0,494,82.45,19,1020.0 -2015,1,29,10,30,567,77.49,20,1020.0 -2015,1,29,11,0,626,72.3,21,1020.0 -2015,1,29,11,30,670,72.27,21,1020.0 -2015,1,29,12,0,697,71.60000000000001,22,1020.0 -2015,1,29,12,30,708,71.57000000000001,22,1020.0 -2015,1,29,13,0,701,66.54,22,1020.0 -2015,1,29,13,30,677,66.53,22,1020.0 -2015,1,29,14,0,636,65.82000000000001,22,1020.0 -2015,1,29,14,30,580,65.82000000000001,22,1020.0 -2015,1,29,15,0,509,66.23,22,1020.0 -2015,1,29,15,30,427,70.41,21,1020.0 -2015,1,29,16,0,334,75.65,21,1020.0 -2015,1,29,16,30,236,80.47,20,1020.0 -2015,1,29,17,0,136,83.83,19,1020.0 -2015,1,29,17,30,47,89.26,18,1020.0 -2015,1,29,18,0,0,83.10000000000001,18,1020.0 -2015,1,29,18,30,0,88.52,17,1020.0 -2015,1,29,19,0,0,87.04,17,1020.0 -2015,1,29,19,30,0,92.75,16,1020.0 -2015,1,29,20,0,0,91.4,16,1020.0 -2015,1,29,20,30,0,91.4,16,1020.0 -2015,1,29,21,0,0,90.03,16,1020.0 -2015,1,29,21,30,0,95.98,15,1020.0 -2015,1,29,22,0,0,92.79,15,1020.0 -2015,1,29,22,30,0,98.97,14,1020.0 -2015,1,29,23,0,0,93.75,14,1020.0 -2015,1,29,23,30,0,93.76,14,1020.0 -2015,1,30,0,0,0,86.81,14,1020.0 -2015,1,30,0,30,0,92.64,13,1020.0 -2015,1,30,1,0,0,86.29,13,1020.0 -2015,1,30,1,30,0,92.13,12,1020.0 -2015,1,30,2,0,0,87.71000000000001,12,1020.0 -2015,1,30,2,30,0,93.69,11,1020.0 -2015,1,30,3,0,0,90.4,11,1020.0 -2015,1,30,3,30,0,90.41,11,1020.0 -2015,1,30,4,0,0,88.19,11,1020.0 -2015,1,30,4,30,0,94.27,10,1020.0 -2015,1,30,5,0,0,92.33,10,1020.0 -2015,1,30,5,30,0,92.35000000000001,10,1020.0 -2015,1,30,6,0,0,90.84,10,1020.0 -2015,1,30,6,30,0,90.87,10,1020.0 -2015,1,30,7,0,0,89.47,10,1020.0 -2015,1,30,7,30,16,89.5,10,1020.0 -2015,1,30,8,0,66,85.28,10,1020.0 -2015,1,30,8,30,148,85.29,10,1020.0 -2015,1,30,9,0,238,76.21000000000001,11,1020.0 -2015,1,30,9,30,342,76.21000000000001,11,1020.0 -2015,1,30,10,0,390,69.37,12,1020.0 -2015,1,30,10,30,562,69.35000000000001,12,1020.0 -2015,1,30,11,0,503,64.09,13,1020.0 -2015,1,30,11,30,665,64.07000000000001,13,1020.0 -2015,1,30,12,0,683,63.47,13,1020.0 -2015,1,30,12,30,607,63.440000000000005,13,1020.0 -2015,1,30,13,0,573,63.120000000000005,14,1020.0 -2015,1,30,13,30,663,63.1,14,1020.0 -2015,1,30,14,0,517,59.6,14,1020.0 -2015,1,30,14,30,451,59.59,14,1020.0 -2015,1,30,15,0,373,60.04,14,1020.0 -2015,1,30,15,30,312,64.06,14,1020.0 -2015,1,30,16,0,283,66.18,14,1020.0 -2015,1,30,16,30,200,70.66,12,1020.0 -2015,1,30,17,0,116,81.85000000000001,11,1020.0 -2015,1,30,17,30,41,87.48,10,1020.0 -2015,1,30,18,0,0,85.79,10,1020.0 -2015,1,30,18,30,0,85.8,10,1020.0 -2015,1,30,19,0,0,85.71000000000001,10,1020.0 -2015,1,30,19,30,0,85.7,10,1020.0 -2015,1,30,20,0,0,84.63,10,1020.0 -2015,1,30,20,30,0,90.48,9,1020.0 -2015,1,30,21,0,0,88.38,9,1020.0 -2015,1,30,21,30,0,94.54,8,1020.0 -2015,1,30,22,0,0,93.74,8,1020.0 -2015,1,30,22,30,0,93.71000000000001,8,1020.0 -2015,1,30,23,0,0,93.65,8,1020.0 -2015,1,30,23,30,0,93.62,8,1020.0 -2015,1,31,0,0,0,94.04,8,1020.0 -2015,1,31,0,30,0,94.01,8,1020.0 -2015,1,31,1,0,0,94.21000000000001,8,1020.0 -2015,1,31,1,30,0,94.17,8,1020.0 -2015,1,31,2,0,0,95.17,8,1020.0 -2015,1,31,2,30,0,100.0,8,1020.0 -2015,1,31,3,0,0,100.0,8,1020.0 -2015,1,31,3,30,0,100.0,7,1020.0 -2015,1,31,4,0,0,100.0,7,1020.0 -2015,1,31,4,30,0,100.0,7,1020.0 -2015,1,31,5,0,0,98.04,8,1020.0 -2015,1,31,5,30,0,98.06,8,1020.0 -2015,1,31,6,0,0,99.35000000000001,8,1020.0 -2015,1,31,6,30,0,99.37,8,1020.0 -2015,1,31,7,0,0,94.91,9,1020.0 -2015,1,31,7,30,1,94.91,9,1020.0 -2015,1,31,8,0,6,92.10000000000001,10,1020.0 -2015,1,31,8,30,117,86.16,11,1020.0 -2015,1,31,9,0,133,85.16,12,1020.0 -2015,1,31,9,30,218,79.74,13,1020.0 -2015,1,31,10,0,315,80.61,14,1020.0 -2015,1,31,10,30,458,80.58,15,1020.0 -2015,1,31,11,0,516,81.31,16,1010.0 -2015,1,31,11,30,554,81.26,16,1010.0 -2015,1,31,12,0,371,80.12,16,1010.0 -2015,1,31,12,30,470,80.07000000000001,16,1010.0 -2015,1,31,13,0,443,82.38,16,1010.0 -2015,1,31,13,30,479,82.35000000000001,16,1010.0 -2015,1,31,14,0,162,84.17,16,1010.0 -2015,1,31,14,30,307,89.7,16,1010.0 -2015,1,31,15,0,309,91.38,16,1010.0 -2015,1,31,15,30,348,91.37,15,1010.0 -2015,1,31,16,0,166,92.81,15,1010.0 -2015,1,31,16,30,98,98.98,14,1010.0 -2015,1,31,17,0,56,99.76,14,1010.0 -2015,1,31,17,30,19,99.76,14,1010.0 -2015,1,31,18,0,0,100.0,14,1010.0 -2015,1,31,18,30,0,100.0,14,1010.0 -2015,1,31,19,0,0,100.0,14,1010.0 -2015,1,31,19,30,0,100.0,14,1010.0 -2015,1,31,20,0,0,100.0,14,1010.0 -2015,1,31,20,30,0,100.0,14,1010.0 -2015,1,31,21,0,0,100.0,15,1010.0 -2015,1,31,21,30,0,100.0,15,1010.0 -2015,1,31,22,0,0,100.0,15,1010.0 -2015,1,31,22,30,0,100.0,15,1010.0 -2015,1,31,23,0,0,100.0,15,1010.0 -2015,1,31,23,30,0,100.0,15,1010.0 -2015,2,1,0,0,0,100.0,15,1010.0 -2015,2,1,0,30,0,100.0,15,1010.0 -2015,2,1,1,0,0,100.0,15,1010.0 -2015,2,1,1,30,0,100.0,15,1010.0 -2015,2,1,2,0,0,100.0,15,1010.0 -2015,2,1,2,30,0,100.0,15,1010.0 -2015,2,1,3,0,0,100.0,15,1010.0 -2015,2,1,3,30,0,100.0,15,1010.0 -2015,2,1,4,0,0,100.0,15,1010.0 -2015,2,1,4,30,0,100.0,15,1010.0 -2015,2,1,5,0,0,100.0,15,1010.0 -2015,2,1,5,30,0,100.0,15,1010.0 -2015,2,1,6,0,0,100.0,15,1010.0 -2015,2,1,6,30,0,100.0,15,1010.0 -2015,2,1,7,0,0,100.0,16,1010.0 -2015,2,1,7,30,8,100.0,16,1010.0 -2015,2,1,8,0,31,100.0,17,1010.0 -2015,2,1,8,30,201,95.42,18,1010.0 -2015,2,1,9,0,298,93.33,19,1010.0 -2015,2,1,9,30,391,87.72,20,1010.0 -2015,2,1,10,0,477,82.7,21,1010.0 -2015,2,1,10,30,550,82.67,21,1010.0 -2015,2,1,11,0,610,76.96000000000001,22,1010.0 -2015,2,1,11,30,654,76.93,22,1010.0 -2015,2,1,12,0,682,75.94,22,1010.0 -2015,2,1,12,30,693,75.9,22,1010.0 -2015,2,1,13,0,476,71.12,23,1010.0 -2015,2,1,13,30,498,75.54,22,1010.0 -2015,2,1,14,0,501,75.95,22,1010.0 -2015,2,1,14,30,266,75.95,22,1010.0 -2015,2,1,15,0,227,77.54,22,1010.0 -2015,2,1,15,30,217,82.44,21,1010.0 -2015,2,1,16,0,263,89.66,20,1010.0 -2015,2,1,16,30,153,95.45,19,1010.0 -2015,2,1,17,0,89,88.84,19,1010.0 -2015,2,1,17,30,31,94.63,18,1010.0 -2015,2,1,18,0,0,85.55,17,1010.0 -2015,2,1,18,30,0,97.25,16,1010.0 -2015,2,1,19,0,0,81.46000000000001,15,1010.0 -2015,2,1,19,30,0,86.99,14,1010.0 -2015,2,1,20,0,0,71.02,13,1010.0 -2015,2,1,20,30,0,75.87,12,1010.0 -2015,2,1,21,0,0,65.92,12,1010.0 -2015,2,1,21,30,0,70.46000000000001,11,1010.0 -2015,2,1,22,0,0,65.7,10,1010.0 -2015,2,1,22,30,0,70.29,9,1010.0 -2015,2,1,23,0,0,62.74,9,1020.0 -2015,2,1,23,30,0,67.16,8,1020.0 -2015,2,2,0,0,0,67.89,7,1020.0 -2015,2,2,0,30,0,72.75,6,1020.0 -2015,2,2,1,0,0,68.98,6,1020.0 -2015,2,2,1,30,0,73.95,5,1020.0 -2015,2,2,2,0,0,68.57000000000001,5,1020.0 -2015,2,2,2,30,0,73.54,4,1020.0 -2015,2,2,3,0,0,68.43,4,1020.0 -2015,2,2,3,30,0,73.43,3,1020.0 -2015,2,2,4,0,0,68.93,3,1020.0 -2015,2,2,4,30,0,74.03,2,1020.0 -2015,2,2,5,0,0,70.4,2,1020.0 -2015,2,2,5,30,0,70.42,2,1020.0 -2015,2,2,6,0,0,67.47,2,1020.0 -2015,2,2,6,30,0,72.5,1,1020.0 -2015,2,2,7,0,0,69.65,1,1020.0 -2015,2,2,7,30,23,69.67,1,1020.0 -2015,2,2,8,0,82,60.96,2,1020.0 -2015,2,2,8,30,193,60.96,2,1020.0 -2015,2,2,9,0,291,55.7,3,1020.0 -2015,2,2,9,30,370,51.910000000000004,4,1020.0 -2015,2,2,10,0,461,49.9,5,1020.0 -2015,2,2,10,30,473,46.550000000000004,6,1020.0 -2015,2,2,11,0,576,46.04,7,1020.0 -2015,2,2,11,30,637,46.02,7,1020.0 -2015,2,2,12,0,654,45.550000000000004,8,1020.0 -2015,2,2,12,30,663,45.53,8,1020.0 -2015,2,2,13,0,628,44.74,9,1020.0 -2015,2,2,13,30,580,44.71,9,1020.0 -2015,2,2,14,0,534,46.26,9,1020.0 -2015,2,2,14,30,501,46.25,9,1020.0 -2015,2,2,15,0,457,47.410000000000004,9,1020.0 -2015,2,2,15,30,366,47.42,9,1020.0 -2015,2,2,16,0,261,49.35,9,1020.0 -2015,2,2,16,30,269,56.550000000000004,7,1020.0 -2015,2,2,17,0,87,75.08,6,1020.0 -2015,2,2,17,30,33,80.49,5,1020.0 -2015,2,2,18,0,0,80.09,5,1020.0 -2015,2,2,18,30,0,80.11,5,1020.0 -2015,2,2,19,0,0,80.77,5,1020.0 -2015,2,2,19,30,0,80.77,5,1020.0 -2015,2,2,20,0,0,81.15,5,1020.0 -2015,2,2,20,30,0,81.15,5,1020.0 -2015,2,2,21,0,0,81.21000000000001,5,1020.0 -2015,2,2,21,30,0,81.2,5,1020.0 -2015,2,2,22,0,0,79.82000000000001,5,1020.0 -2015,2,2,22,30,0,85.58,5,1020.0 -2015,2,2,23,0,0,84.43,5,1020.0 -2015,2,2,23,30,0,84.43,4,1020.0 -2015,2,3,0,0,0,85.33,4,1020.0 -2015,2,3,0,30,0,85.33,4,1020.0 -2015,2,3,1,0,0,86.15,4,1020.0 -2015,2,3,1,30,0,86.14,4,1020.0 -2015,2,3,2,0,0,87.07000000000001,4,1020.0 -2015,2,3,2,30,0,87.06,4,1020.0 -2015,2,3,3,0,0,88.35000000000001,4,1020.0 -2015,2,3,3,30,0,88.32000000000001,4,1020.0 -2015,2,3,4,0,0,89.41,4,1020.0 -2015,2,3,4,30,0,89.4,4,1020.0 -2015,2,3,5,0,0,90.34,4,1020.0 -2015,2,3,5,30,0,90.35000000000001,4,1020.0 -2015,2,3,6,0,0,91.45,4,1020.0 -2015,2,3,6,30,0,91.46000000000001,4,1020.0 -2015,2,3,7,0,0,93.71000000000001,4,1020.0 -2015,2,3,7,30,8,93.73,5,1020.0 -2015,2,3,8,0,29,89.0,6,1020.0 -2015,2,3,8,30,42,83.06,6,1020.0 -2015,2,3,9,0,55,77.8,7,1020.0 -2015,2,3,9,30,137,77.81,7,1020.0 -2015,2,3,10,0,176,72.26,8,1020.0 -2015,2,3,10,30,170,72.25,8,1020.0 -2015,2,3,11,0,176,73.04,8,1020.0 -2015,2,3,11,30,122,73.02,8,1020.0 -2015,2,3,12,0,154,73.96000000000001,8,1020.0 -2015,2,3,12,30,116,73.93,8,1020.0 -2015,2,3,13,0,148,75.39,8,1020.0 -2015,2,3,13,30,129,75.36,8,1020.0 -2015,2,3,14,0,109,77.05,8,1020.0 -2015,2,3,14,30,100,77.03,8,1020.0 -2015,2,3,15,0,166,78.94,8,1020.0 -2015,2,3,15,30,121,78.94,8,1020.0 -2015,2,3,16,0,106,81.89,8,1020.0 -2015,2,3,16,30,130,87.66,7,1020.0 -2015,2,3,17,0,12,90.05,7,1020.0 -2015,2,3,17,30,4,96.46000000000001,6,1020.0 -2015,2,3,18,0,0,97.33,6,1020.0 -2015,2,3,18,30,0,97.33,6,1020.0 -2015,2,3,19,0,0,96.92,6,1020.0 -2015,2,3,19,30,0,96.91,6,1020.0 -2015,2,3,20,0,0,96.62,6,1020.0 -2015,2,3,20,30,0,96.60000000000001,6,1020.0 -2015,2,3,21,0,0,96.84,6,1020.0 -2015,2,3,21,30,0,96.81,6,1020.0 -2015,2,3,22,0,0,98.7,6,1020.0 -2015,2,3,22,30,0,98.67,6,1020.0 -2015,2,3,23,0,0,100.0,6,1020.0 -2015,2,3,23,30,0,100.0,6,1020.0 -2015,2,4,0,0,0,100.0,6,1020.0 -2015,2,4,0,30,0,100.0,6,1020.0 -2015,2,4,1,0,0,100.0,6,1020.0 -2015,2,4,1,30,0,100.0,6,1020.0 -2015,2,4,2,0,0,100.0,6,1020.0 -2015,2,4,2,30,0,100.0,6,1010.0 -2015,2,4,3,0,0,100.0,6,1010.0 -2015,2,4,3,30,0,100.0,6,1010.0 -2015,2,4,4,0,0,99.99000000000001,6,1010.0 -2015,2,4,4,30,0,99.99000000000001,6,1010.0 -2015,2,4,5,0,0,99.64,6,1010.0 -2015,2,4,5,30,0,100.0,6,1010.0 -2015,2,4,6,0,0,100.0,6,1010.0 -2015,2,4,6,30,0,100.0,6,1010.0 -2015,2,4,7,0,0,100.0,6,1010.0 -2015,2,4,7,30,33,93.99,7,1010.0 -2015,2,4,8,0,119,94.49,8,1010.0 -2015,2,4,8,30,82,88.3,9,1010.0 -2015,2,4,9,0,141,90.42,10,1010.0 -2015,2,4,9,30,417,84.59,11,1010.0 -2015,2,4,10,0,505,85.3,12,1010.0 -2015,2,4,10,30,297,79.87,13,1010.0 -2015,2,4,11,0,329,79.92,14,1010.0 -2015,2,4,11,30,399,79.88,14,1010.0 -2015,2,4,12,0,466,78.88,15,1010.0 -2015,2,4,12,30,473,78.83,15,1010.0 -2015,2,4,13,0,279,75.89,16,1010.0 -2015,2,4,13,30,262,75.86,16,1010.0 -2015,2,4,14,0,430,71.21000000000001,17,1010.0 -2015,2,4,14,30,410,71.2,17,1010.0 -2015,2,4,15,0,203,71.56,17,1010.0 -2015,2,4,15,30,129,76.24,16,1010.0 -2015,2,4,16,0,348,78.5,16,1010.0 -2015,2,4,16,30,117,83.7,15,1010.0 -2015,2,4,17,0,151,88.01,14,1010.0 -2015,2,4,17,30,59,93.95,13,1010.0 -2015,2,4,18,0,0,88.35000000000001,13,1010.0 -2015,2,4,18,30,0,94.37,12,1010.0 -2015,2,4,19,0,0,94.10000000000001,12,1010.0 -2015,2,4,19,30,0,94.13,12,1010.0 -2015,2,4,20,0,0,93.92,12,1010.0 -2015,2,4,20,30,0,100.0,12,1010.0 -2015,2,4,21,0,0,100.0,12,1010.0 -2015,2,4,21,30,0,100.0,12,1010.0 -2015,2,4,22,0,0,94.52,12,1010.0 -2015,2,4,22,30,0,100.0,11,1010.0 -2015,2,4,23,0,0,100.0,11,1010.0 -2015,2,4,23,30,0,100.0,11,1010.0 -2015,2,5,0,0,0,100.0,11,1010.0 -2015,2,5,0,30,0,100.0,11,1010.0 -2015,2,5,1,0,0,100.0,11,1020.0 -2015,2,5,1,30,0,100.0,11,1020.0 -2015,2,5,2,0,0,100.0,11,1020.0 -2015,2,5,2,30,0,100.0,11,1020.0 -2015,2,5,3,0,0,100.0,11,1020.0 -2015,2,5,3,30,0,100.0,11,1020.0 -2015,2,5,4,0,0,99.84,11,1020.0 -2015,2,5,4,30,0,100.0,11,1020.0 -2015,2,5,5,0,0,100.0,11,1020.0 -2015,2,5,5,30,0,100.0,10,1020.0 -2015,2,5,6,0,0,98.56,10,1020.0 -2015,2,5,6,30,0,100.0,9,1020.0 -2015,2,5,7,0,0,98.28,9,1020.0 -2015,2,5,7,30,1,98.32000000000001,9,1020.0 -2015,2,5,8,0,6,92.54,9,1020.0 -2015,2,5,8,30,18,92.58,9,1020.0 -2015,2,5,9,0,22,88.61,9,1020.0 -2015,2,5,9,30,41,88.64,9,1020.0 -2015,2,5,10,0,53,86.54,9,1020.0 -2015,2,5,10,30,56,86.55,9,1020.0 -2015,2,5,11,0,98,85.83,9,1020.0 -2015,2,5,11,30,138,85.82000000000001,9,1020.0 -2015,2,5,12,0,160,85.60000000000001,9,1020.0 -2015,2,5,12,30,141,85.57000000000001,9,1020.0 -2015,2,5,13,0,153,79.8,10,1020.0 -2015,2,5,13,30,190,79.78,10,1020.0 -2015,2,5,14,0,122,79.45,10,1020.0 -2015,2,5,14,30,196,84.95,9,1020.0 -2015,2,5,15,0,163,84.3,9,1020.0 -2015,2,5,15,30,124,84.31,9,1020.0 -2015,2,5,16,0,101,83.15,9,1020.0 -2015,2,5,16,30,104,88.98,8,1020.0 -2015,2,5,17,0,56,87.4,8,1020.0 -2015,2,5,17,30,56,93.58,7,1020.0 -2015,2,5,18,0,0,91.96000000000001,7,1020.0 -2015,2,5,18,30,0,98.52,6,1020.0 -2015,2,5,19,0,0,96.87,6,1020.0 -2015,2,5,19,30,0,96.89,6,1020.0 -2015,2,5,20,0,0,95.66,6,1020.0 -2015,2,5,20,30,0,95.68,6,1020.0 -2015,2,5,21,0,0,94.99,6,1020.0 -2015,2,5,21,30,0,95.01,6,1020.0 -2015,2,5,22,0,0,94.86,6,1020.0 -2015,2,5,22,30,0,94.85000000000001,6,1020.0 -2015,2,5,23,0,0,95.05,6,1020.0 -2015,2,5,23,30,0,100.0,6,1020.0 -2015,2,6,0,0,0,100.0,6,1020.0 -2015,2,6,0,30,0,100.0,5,1020.0 -2015,2,6,1,0,0,100.0,5,1020.0 -2015,2,6,1,30,0,100.0,5,1020.0 -2015,2,6,2,0,0,100.0,6,1020.0 -2015,2,6,2,30,0,100.0,6,1020.0 -2015,2,6,3,0,0,97.06,6,1020.0 -2015,2,6,3,30,0,97.05,6,1020.0 -2015,2,6,4,0,0,97.33,6,1020.0 -2015,2,6,4,30,0,97.34,6,1020.0 -2015,2,6,5,0,0,97.42,6,1020.0 -2015,2,6,5,30,0,97.44,6,1020.0 -2015,2,6,6,0,0,97.39,6,1020.0 -2015,2,6,6,30,0,97.42,6,1020.0 -2015,2,6,7,0,0,97.48,6,1020.0 -2015,2,6,7,30,2,97.51,6,1020.0 -2015,2,6,8,0,10,91.5,7,1020.0 -2015,2,6,8,30,34,91.51,7,1020.0 -2015,2,6,9,0,44,86.62,8,1020.0 -2015,2,6,9,30,88,80.94,9,1020.0 -2015,2,6,10,0,120,78.11,10,1020.0 -2015,2,6,10,30,161,73.05,11,1020.0 -2015,2,6,11,0,231,70.62,12,1020.0 -2015,2,6,11,30,221,70.56,12,1020.0 -2015,2,6,12,0,283,67.38,13,1020.0 -2015,2,6,12,30,335,67.33,13,1020.0 -2015,2,6,13,0,395,63.86,14,1020.0 -2015,2,6,13,30,486,63.83,14,1020.0 -2015,2,6,14,0,455,64.41,14,1020.0 -2015,2,6,14,30,454,64.4,14,1020.0 -2015,2,6,15,0,399,64.45,14,1020.0 -2015,2,6,15,30,452,68.77,13,1020.0 -2015,2,6,16,0,359,70.33,13,1020.0 -2015,2,6,16,30,193,75.08,12,1020.0 -2015,2,6,17,0,126,85.01,12,1020.0 -2015,2,6,17,30,51,90.86,11,1020.0 -2015,2,6,18,0,0,85.35000000000001,10,1020.0 -2015,2,6,18,30,0,91.27,9,1020.0 -2015,2,6,19,0,0,90.72,9,1020.0 -2015,2,6,19,30,0,97.07000000000001,8,1020.0 -2015,2,6,20,0,0,96.47,8,1020.0 -2015,2,6,20,30,0,100.0,7,1020.0 -2015,2,6,21,0,0,100.0,7,1020.0 -2015,2,6,21,30,0,100.0,7,1020.0 -2015,2,6,22,0,0,100.0,7,1020.0 -2015,2,6,22,30,0,100.0,6,1020.0 -2015,2,6,23,0,0,100.0,6,1020.0 -2015,2,6,23,30,0,100.0,6,1020.0 -2015,2,7,0,0,0,100.0,6,1020.0 -2015,2,7,0,30,0,100.0,6,1020.0 -2015,2,7,1,0,0,100.0,6,1020.0 -2015,2,7,1,30,0,100.0,6,1020.0 -2015,2,7,2,0,0,100.0,6,1020.0 -2015,2,7,2,30,0,100.0,6,1020.0 -2015,2,7,3,0,0,100.0,6,1020.0 -2015,2,7,3,30,0,100.0,6,1020.0 -2015,2,7,4,0,0,100.0,7,1020.0 -2015,2,7,4,30,0,100.0,7,1020.0 -2015,2,7,5,0,0,100.0,7,1020.0 -2015,2,7,5,30,0,100.0,7,1020.0 -2015,2,7,6,0,0,100.0,7,1020.0 -2015,2,7,6,30,0,100.0,7,1020.0 -2015,2,7,7,0,0,100.0,8,1020.0 -2015,2,7,7,30,39,95.44,9,1020.0 -2015,2,7,8,0,130,93.49,10,1020.0 -2015,2,7,8,30,233,87.48,11,1020.0 -2015,2,7,9,0,339,81.46000000000001,13,1020.0 -2015,2,7,9,30,438,76.32000000000001,14,1020.0 -2015,2,7,10,0,528,69.97,16,1020.0 -2015,2,7,10,30,605,69.94,16,1020.0 -2015,2,7,11,0,513,68.62,17,1020.0 -2015,2,7,11,30,549,68.57000000000001,17,1010.0 -2015,2,7,12,0,405,66.62,18,1010.0 -2015,2,7,12,30,411,66.58,18,1010.0 -2015,2,7,13,0,401,64.03,19,1010.0 -2015,2,7,13,30,260,64.0,19,1010.0 -2015,2,7,14,0,278,64.88,19,1010.0 -2015,2,7,14,30,350,64.86,19,1010.0 -2015,2,7,15,0,279,65.61,19,1010.0 -2015,2,7,15,30,479,69.82000000000001,18,1010.0 -2015,2,7,16,0,384,71.49,18,1010.0 -2015,2,7,16,30,281,81.11,16,1010.0 -2015,2,7,17,0,176,88.08,15,1010.0 -2015,2,7,17,30,75,93.95,14,1010.0 -2015,2,7,18,0,0,98.14,13,1010.0 -2015,2,7,18,30,0,98.15,13,1010.0 -2015,2,7,19,0,0,99.66,13,1010.0 -2015,2,7,19,30,0,100.0,12,1010.0 -2015,2,7,20,0,0,100.0,12,1010.0 -2015,2,7,20,30,0,100.0,11,1010.0 -2015,2,7,21,0,0,100.0,11,1010.0 -2015,2,7,21,30,0,100.0,11,1010.0 -2015,2,7,22,0,0,100.0,11,1010.0 -2015,2,7,22,30,0,100.0,11,1010.0 -2015,2,7,23,0,0,100.0,11,1010.0 -2015,2,7,23,30,0,100.0,11,1010.0 -2015,2,8,0,0,0,100.0,11,1010.0 -2015,2,8,0,30,0,100.0,11,1010.0 -2015,2,8,1,0,0,100.0,11,1010.0 -2015,2,8,1,30,0,100.0,11,1010.0 -2015,2,8,2,0,0,100.0,12,1010.0 -2015,2,8,2,30,0,100.0,12,1010.0 -2015,2,8,3,0,0,100.0,12,1010.0 -2015,2,8,3,30,0,100.0,12,1010.0 -2015,2,8,4,0,0,100.0,12,1010.0 -2015,2,8,4,30,0,100.0,12,1010.0 -2015,2,8,5,0,0,100.0,12,1010.0 -2015,2,8,5,30,0,100.0,12,1010.0 -2015,2,8,6,0,0,100.0,13,1010.0 -2015,2,8,6,30,0,100.0,13,1010.0 -2015,2,8,7,0,0,100.0,14,1010.0 -2015,2,8,7,30,43,99.05,15,1010.0 -2015,2,8,8,0,135,98.77,16,1010.0 -2015,2,8,8,30,239,92.7,17,1010.0 -2015,2,8,9,0,343,89.75,18,1010.0 -2015,2,8,9,30,441,84.31,19,1010.0 -2015,2,8,10,0,529,78.95,20,1010.0 -2015,2,8,10,30,605,78.92,20,1010.0 -2015,2,8,11,0,668,74.59,21,1010.0 -2015,2,8,11,30,714,74.53,21,1010.0 -2015,2,8,12,0,479,70.48,22,1010.0 -2015,2,8,12,30,486,70.43,22,1010.0 -2015,2,8,13,0,748,70.59,22,1010.0 -2015,2,8,13,30,724,70.56,22,1000.0 -2015,2,8,14,0,682,70.78,22,1000.0 -2015,2,8,14,30,625,70.78,22,1000.0 -2015,2,8,15,0,547,71.24,22,1000.0 -2015,2,8,15,30,463,75.72,21,1000.0 -2015,2,8,16,0,367,77.47,21,1000.0 -2015,2,8,16,30,267,87.66,19,1000.0 -2015,2,8,17,0,164,94.08,18,1010.0 -2015,2,8,17,30,69,100.0,17,1010.0 -2015,2,8,18,0,0,97.76,17,1010.0 -2015,2,8,18,30,0,100.0,16,1010.0 -2015,2,8,19,0,0,100.0,16,1010.0 -2015,2,8,19,30,0,100.0,16,1010.0 -2015,2,8,20,0,0,100.0,16,1010.0 -2015,2,8,20,30,0,100.0,15,1010.0 -2015,2,8,21,0,0,100.0,15,1010.0 -2015,2,8,21,30,0,100.0,15,1010.0 -2015,2,8,22,0,0,100.0,15,1010.0 -2015,2,8,22,30,0,100.0,14,1010.0 -2015,2,8,23,0,0,100.0,14,1010.0 -2015,2,8,23,30,0,100.0,14,1010.0 -2015,2,9,0,0,0,100.0,14,1010.0 -2015,2,9,0,30,0,100.0,13,1010.0 -2015,2,9,1,0,0,100.0,13,1010.0 -2015,2,9,1,30,0,100.0,13,1010.0 -2015,2,9,2,0,0,100.0,13,1010.0 -2015,2,9,2,30,0,100.0,12,1010.0 -2015,2,9,3,0,0,100.0,12,1010.0 -2015,2,9,3,30,0,100.0,12,1010.0 -2015,2,9,4,0,0,100.0,12,1010.0 -2015,2,9,4,30,0,100.0,11,1010.0 -2015,2,9,5,0,0,100.0,11,1010.0 -2015,2,9,5,30,0,100.0,11,1010.0 -2015,2,9,6,0,0,100.0,11,1010.0 -2015,2,9,6,30,0,100.0,11,1010.0 -2015,2,9,7,0,0,100.0,12,1010.0 -2015,2,9,7,30,46,96.19,13,1010.0 -2015,2,9,8,0,143,93.53,15,1010.0 -2015,2,9,8,30,250,87.7,16,1010.0 -2015,2,9,9,0,359,83.47,17,1010.0 -2015,2,9,9,30,459,73.64,19,1010.0 -2015,2,9,10,0,551,66.61,21,1010.0 -2015,2,9,10,30,628,62.660000000000004,22,1010.0 -2015,2,9,11,0,691,53.69,23,1010.0 -2015,2,9,11,30,737,53.67,23,1010.0 -2015,2,9,12,0,766,48.410000000000004,24,1010.0 -2015,2,9,12,30,777,48.39,24,1010.0 -2015,2,9,13,0,770,47.11,24,1010.0 -2015,2,9,13,30,746,47.1,24,1010.0 -2015,2,9,14,0,704,46.65,24,1010.0 -2015,2,9,14,30,647,49.53,23,1010.0 -2015,2,9,15,0,573,51.68,23,1010.0 -2015,2,9,15,30,488,54.910000000000004,22,1010.0 -2015,2,9,16,0,393,64.79,22,1010.0 -2015,2,9,16,30,289,73.23,20,1010.0 -2015,2,9,17,0,183,81.29,18,1010.0 -2015,2,9,17,30,81,86.58,17,1010.0 -2015,2,9,18,0,0,83.38,16,1010.0 -2015,2,9,18,30,0,88.89,15,1010.0 -2015,2,9,19,0,0,85.5,15,1010.0 -2015,2,9,19,30,0,91.19,14,1010.0 -2015,2,9,20,0,0,86.89,14,1010.0 -2015,2,9,20,30,0,92.72,13,1010.0 -2015,2,9,21,0,0,88.18,13,1010.0 -2015,2,9,21,30,0,94.14,12,1010.0 -2015,2,9,22,0,0,89.95,12,1010.0 -2015,2,9,22,30,0,96.08,12,1010.0 -2015,2,9,23,0,0,92.09,12,1010.0 -2015,2,9,23,30,0,92.08,11,1010.0 -2015,2,10,0,0,0,88.91,11,1010.0 -2015,2,10,0,30,0,95.03,10,1010.0 -2015,2,10,1,0,0,92.60000000000001,10,1010.0 -2015,2,10,1,30,0,92.59,10,1010.0 -2015,2,10,2,0,0,90.93,10,1010.0 -2015,2,10,2,30,0,97.23,9,1010.0 -2015,2,10,3,0,0,96.60000000000001,9,1010.0 -2015,2,10,3,30,0,96.60000000000001,9,1010.0 -2015,2,10,4,0,0,97.01,9,1010.0 -2015,2,10,4,30,0,100.0,8,1010.0 -2015,2,10,5,0,0,100.0,8,1010.0 -2015,2,10,5,30,0,100.0,8,1010.0 -2015,2,10,6,0,0,100.0,8,1010.0 -2015,2,10,6,30,0,100.0,8,1010.0 -2015,2,10,7,0,0,100.0,9,1010.0 -2015,2,10,7,30,48,97.42,10,1010.0 -2015,2,10,8,0,145,88.97,12,1010.0 -2015,2,10,8,30,252,83.35000000000001,13,1010.0 -2015,2,10,9,0,358,74.89,15,1010.0 -2015,2,10,9,30,459,70.24,16,1010.0 -2015,2,10,10,0,548,67.8,17,1010.0 -2015,2,10,10,30,626,63.65,18,1010.0 -2015,2,10,11,0,688,61.36,19,1010.0 -2015,2,10,11,30,735,61.32,19,1010.0 -2015,2,10,12,0,770,58.76,20,1010.0 -2015,2,10,12,30,782,58.730000000000004,20,1010.0 -2015,2,10,13,0,775,59.32,21,1010.0 -2015,2,10,13,30,752,59.300000000000004,21,1010.0 -2015,2,10,14,0,710,56.230000000000004,21,1010.0 -2015,2,10,14,30,652,59.78,20,1010.0 -2015,2,10,15,0,579,60.58,20,1010.0 -2015,2,10,15,30,494,64.45,19,1010.0 -2015,2,10,16,0,397,68.34,19,1010.0 -2015,2,10,16,30,293,77.46000000000001,17,1010.0 -2015,2,10,17,0,186,85.95,16,1010.0 -2015,2,10,17,30,83,97.72,15,1010.0 -2015,2,10,18,0,0,93.9,14,1010.0 -2015,2,10,18,30,0,93.91,13,1010.0 -2015,2,10,19,0,0,92.66,13,1010.0 -2015,2,10,19,30,0,98.92,12,1010.0 -2015,2,10,20,0,0,99.05,12,1010.0 -2015,2,10,20,30,0,100.0,11,1010.0 -2015,2,10,21,0,0,100.0,11,1010.0 -2015,2,10,21,30,0,100.0,11,1010.0 -2015,2,10,22,0,0,100.0,11,1010.0 -2015,2,10,22,30,0,100.0,10,1010.0 -2015,2,10,23,0,0,100.0,10,1010.0 -2015,2,10,23,30,0,100.0,10,1010.0 -2015,2,11,0,0,0,100.0,10,1010.0 -2015,2,11,0,30,0,100.0,10,1010.0 -2015,2,11,1,0,0,100.0,10,1010.0 -2015,2,11,1,30,0,100.0,9,1010.0 -2015,2,11,2,0,0,100.0,9,1010.0 -2015,2,11,2,30,0,100.0,9,1010.0 -2015,2,11,3,0,0,100.0,9,1010.0 -2015,2,11,3,30,0,100.0,9,1010.0 -2015,2,11,4,0,0,100.0,9,1010.0 -2015,2,11,4,30,0,100.0,9,1010.0 -2015,2,11,5,0,0,100.0,9,1010.0 -2015,2,11,5,30,0,100.0,9,1010.0 -2015,2,11,6,0,0,100.0,9,1010.0 -2015,2,11,6,30,0,100.0,10,1010.0 -2015,2,11,7,0,0,100.0,11,1010.0 -2015,2,11,7,30,53,100.0,13,1010.0 -2015,2,11,8,0,151,94.26,15,1010.0 -2015,2,11,8,30,259,88.43,16,1010.0 -2015,2,11,9,0,366,86.85000000000001,17,1010.0 -2015,2,11,9,30,465,81.56,18,1010.0 -2015,2,11,10,0,555,75.76,19,1010.0 -2015,2,11,10,30,632,71.2,20,1010.0 -2015,2,11,11,0,694,65.27,21,1010.0 -2015,2,11,11,30,741,65.24,21,1010.0 -2015,2,11,12,0,768,64.33,21,1010.0 -2015,2,11,12,30,780,64.3,21,1010.0 -2015,2,11,13,0,773,60.33,22,1010.0 -2015,2,11,13,30,748,64.12,22,1010.0 -2015,2,11,14,0,706,64.01,22,1010.0 -2015,2,11,14,30,648,64.01,21,1010.0 -2015,2,11,15,0,574,64.28,21,1010.0 -2015,2,11,15,30,489,68.37,20,1010.0 -2015,2,11,16,0,392,70.86,20,1010.0 -2015,2,11,16,30,212,80.27,18,1010.0 -2015,2,11,17,0,140,87.14,17,1010.0 -2015,2,11,17,30,82,92.87,16,1010.0 -2015,2,11,18,0,0,92.98,15,1010.0 -2015,2,11,18,30,0,99.21000000000001,14,1010.0 -2015,2,11,19,0,0,100.0,14,1010.0 -2015,2,11,19,30,0,100.0,13,1010.0 -2015,2,11,20,0,0,100.0,12,1010.0 -2015,2,11,20,30,0,100.0,12,1010.0 -2015,2,11,21,0,0,100.0,12,1010.0 -2015,2,11,21,30,0,100.0,11,1010.0 -2015,2,11,22,0,0,100.0,11,1010.0 -2015,2,11,22,30,0,100.0,11,1010.0 -2015,2,11,23,0,0,100.0,12,1010.0 -2015,2,11,23,30,0,100.0,12,1010.0 -2015,2,12,0,0,0,100.0,12,1010.0 -2015,2,12,0,30,0,100.0,11,1010.0 -2015,2,12,1,0,0,100.0,11,1010.0 -2015,2,12,1,30,0,100.0,10,1020.0 -2015,2,12,2,0,0,100.0,10,1020.0 -2015,2,12,2,30,0,100.0,9,1020.0 -2015,2,12,3,0,0,100.0,9,1020.0 -2015,2,12,3,30,0,100.0,9,1020.0 -2015,2,12,4,0,0,100.0,9,1020.0 -2015,2,12,4,30,0,100.0,9,1020.0 -2015,2,12,5,0,0,100.0,9,1020.0 -2015,2,12,5,30,0,100.0,8,1020.0 -2015,2,12,6,0,0,100.0,8,1020.0 -2015,2,12,6,30,0,100.0,8,1020.0 -2015,2,12,7,0,0,95.73,9,1020.0 -2015,2,12,7,30,47,95.78,9,1020.0 -2015,2,12,8,0,140,87.04,10,1020.0 -2015,2,12,8,30,243,81.46000000000001,11,1020.0 -2015,2,12,9,0,344,77.33,12,1020.0 -2015,2,12,9,30,442,72.44,13,1020.0 -2015,2,12,10,0,529,69.87,14,1020.0 -2015,2,12,10,30,605,65.51,15,1020.0 -2015,2,12,11,0,665,63.52,16,1020.0 -2015,2,12,11,30,711,63.49,16,1020.0 -2015,2,12,12,0,742,61.82,17,1020.0 -2015,2,12,12,30,753,61.800000000000004,17,1020.0 -2015,2,12,13,0,746,59.63,18,1020.0 -2015,2,12,13,30,722,59.61,18,1020.0 -2015,2,12,14,0,680,60.46,18,1020.0 -2015,2,12,14,30,623,64.38,18,1020.0 -2015,2,12,15,0,545,64.88,18,1020.0 -2015,2,12,15,30,462,64.88,17,1020.0 -2015,2,12,16,0,368,66.02,17,1020.0 -2015,2,12,16,30,269,74.99,16,1020.0 -2015,2,12,17,0,169,86.29,15,1020.0 -2015,2,12,17,30,74,92.09,14,1020.0 -2015,2,12,18,0,0,86.76,13,1020.0 -2015,2,12,18,30,0,92.65,12,1020.0 -2015,2,12,19,0,0,89.10000000000001,12,1020.0 -2015,2,12,19,30,0,95.2,11,1020.0 -2015,2,12,20,0,0,91.52,11,1020.0 -2015,2,12,20,30,0,97.83,10,1020.0 -2015,2,12,21,0,0,94.22,10,1020.0 -2015,2,12,21,30,0,100.0,10,1020.0 -2015,2,12,22,0,0,96.9,10,1020.0 -2015,2,12,22,30,0,96.9,9,1020.0 -2015,2,12,23,0,0,93.16,9,1020.0 -2015,2,12,23,30,0,99.67,8,1020.0 -2015,2,13,0,0,0,95.89,8,1020.0 -2015,2,13,0,30,0,100.0,7,1020.0 -2015,2,13,1,0,0,98.79,7,1020.0 -2015,2,13,1,30,0,98.79,7,1020.0 -2015,2,13,2,0,0,95.06,7,1020.0 -2015,2,13,2,30,0,100.0,6,1020.0 -2015,2,13,3,0,0,99.15,6,1020.0 -2015,2,13,3,30,0,99.16,6,1020.0 -2015,2,13,4,0,0,97.16,6,1020.0 -2015,2,13,4,30,0,97.17,6,1020.0 -2015,2,13,5,0,0,94.69,6,1020.0 -2015,2,13,5,30,0,100.0,5,1020.0 -2015,2,13,6,0,0,97.74000000000001,5,1020.0 -2015,2,13,6,30,0,97.75,5,1020.0 -2015,2,13,7,0,0,88.68,6,1020.0 -2015,2,13,7,30,49,82.8,7,1020.0 -2015,2,13,8,0,142,73.17,8,1020.0 -2015,2,13,8,30,244,68.39,9,1020.0 -2015,2,13,9,0,348,60.68,11,1020.0 -2015,2,13,9,30,445,56.81,12,1020.0 -2015,2,13,10,0,533,55.83,13,1020.0 -2015,2,13,10,30,609,52.31,14,1020.0 -2015,2,13,11,0,670,52.52,15,1020.0 -2015,2,13,11,30,716,52.51,15,1020.0 -2015,2,13,12,0,749,52.67,16,1020.0 -2015,2,13,12,30,761,52.65,16,1020.0 -2015,2,13,13,0,751,51.6,17,1020.0 -2015,2,13,13,30,728,51.57,17,1020.0 -2015,2,13,14,0,685,53.300000000000004,17,1020.0 -2015,2,13,14,30,629,53.28,17,1020.0 -2015,2,13,15,0,551,54.85,17,1020.0 -2015,2,13,15,30,468,58.43,17,1020.0 -2015,2,13,16,0,375,62.46,17,1020.0 -2015,2,13,16,30,219,66.58,15,1020.0 -2015,2,13,17,0,173,78.37,14,1020.0 -2015,2,13,17,30,77,83.64,13,1020.0 -2015,2,13,18,0,8,83.63,12,1020.0 -2015,2,13,18,30,0,89.35000000000001,11,1020.0 -2015,2,13,19,0,0,90.51,11,1020.0 -2015,2,13,19,30,0,90.53,11,1020.0 -2015,2,13,20,0,0,92.17,11,1020.0 -2015,2,13,20,30,0,98.51,11,1020.0 -2015,2,13,21,0,0,100.0,11,1020.0 -2015,2,13,21,30,0,100.0,10,1020.0 -2015,2,13,22,0,0,100.0,10,1020.0 -2015,2,13,22,30,0,100.0,10,1020.0 -2015,2,13,23,0,0,100.0,10,1020.0 -2015,2,13,23,30,0,100.0,9,1020.0 -2015,2,14,0,0,0,100.0,9,1020.0 -2015,2,14,0,30,0,100.0,9,1020.0 -2015,2,14,1,0,0,100.0,9,1020.0 -2015,2,14,1,30,0,100.0,9,1020.0 -2015,2,14,2,0,0,100.0,9,1020.0 -2015,2,14,2,30,0,100.0,9,1020.0 -2015,2,14,3,0,0,100.0,9,1020.0 -2015,2,14,3,30,0,100.0,9,1020.0 -2015,2,14,4,0,0,100.0,9,1020.0 -2015,2,14,4,30,0,100.0,8,1020.0 -2015,2,14,5,0,0,100.0,8,1020.0 -2015,2,14,5,30,0,100.0,8,1020.0 -2015,2,14,6,0,0,100.0,8,1020.0 -2015,2,14,6,30,0,100.0,9,1020.0 -2015,2,14,7,0,0,100.0,10,1020.0 -2015,2,14,7,30,52,100.0,11,1020.0 -2015,2,14,8,0,147,93.83,13,1020.0 -2015,2,14,8,30,251,87.94,14,1020.0 -2015,2,14,9,0,356,80.03,16,1020.0 -2015,2,14,9,30,454,75.11,17,1020.0 -2015,2,14,10,0,544,71.15,18,1020.0 -2015,2,14,10,30,621,66.83,19,1020.0 -2015,2,14,11,0,685,63.68,20,1020.0 -2015,2,14,11,30,610,63.65,20,1020.0 -2015,2,14,12,0,764,60.550000000000004,21,1020.0 -2015,2,14,12,30,777,60.51,21,1020.0 -2015,2,14,13,0,772,56.78,22,1020.0 -2015,2,14,13,30,749,56.75,22,1020.0 -2015,2,14,14,0,709,56.13,22,1010.0 -2015,2,14,14,30,652,56.11,22,1010.0 -2015,2,14,15,0,582,55.89,22,1010.0 -2015,2,14,15,30,497,59.39,22,1010.0 -2015,2,14,16,0,401,61.6,22,1010.0 -2015,2,14,16,30,227,69.7,20,1010.0 -2015,2,14,17,0,145,76.05,19,1010.0 -2015,2,14,17,30,68,81.0,17,1010.0 -2015,2,14,18,0,9,79.33,16,1010.0 -2015,2,14,18,30,0,84.57000000000001,15,1010.0 -2015,2,14,19,0,0,84.91,15,1010.0 -2015,2,14,19,30,0,90.58,14,1020.0 -2015,2,14,20,0,0,91.75,14,1020.0 -2015,2,14,20,30,0,97.93,13,1020.0 -2015,2,14,21,0,0,100.0,13,1020.0 -2015,2,14,21,30,0,100.0,13,1020.0 -2015,2,14,22,0,0,100.0,13,1020.0 -2015,2,14,22,30,0,100.0,12,1020.0 -2015,2,14,23,0,0,100.0,12,1020.0 -2015,2,14,23,30,0,100.0,12,1020.0 -2015,2,15,0,0,0,100.0,12,1020.0 -2015,2,15,0,30,0,100.0,12,1020.0 -2015,2,15,1,0,0,100.0,12,1020.0 -2015,2,15,1,30,0,100.0,12,1020.0 -2015,2,15,2,0,0,100.0,12,1010.0 -2015,2,15,2,30,0,100.0,11,1010.0 -2015,2,15,3,0,0,100.0,11,1010.0 -2015,2,15,3,30,0,100.0,11,1010.0 -2015,2,15,4,0,0,100.0,12,1010.0 -2015,2,15,4,30,0,100.0,12,1010.0 -2015,2,15,5,0,0,100.0,12,1010.0 -2015,2,15,5,30,0,100.0,12,1010.0 -2015,2,15,6,0,0,100.0,12,1010.0 -2015,2,15,6,30,0,100.0,12,1010.0 -2015,2,15,7,0,0,100.0,13,1010.0 -2015,2,15,7,30,22,100.0,14,1010.0 -2015,2,15,8,0,70,100.0,15,1020.0 -2015,2,15,8,30,116,94.16,16,1020.0 -2015,2,15,9,0,224,92.14,17,1020.0 -2015,2,15,9,30,230,92.12,17,1010.0 -2015,2,15,10,0,302,88.9,18,1010.0 -2015,2,15,10,30,276,88.87,18,1010.0 -2015,2,15,11,0,316,83.7,19,1010.0 -2015,2,15,11,30,459,83.65,19,1010.0 -2015,2,15,12,0,285,83.91,19,1010.0 -2015,2,15,12,30,153,83.86,19,1010.0 -2015,2,15,13,0,160,78.96000000000001,20,1010.0 -2015,2,15,13,30,246,78.92,20,1010.0 -2015,2,15,14,0,159,79.21000000000001,20,1010.0 -2015,2,15,14,30,312,84.25,19,1010.0 -2015,2,15,15,0,364,85.53,19,1010.0 -2015,2,15,15,30,165,85.52,19,1010.0 -2015,2,15,16,0,259,87.14,19,1010.0 -2015,2,15,16,30,98,92.74,18,1010.0 -2015,2,15,17,0,98,99.03,18,1010.0 -2015,2,15,17,30,45,99.03,17,1010.0 -2015,2,15,18,0,5,98.31,17,1010.0 -2015,2,15,18,30,0,100.0,16,1010.0 -2015,2,15,19,0,0,100.0,16,1010.0 -2015,2,15,19,30,0,100.0,16,1010.0 -2015,2,15,20,0,0,100.0,16,1010.0 -2015,2,15,20,30,0,100.0,16,1010.0 -2015,2,15,21,0,0,100.0,16,1010.0 -2015,2,15,21,30,0,100.0,16,1010.0 -2015,2,15,22,0,0,100.0,17,1010.0 -2015,2,15,22,30,0,100.0,17,1010.0 -2015,2,15,23,0,0,100.0,17,1010.0 -2015,2,15,23,30,0,100.0,17,1010.0 -2015,2,16,0,0,0,100.0,17,1010.0 -2015,2,16,0,30,0,100.0,17,1010.0 -2015,2,16,1,0,0,100.0,17,1010.0 -2015,2,16,1,30,0,100.0,17,1010.0 -2015,2,16,2,0,0,100.0,17,1010.0 -2015,2,16,2,30,0,100.0,17,1010.0 -2015,2,16,3,0,0,100.0,17,1010.0 -2015,2,16,3,30,0,100.0,17,1010.0 -2015,2,16,4,0,0,100.0,17,1010.0 -2015,2,16,4,30,0,100.0,17,1010.0 -2015,2,16,5,0,0,100.0,17,1010.0 -2015,2,16,5,30,0,100.0,17,1010.0 -2015,2,16,6,0,0,100.0,17,1010.0 -2015,2,16,6,30,0,100.0,17,1010.0 -2015,2,16,7,0,0,100.0,17,1010.0 -2015,2,16,7,30,6,100.0,17,1010.0 -2015,2,16,8,0,5,99.34,18,1010.0 -2015,2,16,8,30,15,100.0,18,1010.0 -2015,2,16,9,0,40,100.0,18,1010.0 -2015,2,16,9,30,18,100.0,17,1010.0 -2015,2,16,10,0,23,94.36,16,1010.0 -2015,2,16,10,30,130,100.0,14,1010.0 -2015,2,16,11,0,167,90.43,13,1010.0 -2015,2,16,11,30,55,96.55,12,1010.0 -2015,2,16,12,0,210,81.21000000000001,11,1010.0 -2015,2,16,12,30,214,86.79,10,1010.0 -2015,2,16,13,0,166,76.10000000000001,10,1010.0 -2015,2,16,13,30,161,76.09,10,1010.0 -2015,2,16,14,0,172,71.8,10,1010.0 -2015,2,16,14,30,73,76.78,9,1010.0 -2015,2,16,15,0,236,73.57000000000001,9,1010.0 -2015,2,16,15,30,201,78.73,8,1010.0 -2015,2,16,16,0,27,80.76,8,1010.0 -2015,2,16,16,30,19,86.53,7,1010.0 -2015,2,16,17,0,6,83.08,6,1010.0 -2015,2,16,17,30,3,89.09,5,1010.0 -2015,2,16,18,0,0,86.18,5,1010.0 -2015,2,16,18,30,0,86.24,5,1010.0 -2015,2,16,19,0,0,83.0,5,1010.0 -2015,2,16,19,30,0,89.05,4,1010.0 -2015,2,16,20,0,0,84.99,4,1010.0 -2015,2,16,20,30,0,91.22,4,1010.0 -2015,2,16,21,0,0,87.37,4,1010.0 -2015,2,16,21,30,0,87.39,3,1010.0 -2015,2,16,22,0,0,84.71000000000001,3,1010.0 -2015,2,16,22,30,0,84.71000000000001,3,1010.0 -2015,2,16,23,0,0,82.92,3,1010.0 -2015,2,16,23,30,0,82.91,3,1010.0 -2015,2,17,0,0,0,81.78,3,1010.0 -2015,2,17,0,30,0,87.79,3,1010.0 -2015,2,17,1,0,0,87.01,3,1010.0 -2015,2,17,1,30,0,87.0,2,1010.0 -2015,2,17,2,0,0,86.3,2,1010.0 -2015,2,17,2,30,0,86.29,2,1010.0 -2015,2,17,3,0,0,85.48,2,1010.0 -2015,2,17,3,30,0,85.49,2,1010.0 -2015,2,17,4,0,0,84.35000000000001,2,1010.0 -2015,2,17,4,30,0,84.35000000000001,2,1010.0 -2015,2,17,5,0,0,83.17,2,1010.0 -2015,2,17,5,30,0,89.36,1,1010.0 -2015,2,17,6,0,0,88.57000000000001,1,1010.0 -2015,2,17,6,30,0,88.68,1,1020.0 -2015,2,17,7,0,0,81.09,2,1020.0 -2015,2,17,7,30,2,81.14,2,1020.0 -2015,2,17,8,0,7,78.92,2,1020.0 -2015,2,17,8,30,12,78.92,2,1020.0 -2015,2,17,9,0,50,74.15,3,1020.0 -2015,2,17,9,30,203,74.13,3,1020.0 -2015,2,17,10,0,389,71.75,4,1020.0 -2015,2,17,10,30,637,66.89,5,1020.0 -2015,2,17,11,0,704,64.87,6,1020.0 -2015,2,17,11,30,753,60.53,7,1020.0 -2015,2,17,12,0,786,58.85,8,1020.0 -2015,2,17,12,30,800,54.980000000000004,9,1020.0 -2015,2,17,13,0,638,52.59,10,1020.0 -2015,2,17,13,30,774,52.57,10,1010.0 -2015,2,17,14,0,735,49.03,11,1010.0 -2015,2,17,14,30,678,49.03,11,1010.0 -2015,2,17,15,0,607,48.15,11,1010.0 -2015,2,17,15,30,521,51.47,10,1010.0 -2015,2,17,16,0,426,50.82,10,1010.0 -2015,2,17,16,30,320,54.36,9,1020.0 -2015,2,17,17,0,211,63.940000000000005,8,1020.0 -2015,2,17,17,30,104,73.35000000000001,6,1020.0 -2015,2,17,18,0,18,80.65,5,1020.0 -2015,2,17,18,30,0,80.69,5,1020.0 -2015,2,17,19,0,0,80.03,5,1020.0 -2015,2,17,19,30,0,85.85000000000001,4,1020.0 -2015,2,17,20,0,0,84.71000000000001,4,1020.0 -2015,2,17,20,30,0,84.73,4,1020.0 -2015,2,17,21,0,0,82.83,4,1020.0 -2015,2,17,21,30,0,82.83,4,1020.0 -2015,2,17,22,0,0,80.51,4,1020.0 -2015,2,17,22,30,0,80.51,4,1020.0 -2015,2,17,23,0,0,78.66,4,1020.0 -2015,2,17,23,30,0,84.39,3,1020.0 -2015,2,18,0,0,0,83.19,3,1020.0 -2015,2,18,0,30,0,89.32000000000001,2,1020.0 -2015,2,18,1,0,0,88.79,2,1020.0 -2015,2,18,1,30,0,88.77,2,1020.0 -2015,2,18,2,0,0,88.57000000000001,2,1020.0 -2015,2,18,2,30,0,95.13,2,1020.0 -2015,2,18,3,0,0,94.56,2,1020.0 -2015,2,18,3,30,0,94.56,1,1020.0 -2015,2,18,4,0,0,94.0,1,1020.0 -2015,2,18,4,30,0,94.02,1,1020.0 -2015,2,18,5,0,0,93.33,1,1020.0 -2015,2,18,5,30,0,93.37,1,1020.0 -2015,2,18,6,0,0,92.96000000000001,1,1020.0 -2015,2,18,6,30,0,86.58,2,1020.0 -2015,2,18,7,0,0,86.01,3,1020.0 -2015,2,18,7,30,75,80.18,4,1020.0 -2015,2,18,8,0,181,72.31,6,1020.0 -2015,2,18,8,30,294,63.08,8,1020.0 -2015,2,18,9,0,403,57.93,10,1020.0 -2015,2,18,9,30,506,54.21,11,1020.0 -2015,2,18,10,0,597,47.1,13,1020.0 -2015,2,18,10,30,676,47.09,13,1020.0 -2015,2,18,11,0,739,44.32,14,1020.0 -2015,2,18,11,30,786,44.29,14,1020.0 -2015,2,18,12,0,816,41.52,15,1020.0 -2015,2,18,12,30,828,41.5,15,1020.0 -2015,2,18,13,0,822,41.410000000000004,15,1020.0 -2015,2,18,13,30,798,41.4,15,1020.0 -2015,2,18,14,0,755,41.29,15,1020.0 -2015,2,18,14,30,697,41.28,15,1020.0 -2015,2,18,15,0,622,41.36,15,1020.0 -2015,2,18,15,30,535,41.35,15,1020.0 -2015,2,18,16,0,436,44.04,15,1020.0 -2015,2,18,16,30,329,46.96,14,1020.0 -2015,2,18,17,0,217,58.34,13,1020.0 -2015,2,18,17,30,108,62.300000000000004,12,1020.0 -2015,2,18,18,0,20,58.25,11,1020.0 -2015,2,18,18,30,0,62.27,10,1020.0 -2015,2,18,19,0,0,63.620000000000005,10,1020.0 -2015,2,18,19,30,0,68.05,9,1020.0 -2015,2,18,20,0,0,69.09,9,1020.0 -2015,2,18,20,30,0,73.94,8,1020.0 -2015,2,18,21,0,0,75.28,8,1020.0 -2015,2,18,21,30,0,80.60000000000001,7,1020.0 -2015,2,18,22,0,0,81.91,7,1020.0 -2015,2,18,22,30,0,87.73,6,1020.0 -2015,2,18,23,0,0,88.66,6,1020.0 -2015,2,18,23,30,0,88.66,6,1020.0 -2015,2,19,0,0,0,89.65,6,1020.0 -2015,2,19,0,30,0,96.07000000000001,5,1020.0 -2015,2,19,1,0,0,97.67,5,1020.0 -2015,2,19,1,30,0,97.66,5,1020.0 -2015,2,19,2,0,0,99.4,5,1020.0 -2015,2,19,2,30,0,99.4,5,1020.0 -2015,2,19,3,0,0,100.0,5,1020.0 -2015,2,19,3,30,0,100.0,5,1020.0 -2015,2,19,4,0,0,100.0,5,1020.0 -2015,2,19,4,30,0,100.0,4,1020.0 -2015,2,19,5,0,0,100.0,4,1020.0 -2015,2,19,5,30,0,100.0,3,1020.0 -2015,2,19,6,0,0,100.0,3,1020.0 -2015,2,19,6,30,0,100.0,4,1020.0 -2015,2,19,7,0,0,98.58,5,1020.0 -2015,2,19,7,30,37,92.0,6,1020.0 -2015,2,19,8,0,135,86.83,7,1020.0 -2015,2,19,8,30,232,81.11,8,1020.0 -2015,2,19,9,0,399,72.48,10,1020.0 -2015,2,19,9,30,500,67.81,11,1020.0 -2015,2,19,10,0,591,60.54,13,1020.0 -2015,2,19,10,30,669,56.71,14,1020.0 -2015,2,19,11,0,730,55.02,15,1020.0 -2015,2,19,11,30,777,54.980000000000004,15,1020.0 -2015,2,19,12,0,805,54.09,16,1020.0 -2015,2,19,12,30,817,54.06,16,1020.0 -2015,2,19,13,0,808,52.94,17,1020.0 -2015,2,19,13,30,349,52.910000000000004,17,1020.0 -2015,2,19,14,0,740,54.72,17,1020.0 -2015,2,19,14,30,681,54.7,17,1020.0 -2015,2,19,15,0,185,56.31,17,1020.0 -2015,2,19,15,30,299,59.97,16,1020.0 -2015,2,19,16,0,244,62.14,16,1020.0 -2015,2,19,16,30,318,66.22,15,1020.0 -2015,2,19,17,0,210,74.59,14,1020.0 -2015,2,19,17,30,105,79.59,13,1020.0 -2015,2,19,18,0,20,85.68,12,1020.0 -2015,2,19,18,30,0,91.52,11,1020.0 -2015,2,19,19,0,0,92.47,11,1020.0 -2015,2,19,19,30,0,92.46000000000001,11,1020.0 -2015,2,19,20,0,0,93.33,11,1020.0 -2015,2,19,20,30,0,93.31,11,1020.0 -2015,2,19,21,0,0,94.7,11,1020.0 -2015,2,19,21,30,0,94.67,11,1020.0 -2015,2,19,22,0,0,97.06,11,1020.0 -2015,2,19,22,30,0,97.03,11,1020.0 -2015,2,19,23,0,0,93.60000000000001,12,1010.0 -2015,2,19,23,30,0,93.57000000000001,12,1010.0 -2015,2,20,0,0,0,96.31,12,1010.0 -2015,2,20,0,30,0,96.29,12,1010.0 -2015,2,20,1,0,0,92.43,13,1010.0 -2015,2,20,1,30,0,92.4,13,1010.0 -2015,2,20,2,0,0,94.44,13,1010.0 -2015,2,20,2,30,0,94.41,13,1010.0 -2015,2,20,3,0,0,90.96000000000001,14,1010.0 -2015,2,20,3,30,0,90.93,14,1010.0 -2015,2,20,4,0,0,93.29,14,1010.0 -2015,2,20,4,30,0,93.28,14,1010.0 -2015,2,20,5,0,0,95.78,14,1010.0 -2015,2,20,5,30,0,95.79,14,1010.0 -2015,2,20,6,0,0,92.09,15,1010.0 -2015,2,20,6,30,0,92.11,15,1010.0 -2015,2,20,7,0,0,95.23,15,1010.0 -2015,2,20,7,30,35,95.23,16,1010.0 -2015,2,20,8,0,86,93.44,17,1010.0 -2015,2,20,8,30,142,87.7,17,1010.0 -2015,2,20,9,0,163,85.68,18,1010.0 -2015,2,20,9,30,206,85.65,18,1010.0 -2015,2,20,10,0,272,81.36,19,1010.0 -2015,2,20,10,30,238,81.33,19,1010.0 -2015,2,20,11,0,50,75.45,20,1010.0 -2015,2,20,11,30,52,75.4,20,1010.0 -2015,2,20,12,0,177,74.92,20,1010.0 -2015,2,20,12,30,340,74.86,20,1010.0 -2015,2,20,13,0,236,74.9,20,1010.0 -2015,2,20,13,30,165,74.86,20,1010.0 -2015,2,20,14,0,174,75.3,20,1010.0 -2015,2,20,14,30,457,75.27,20,1010.0 -2015,2,20,15,0,41,76.28,20,1010.0 -2015,2,20,15,30,21,81.14,19,1010.0 -2015,2,20,16,0,228,82.66,19,1010.0 -2015,2,20,16,30,93,87.97,18,1010.0 -2015,2,20,17,0,58,88.71000000000001,18,1010.0 -2015,2,20,17,30,28,94.47,17,1010.0 -2015,2,20,18,0,5,94.36,17,1010.0 -2015,2,20,18,30,0,94.38,17,1010.0 -2015,2,20,19,0,0,94.48,17,1010.0 -2015,2,20,19,30,0,94.49,17,1010.0 -2015,2,20,20,0,0,94.9,17,1010.0 -2015,2,20,20,30,0,94.9,17,1010.0 -2015,2,20,21,0,0,95.71000000000001,17,1010.0 -2015,2,20,21,30,0,95.69,17,1010.0 -2015,2,20,22,0,0,96.81,17,1010.0 -2015,2,20,22,30,0,96.79,17,1010.0 -2015,2,20,23,0,0,97.92,17,1010.0 -2015,2,20,23,30,0,97.91,17,1010.0 -2015,2,21,0,0,0,98.84,17,1010.0 -2015,2,21,0,30,0,98.83,17,1010.0 -2015,2,21,1,0,0,99.59,17,1010.0 -2015,2,21,1,30,0,99.58,17,1010.0 -2015,2,21,2,0,0,100.0,17,1010.0 -2015,2,21,2,30,0,100.0,17,1010.0 -2015,2,21,3,0,0,100.0,17,1010.0 -2015,2,21,3,30,0,100.0,17,1010.0 -2015,2,21,4,0,0,100.0,17,1010.0 -2015,2,21,4,30,0,100.0,17,1010.0 -2015,2,21,5,0,0,100.0,17,1010.0 -2015,2,21,5,30,0,100.0,17,1010.0 -2015,2,21,6,0,0,100.0,17,1010.0 -2015,2,21,6,30,0,100.0,17,1010.0 -2015,2,21,7,0,0,98.42,18,1010.0 -2015,2,21,7,30,6,98.45,18,1010.0 -2015,2,21,8,0,17,95.99000000000001,19,1010.0 -2015,2,21,8,30,28,96.01,19,1010.0 -2015,2,21,9,0,16,90.92,20,1010.0 -2015,2,21,9,30,80,90.92,20,1010.0 -2015,2,21,10,0,51,83.31,21,1010.0 -2015,2,21,10,30,118,83.28,21,1010.0 -2015,2,21,11,0,153,78.05,22,1010.0 -2015,2,21,11,30,199,78.02,22,1010.0 -2015,2,21,12,0,353,78.44,22,1010.0 -2015,2,21,12,30,566,78.41,22,1010.0 -2015,2,21,13,0,354,74.24,23,1010.0 -2015,2,21,13,30,224,78.85000000000001,23,1010.0 -2015,2,21,14,0,32,79.4,23,1000.0 -2015,2,21,14,30,338,79.39,22,1000.0 -2015,2,21,15,0,377,80.46000000000001,22,1000.0 -2015,2,21,15,30,339,85.52,21,1000.0 -2015,2,21,16,0,239,86.95,21,1010.0 -2015,2,21,16,30,58,92.47,20,1010.0 -2015,2,21,17,0,127,93.03,20,1010.0 -2015,2,21,17,30,89,98.99000000000001,19,1010.0 -2015,2,21,18,0,15,97.53,19,1010.0 -2015,2,21,18,30,0,100.0,18,1010.0 -2015,2,21,19,0,0,100.0,18,1010.0 -2015,2,21,19,30,0,100.0,18,1010.0 -2015,2,21,20,0,0,100.0,18,1010.0 -2015,2,21,20,30,0,100.0,17,1010.0 -2015,2,21,21,0,0,100.0,17,1010.0 -2015,2,21,21,30,0,100.0,17,1010.0 -2015,2,21,22,0,0,100.0,17,1010.0 -2015,2,21,22,30,0,100.0,16,1010.0 -2015,2,21,23,0,0,100.0,16,1010.0 -2015,2,21,23,30,0,100.0,16,1010.0 -2015,2,22,0,0,0,100.0,16,1010.0 -2015,2,22,0,30,0,100.0,16,1010.0 -2015,2,22,1,0,0,100.0,16,1010.0 -2015,2,22,1,30,0,100.0,16,1010.0 -2015,2,22,2,0,0,100.0,16,1010.0 -2015,2,22,2,30,0,100.0,16,1010.0 -2015,2,22,3,0,0,100.0,16,1010.0 -2015,2,22,3,30,0,100.0,16,1010.0 -2015,2,22,4,0,0,100.0,16,1010.0 -2015,2,22,4,30,0,100.0,16,1010.0 -2015,2,22,5,0,0,100.0,16,1010.0 -2015,2,22,5,30,0,100.0,16,1010.0 -2015,2,22,6,0,0,100.0,16,1010.0 -2015,2,22,6,30,0,100.0,16,1010.0 -2015,2,22,7,0,0,100.0,17,1010.0 -2015,2,22,7,30,38,100.0,18,1010.0 -2015,2,22,8,0,89,100.0,19,1010.0 -2015,2,22,8,30,137,96.95,19,1010.0 -2015,2,22,9,0,187,93.57000000000001,20,1010.0 -2015,2,22,9,30,97,93.57000000000001,20,1010.0 -2015,2,22,10,0,127,86.27,21,1010.0 -2015,2,22,10,30,271,86.27,21,1010.0 -2015,2,22,11,0,504,79.47,22,1010.0 -2015,2,22,11,30,730,79.46000000000001,22,1010.0 -2015,2,22,12,0,746,78.49,22,1010.0 -2015,2,22,12,30,519,78.46000000000001,22,1010.0 -2015,2,22,13,0,318,78.29,22,1010.0 -2015,2,22,13,30,729,78.25,22,1010.0 -2015,2,22,14,0,692,78.60000000000001,22,1010.0 -2015,2,22,14,30,636,83.53,22,1010.0 -2015,2,22,15,0,312,83.55,22,1010.0 -2015,2,22,15,30,135,83.58,21,1010.0 -2015,2,22,16,0,276,83.84,21,1010.0 -2015,2,22,16,30,283,89.21000000000001,20,1010.0 -2015,2,22,17,0,186,93.51,19,1010.0 -2015,2,22,17,30,91,99.59,18,1010.0 -2015,2,22,18,0,13,98.51,17,1010.0 -2015,2,22,18,30,0,100.0,16,1010.0 -2015,2,22,19,0,0,100.0,16,1010.0 -2015,2,22,19,30,0,100.0,15,1010.0 -2015,2,22,20,0,0,94.56,14,1020.0 -2015,2,22,20,30,0,100.0,13,1020.0 -2015,2,22,21,0,0,95.29,12,1020.0 -2015,2,22,21,30,0,100.0,11,1020.0 -2015,2,22,22,0,0,96.22,10,1020.0 -2015,2,22,22,30,0,100.0,9,1020.0 -2015,2,22,23,0,0,91.93,9,1020.0 -2015,2,22,23,30,0,98.38,8,1020.0 -2015,2,23,0,0,0,89.93,8,1020.0 -2015,2,23,0,30,0,96.28,7,1020.0 -2015,2,23,1,0,0,90.35000000000001,7,1020.0 -2015,2,23,1,30,0,96.77,6,1020.0 -2015,2,23,2,0,0,92.45,6,1020.0 -2015,2,23,2,30,0,92.45,6,1020.0 -2015,2,23,3,0,0,89.36,6,1020.0 -2015,2,23,3,30,0,89.38,6,1020.0 -2015,2,23,4,0,0,86.95,6,1020.0 -2015,2,23,4,30,0,86.98,6,1020.0 -2015,2,23,5,0,0,84.67,6,1020.0 -2015,2,23,5,30,0,90.77,5,1020.0 -2015,2,23,6,0,0,88.83,5,1020.0 -2015,2,23,6,30,0,88.86,5,1020.0 -2015,2,23,7,0,0,87.85000000000001,5,1020.0 -2015,2,23,7,30,2,87.87,5,1020.0 -2015,2,23,8,0,9,87.87,6,1020.0 -2015,2,23,8,30,26,87.89,6,1020.0 -2015,2,23,9,0,44,83.37,6,1020.0 -2015,2,23,9,30,84,83.37,6,1020.0 -2015,2,23,10,0,83,78.78,7,1020.0 -2015,2,23,10,30,14,78.76,7,1020.0 -2015,2,23,11,0,50,79.45,7,1020.0 -2015,2,23,11,30,80,79.42,7,1020.0 -2015,2,23,12,0,239,79.84,7,1020.0 -2015,2,23,12,30,111,79.81,7,1020.0 -2015,2,23,13,0,185,79.5,7,1020.0 -2015,2,23,13,30,88,79.47,7,1020.0 -2015,2,23,14,0,80,79.08,7,1020.0 -2015,2,23,14,30,71,79.07000000000001,7,1020.0 -2015,2,23,15,0,60,78.46000000000001,7,1020.0 -2015,2,23,15,30,62,84.06,6,1020.0 -2015,2,23,16,0,24,82.99,6,1020.0 -2015,2,23,16,30,55,88.94,5,1020.0 -2015,2,23,17,0,21,87.37,5,1020.0 -2015,2,23,17,30,94,93.68,4,1020.0 -2015,2,23,18,0,17,91.96000000000001,4,1020.0 -2015,2,23,18,30,0,91.98,4,1020.0 -2015,2,23,19,0,0,89.82000000000001,4,1020.0 -2015,2,23,19,30,0,96.38,3,1020.0 -2015,2,23,20,0,0,93.19,3,1020.0 -2015,2,23,20,30,0,93.19,3,1020.0 -2015,2,23,21,0,0,90.14,3,1020.0 -2015,2,23,21,30,0,96.76,2,1020.0 -2015,2,23,22,0,0,94.07000000000001,2,1020.0 -2015,2,23,22,30,0,94.06,2,1020.0 -2015,2,23,23,0,0,91.44,2,1020.0 -2015,2,23,23,30,0,91.4,2,1020.0 -2015,2,24,0,0,0,89.06,2,1020.0 -2015,2,24,0,30,0,95.63,1,1020.0 -2015,2,24,1,0,0,93.3,1,1020.0 -2015,2,24,1,30,0,93.27,1,1020.0 -2015,2,24,2,0,0,90.93,1,1020.0 -2015,2,24,2,30,0,90.9,1,1020.0 -2015,2,24,3,0,0,88.83,1,1020.0 -2015,2,24,3,30,0,88.83,1,1020.0 -2015,2,24,4,0,0,87.31,1,1020.0 -2015,2,24,4,30,0,87.34,1,1020.0 -2015,2,24,5,0,0,85.99,1,1020.0 -2015,2,24,5,30,0,86.0,1,1020.0 -2015,2,24,6,0,0,84.65,1,1020.0 -2015,2,24,6,30,0,84.66,1,1020.0 -2015,2,24,7,0,0,84.16,1,1020.0 -2015,2,24,7,30,77,84.16,1,1020.0 -2015,2,24,8,0,176,78.76,2,1020.0 -2015,2,24,8,30,46,73.34,3,1020.0 -2015,2,24,9,0,42,69.64,4,1020.0 -2015,2,24,9,30,73,69.62,4,1020.0 -2015,2,24,10,0,181,67.28,5,1020.0 -2015,2,24,10,30,215,67.25,5,1020.0 -2015,2,24,11,0,259,65.27,6,1020.0 -2015,2,24,11,30,172,65.23,6,1020.0 -2015,2,24,12,0,233,63.88,7,1020.0 -2015,2,24,12,30,166,63.84,7,1020.0 -2015,2,24,13,0,164,62.51,8,1020.0 -2015,2,24,13,30,140,62.46,8,1010.0 -2015,2,24,14,0,167,64.95,9,1010.0 -2015,2,24,14,30,152,64.91,9,1010.0 -2015,2,24,15,0,167,62.08,9,1010.0 -2015,2,24,15,30,136,66.4,8,1010.0 -2015,2,24,16,0,89,66.74,8,1010.0 -2015,2,24,16,30,96,71.43,7,1010.0 -2015,2,24,17,0,47,73.17,7,1010.0 -2015,2,24,17,30,24,78.36,6,1010.0 -2015,2,24,18,0,24,84.43,6,1010.0 -2015,2,24,18,30,0,84.42,6,1010.0 -2015,2,24,19,0,0,82.21000000000001,6,1010.0 -2015,2,24,19,30,0,88.10000000000001,5,1010.0 -2015,2,24,20,0,0,87.41,5,1010.0 -2015,2,24,20,30,0,87.39,5,1010.0 -2015,2,24,21,0,0,88.33,5,1010.0 -2015,2,24,21,30,0,88.31,5,1010.0 -2015,2,24,22,0,0,89.37,5,1010.0 -2015,2,24,22,30,0,89.33,5,1010.0 -2015,2,24,23,0,0,90.48,5,1010.0 -2015,2,24,23,30,0,90.46000000000001,5,1010.0 -2015,2,25,0,0,0,91.99,5,1010.0 -2015,2,25,0,30,0,91.98,5,1010.0 -2015,2,25,1,0,0,93.04,5,1010.0 -2015,2,25,1,30,0,93.01,5,1010.0 -2015,2,25,2,0,0,93.45,5,1010.0 -2015,2,25,2,30,0,93.4,5,1010.0 -2015,2,25,3,0,0,93.76,5,1010.0 -2015,2,25,3,30,0,100.0,5,1010.0 -2015,2,25,4,0,0,100.0,5,1010.0 -2015,2,25,4,30,0,100.0,5,1010.0 -2015,2,25,5,0,0,100.0,5,1010.0 -2015,2,25,5,30,0,100.0,5,1010.0 -2015,2,25,6,0,0,100.0,5,1010.0 -2015,2,25,6,30,0,100.0,4,1010.0 -2015,2,25,7,0,0,100.0,4,1010.0 -2015,2,25,7,30,2,100.0,4,1010.0 -2015,2,25,8,0,6,98.91,4,1010.0 -2015,2,25,8,30,11,98.91,4,1010.0 -2015,2,25,9,0,16,96.24000000000001,4,1010.0 -2015,2,25,9,30,68,96.2,4,1010.0 -2015,2,25,10,0,170,88.83,5,1010.0 -2015,2,25,10,30,167,82.87,6,1010.0 -2015,2,25,11,0,431,76.74,7,1010.0 -2015,2,25,11,30,282,76.7,7,1010.0 -2015,2,25,12,0,441,69.94,8,1010.0 -2015,2,25,12,30,449,69.91,8,1000.0 -2015,2,25,13,0,815,64.49,9,1000.0 -2015,2,25,13,30,792,64.46000000000001,9,1000.0 -2015,2,25,14,0,438,60.39,10,1000.0 -2015,2,25,14,30,514,60.370000000000005,10,1000.0 -2015,2,25,15,0,424,60.7,10,1000.0 -2015,2,25,15,30,308,60.7,10,1000.0 -2015,2,25,16,0,450,60.72,10,1000.0 -2015,2,25,16,30,343,64.94,9,1000.0 -2015,2,25,17,0,232,71.38,8,1000.0 -2015,2,25,17,30,122,81.87,6,1000.0 -2015,2,25,18,0,30,89.2,5,1000.0 -2015,2,25,18,30,0,95.68,5,1000.0 -2015,2,25,19,0,0,93.94,5,1010.0 -2015,2,25,19,30,0,93.97,4,1010.0 -2015,2,25,20,0,0,92.22,4,1010.0 -2015,2,25,20,30,0,98.97,3,1010.0 -2015,2,25,21,0,0,97.57000000000001,3,1010.0 -2015,2,25,21,30,0,100.0,3,1010.0 -2015,2,25,22,0,0,100.0,3,1010.0 -2015,2,25,22,30,0,100.0,2,1010.0 -2015,2,25,23,0,0,100.0,2,1010.0 -2015,2,25,23,30,0,100.0,1,1010.0 -2015,2,26,0,0,0,100.0,1,1010.0 -2015,2,26,0,30,0,100.0,1,1010.0 -2015,2,26,1,0,0,100.0,1,1010.0 -2015,2,26,1,30,0,100.0,1,1010.0 -2015,2,26,2,0,0,100.0,1,1010.0 -2015,2,26,2,30,0,100.0,1,1010.0 -2015,2,26,3,0,0,100.0,1,1010.0 -2015,2,26,3,30,0,100.0,1,1010.0 -2015,2,26,4,0,0,100.0,1,1010.0 -2015,2,26,4,30,0,100.0,1,1010.0 -2015,2,26,5,0,0,100.0,1,1010.0 -2015,2,26,5,30,0,100.0,1,1010.0 -2015,2,26,6,0,0,99.37,1,1010.0 -2015,2,26,6,30,0,99.43,1,1010.0 -2015,2,26,7,0,12,93.68,2,1010.0 -2015,2,26,7,30,91,87.31,3,1010.0 -2015,2,26,8,0,200,83.77,4,1010.0 -2015,2,26,8,30,312,78.15,5,1010.0 -2015,2,26,9,0,202,75.03,6,1010.0 -2015,2,26,9,30,251,70.07000000000001,7,1010.0 -2015,2,26,10,0,295,66.35,8,1010.0 -2015,2,26,10,30,333,62.02,9,1010.0 -2015,2,26,11,0,609,59.27,10,1020.0 -2015,2,26,11,30,647,59.26,10,1010.0 -2015,2,26,12,0,720,57.11,11,1010.0 -2015,2,26,12,30,730,57.1,11,1010.0 -2015,2,26,13,0,838,55.01,12,1010.0 -2015,2,26,13,30,813,55.0,12,1010.0 -2015,2,26,14,0,644,56.550000000000004,12,1010.0 -2015,2,26,14,30,592,56.54,12,1010.0 -2015,2,26,15,0,631,57.32,12,1010.0 -2015,2,26,15,30,543,57.33,12,1010.0 -2015,2,26,16,0,443,57.75,12,1010.0 -2015,2,26,16,30,336,61.72,11,1010.0 -2015,2,26,17,0,224,69.15,10,1020.0 -2015,2,26,17,30,117,79.16,8,1020.0 -2015,2,26,18,0,28,84.69,7,1020.0 -2015,2,26,18,30,0,84.73,7,1020.0 -2015,2,26,19,0,0,83.29,7,1020.0 -2015,2,26,19,30,0,89.25,6,1020.0 -2015,2,26,20,0,0,87.27,6,1020.0 -2015,2,26,20,30,0,93.55,5,1020.0 -2015,2,26,21,0,0,96.95,4,1020.0 -2015,2,26,21,30,0,100.0,4,1020.0 -2015,2,26,22,0,0,99.53,4,1020.0 -2015,2,26,22,30,0,99.54,3,1020.0 -2015,2,26,23,0,0,94.91,3,1020.0 -2015,2,26,23,30,0,100.0,2,1020.0 -2015,2,27,0,0,0,97.42,2,1020.0 -2015,2,27,0,30,0,97.43,2,1020.0 -2015,2,27,1,0,0,93.8,2,1020.0 -2015,2,27,1,30,0,100.0,1,1020.0 -2015,2,27,2,0,0,98.03,1,1020.0 -2015,2,27,2,30,0,98.03,1,1020.0 -2015,2,27,3,0,0,96.21000000000001,1,1020.0 -2015,2,27,3,30,0,96.22,1,1020.0 -2015,2,27,4,0,0,95.10000000000001,1,1020.0 -2015,2,27,4,30,0,95.11,1,1020.0 -2015,2,27,5,0,0,94.71000000000001,1,1020.0 -2015,2,27,5,30,0,100.0,1,1020.0 -2015,2,27,6,0,0,100.0,1,1020.0 -2015,2,27,6,30,0,94.79,1,1020.0 -2015,2,27,7,0,10,89.29,2,1020.0 -2015,2,27,7,30,3,83.2,3,1020.0 -2015,2,27,8,0,7,77.09,4,1020.0 -2015,2,27,8,30,28,71.9,5,1020.0 -2015,2,27,9,0,53,67.7,6,1020.0 -2015,2,27,9,30,59,67.69,6,1020.0 -2015,2,27,10,0,112,65.65,7,1020.0 -2015,2,27,10,30,116,65.63,7,1020.0 -2015,2,27,11,0,179,64.41,8,1020.0 -2015,2,27,11,30,214,64.4,8,1020.0 -2015,2,27,12,0,160,62.86,9,1020.0 -2015,2,27,12,30,159,62.84,9,1020.0 -2015,2,27,13,0,188,60.730000000000004,10,1020.0 -2015,2,27,13,30,180,60.72,10,1020.0 -2015,2,27,14,0,163,61.74,10,1020.0 -2015,2,27,14,30,220,61.72,10,1020.0 -2015,2,27,15,0,133,61.88,10,1020.0 -2015,2,27,15,30,144,61.88,10,1020.0 -2015,2,27,16,0,99,61.660000000000004,10,1020.0 -2015,2,27,16,30,118,65.93,9,1020.0 -2015,2,27,17,0,108,74.88,9,1020.0 -2015,2,27,17,30,57,80.17,7,1020.0 -2015,2,27,18,0,29,87.7,6,1020.0 -2015,2,27,18,30,0,87.72,6,1020.0 -2015,2,27,19,0,0,86.06,6,1020.0 -2015,2,27,19,30,0,92.25,5,1020.0 -2015,2,27,20,0,0,91.34,5,1020.0 -2015,2,27,20,30,0,91.35000000000001,5,1020.0 -2015,2,27,21,0,0,90.60000000000001,5,1020.0 -2015,2,27,21,30,0,97.16,4,1020.0 -2015,2,27,22,0,0,96.35000000000001,4,1020.0 -2015,2,27,22,30,0,96.33,4,1020.0 -2015,2,27,23,0,0,95.72,4,1020.0 -2015,2,27,23,30,0,95.72,4,1020.0 -2015,2,28,0,0,0,94.36,4,1020.0 -2015,2,28,0,30,0,100.0,3,1020.0 -2015,2,28,1,0,0,98.68,3,1020.0 -2015,2,28,1,30,0,98.65,3,1020.0 -2015,2,28,2,0,0,95.60000000000001,3,1020.0 -2015,2,28,2,30,0,100.0,3,1020.0 -2015,2,28,3,0,0,99.84,3,1020.0 -2015,2,28,3,30,0,99.83,2,1020.0 -2015,2,28,4,0,0,98.16,2,1020.0 -2015,2,28,4,30,0,98.16,2,1020.0 -2015,2,28,5,0,0,97.27,3,1020.0 -2015,2,28,5,30,0,97.27,3,1020.0 -2015,2,28,6,0,0,92.47,3,1020.0 -2015,2,28,6,30,0,92.48,3,1020.0 -2015,2,28,7,0,14,91.17,4,1020.0 -2015,2,28,7,30,91,85.03,5,1020.0 -2015,2,28,8,0,15,80.12,7,1020.0 -2015,2,28,8,30,30,74.84,8,1020.0 -2015,2,28,9,0,83,76.72,9,1020.0 -2015,2,28,9,30,168,71.73,10,1020.0 -2015,2,28,10,0,197,74.14,11,1020.0 -2015,2,28,10,30,520,74.12,11,1020.0 -2015,2,28,11,0,323,76.5,12,1020.0 -2015,2,28,11,30,343,76.47,12,1020.0 -2015,2,28,12,0,254,77.64,13,1020.0 -2015,2,28,12,30,257,77.59,13,1020.0 -2015,2,28,13,0,185,77.34,14,1020.0 -2015,2,28,13,30,177,77.31,14,1020.0 -2015,2,28,14,0,272,80.94,15,1020.0 -2015,2,28,14,30,154,80.93,15,1020.0 -2015,2,28,15,0,121,83.39,15,1020.0 -2015,2,28,15,30,72,83.39,14,1020.0 -2015,2,28,16,0,39,84.91,14,1020.0 -2015,2,28,16,30,18,90.61,13,1020.0 -2015,2,28,17,0,26,91.52,13,1020.0 -2015,2,28,17,30,106,97.72,12,1020.0 -2015,2,28,18,0,24,96.14,12,1020.0 -2015,2,28,18,30,0,100.0,11,1020.0 -2015,2,28,19,0,0,100.0,11,1020.0 -2015,2,28,19,30,0,100.0,11,1020.0 -2015,2,28,20,0,0,100.0,11,1020.0 -2015,2,28,20,30,0,100.0,11,1020.0 -2015,2,28,21,0,0,100.0,11,1020.0 -2015,2,28,21,30,0,100.0,11,1020.0 -2015,2,28,22,0,0,100.0,12,1020.0 -2015,2,28,22,30,0,100.0,12,1020.0 -2015,2,28,23,0,0,100.0,12,1020.0 -2015,2,28,23,30,0,100.0,12,1020.0 -2015,3,1,0,0,0,100.0,12,1020.0 -2015,3,1,0,30,0,100.0,12,1020.0 -2015,3,1,1,0,0,100.0,12,1020.0 -2015,3,1,1,30,0,100.0,12,1020.0 -2015,3,1,2,0,0,100.0,12,1020.0 -2015,3,1,2,30,0,100.0,12,1020.0 -2015,3,1,3,0,0,100.0,12,1010.0 -2015,3,1,3,30,0,100.0,12,1010.0 -2015,3,1,4,0,0,100.0,12,1010.0 -2015,3,1,4,30,0,100.0,12,1010.0 -2015,3,1,5,0,0,100.0,12,1020.0 -2015,3,1,5,30,0,100.0,12,1020.0 -2015,3,1,6,0,0,100.0,12,1020.0 -2015,3,1,6,30,0,100.0,12,1020.0 -2015,3,1,7,0,16,100.0,13,1020.0 -2015,3,1,7,30,95,99.74000000000001,14,1020.0 -2015,3,1,8,0,8,100.0,15,1020.0 -2015,3,1,8,30,12,96.87,16,1020.0 -2015,3,1,9,0,16,99.84,17,1020.0 -2015,3,1,9,30,63,93.76,18,1020.0 -2015,3,1,10,0,120,94.07000000000001,19,1020.0 -2015,3,1,10,30,82,88.39,20,1020.0 -2015,3,1,11,0,112,86.48,21,1020.0 -2015,3,1,11,30,90,86.44,21,1020.0 -2015,3,1,12,0,374,82.8,22,1020.0 -2015,3,1,12,30,379,82.76,22,1020.0 -2015,3,1,13,0,387,83.12,22,1010.0 -2015,3,1,13,30,376,83.11,22,1010.0 -2015,3,1,14,0,356,82.53,22,1010.0 -2015,3,1,14,30,453,87.71000000000001,21,1010.0 -2015,3,1,15,0,400,87.21000000000001,21,1010.0 -2015,3,1,15,30,511,92.74,20,1010.0 -2015,3,1,16,0,210,92.32000000000001,20,1010.0 -2015,3,1,16,30,160,98.23,19,1010.0 -2015,3,1,17,0,213,100.0,18,1010.0 -2015,3,1,17,30,113,100.0,17,1020.0 -2015,3,1,18,0,29,100.0,17,1020.0 -2015,3,1,18,30,0,100.0,16,1020.0 -2015,3,1,19,0,0,100.0,15,1020.0 -2015,3,1,19,30,0,100.0,15,1020.0 -2015,3,1,20,0,0,100.0,15,1020.0 -2015,3,1,20,30,0,100.0,14,1020.0 -2015,3,1,21,0,0,100.0,14,1020.0 -2015,3,1,21,30,0,100.0,13,1020.0 -2015,3,1,22,0,0,100.0,13,1020.0 -2015,3,1,22,30,0,100.0,13,1020.0 -2015,3,1,23,0,0,100.0,13,1020.0 -2015,3,1,23,30,0,100.0,12,1020.0 -2015,3,2,0,0,0,100.0,12,1020.0 -2015,3,2,0,30,0,100.0,12,1020.0 -2015,3,2,1,0,0,100.0,12,1020.0 -2015,3,2,1,30,0,100.0,11,1020.0 -2015,3,2,2,0,0,100.0,11,1020.0 -2015,3,2,2,30,0,100.0,11,1020.0 -2015,3,2,3,0,0,98.81,11,1020.0 -2015,3,2,3,30,0,100.0,10,1020.0 -2015,3,2,4,0,0,100.0,10,1020.0 -2015,3,2,4,30,0,100.0,10,1020.0 -2015,3,2,5,0,0,99.19,10,1020.0 -2015,3,2,5,30,0,100.0,9,1020.0 -2015,3,2,6,0,0,100.0,9,1020.0 -2015,3,2,6,30,0,100.0,9,1020.0 -2015,3,2,7,0,4,100.0,10,1020.0 -2015,3,2,7,30,28,100.0,10,1020.0 -2015,3,2,8,0,57,95.87,10,1020.0 -2015,3,2,8,30,89,95.88,10,1020.0 -2015,3,2,9,0,120,91.92,11,1020.0 -2015,3,2,9,30,149,91.91,12,1020.0 -2015,3,2,10,0,175,89.92,13,1020.0 -2015,3,2,10,30,284,84.2,13,1020.0 -2015,3,2,11,0,293,82.60000000000001,14,1020.0 -2015,3,2,11,30,368,82.56,14,1020.0 -2015,3,2,12,0,437,81.97,15,1020.0 -2015,3,2,12,30,428,81.92,15,1020.0 -2015,3,2,13,0,434,81.23,16,1020.0 -2015,3,2,13,30,480,81.19,16,1020.0 -2015,3,2,14,0,401,79.56,17,1020.0 -2015,3,2,14,30,412,79.53,17,1020.0 -2015,3,2,15,0,364,81.92,17,1010.0 -2015,3,2,15,30,344,81.9,17,1010.0 -2015,3,2,16,0,172,83.4,17,1010.0 -2015,3,2,16,30,263,88.85000000000001,16,1010.0 -2015,3,2,17,0,138,92.87,16,1010.0 -2015,3,2,17,30,117,98.98,15,1010.0 -2015,3,2,18,0,31,100.0,14,1010.0 -2015,3,2,18,30,0,100.0,14,1010.0 -2015,3,2,19,0,0,99.83,14,1010.0 -2015,3,2,19,30,0,100.0,14,1010.0 -2015,3,2,20,0,0,100.0,14,1010.0 -2015,3,2,20,30,0,100.0,13,1010.0 -2015,3,2,21,0,0,100.0,13,1010.0 -2015,3,2,21,30,0,100.0,13,1010.0 -2015,3,2,22,0,0,100.0,13,1010.0 -2015,3,2,22,30,0,100.0,12,1010.0 -2015,3,2,23,0,0,100.0,12,1010.0 -2015,3,2,23,30,0,100.0,12,1010.0 -2015,3,3,0,0,0,100.0,12,1010.0 -2015,3,3,0,30,0,100.0,12,1010.0 -2015,3,3,1,0,0,100.0,12,1010.0 -2015,3,3,1,30,0,100.0,12,1010.0 -2015,3,3,2,0,0,100.0,12,1010.0 -2015,3,3,2,30,0,100.0,12,1010.0 -2015,3,3,3,0,0,100.0,13,1010.0 -2015,3,3,3,30,0,100.0,13,1010.0 -2015,3,3,4,0,0,100.0,13,1010.0 -2015,3,3,4,30,0,100.0,13,1010.0 -2015,3,3,5,0,0,100.0,13,1010.0 -2015,3,3,5,30,0,100.0,13,1010.0 -2015,3,3,6,0,0,100.0,14,1010.0 -2015,3,3,6,30,0,98.35000000000001,15,1010.0 -2015,3,3,7,0,24,100.0,16,1010.0 -2015,3,3,7,30,112,96.08,17,1010.0 -2015,3,3,8,0,220,100.0,18,1010.0 -2015,3,3,8,30,331,93.95,19,1010.0 -2015,3,3,9,0,437,95.04,21,1010.0 -2015,3,3,9,30,161,89.35000000000001,22,1010.0 -2015,3,3,10,0,188,85.54,23,1010.0 -2015,3,3,10,30,210,85.51,23,1010.0 -2015,3,3,11,0,274,80.21000000000001,24,1010.0 -2015,3,3,11,30,339,80.16,24,1010.0 -2015,3,3,12,0,146,75.35000000000001,24,1010.0 -2015,3,3,12,30,504,75.31,24,1010.0 -2015,3,3,13,0,833,74.83,24,1010.0 -2015,3,3,13,30,808,74.8,24,1010.0 -2015,3,3,14,0,359,74.06,24,1010.0 -2015,3,3,14,30,244,78.63,23,1010.0 -2015,3,3,15,0,623,78.13,23,1010.0 -2015,3,3,15,30,536,82.99,22,1010.0 -2015,3,3,16,0,437,83.0,22,1010.0 -2015,3,3,16,30,333,88.22,21,1010.0 -2015,3,3,17,0,226,88.78,21,1010.0 -2015,3,3,17,30,122,94.41,20,1010.0 -2015,3,3,18,0,34,99.22,19,1010.0 -2015,3,3,18,30,0,100.0,18,1010.0 -2015,3,3,19,0,0,100.0,18,1010.0 -2015,3,3,19,30,0,100.0,18,1010.0 -2015,3,3,20,0,0,100.0,18,1010.0 -2015,3,3,20,30,0,100.0,17,1010.0 -2015,3,3,21,0,0,100.0,17,1010.0 -2015,3,3,21,30,0,100.0,17,1010.0 -2015,3,3,22,0,0,100.0,17,1010.0 -2015,3,3,22,30,0,100.0,17,1010.0 -2015,3,3,23,0,0,100.0,17,1010.0 -2015,3,3,23,30,0,100.0,17,1010.0 -2015,3,4,0,0,0,100.0,17,1010.0 -2015,3,4,0,30,0,100.0,17,1010.0 -2015,3,4,1,0,0,100.0,17,1010.0 -2015,3,4,1,30,0,100.0,17,1010.0 -2015,3,4,2,0,0,100.0,17,1000.0 -2015,3,4,2,30,0,100.0,17,1000.0 -2015,3,4,3,0,0,100.0,18,1000.0 -2015,3,4,3,30,0,100.0,18,1000.0 -2015,3,4,4,0,0,100.0,18,1000.0 -2015,3,4,4,30,0,100.0,18,1000.0 -2015,3,4,5,0,0,100.0,18,1000.0 -2015,3,4,5,30,0,100.0,18,1010.0 -2015,3,4,6,0,0,100.0,18,1010.0 -2015,3,4,6,30,0,100.0,18,1010.0 -2015,3,4,7,0,23,100.0,19,1010.0 -2015,3,4,7,30,107,100.0,19,1010.0 -2015,3,4,8,0,212,100.0,20,1010.0 -2015,3,4,8,30,321,94.8,21,1010.0 -2015,3,4,9,0,139,89.65,22,1010.0 -2015,3,4,9,30,171,89.64,23,1010.0 -2015,3,4,10,0,201,83.13,24,1010.0 -2015,3,4,10,30,225,83.10000000000001,24,1010.0 -2015,3,4,11,0,751,76.94,24,1010.0 -2015,3,4,11,30,796,76.9,24,1010.0 -2015,3,4,12,0,813,75.87,25,1000.0 -2015,3,4,12,30,822,75.83,24,1000.0 -2015,3,4,13,0,814,75.12,24,1000.0 -2015,3,4,13,30,789,75.09,24,1000.0 -2015,3,4,14,0,746,74.62,24,1000.0 -2015,3,4,14,30,465,74.61,24,1000.0 -2015,3,4,15,0,615,74.34,24,1000.0 -2015,3,4,15,30,300,78.94,23,1000.0 -2015,3,4,16,0,78,79.66,23,1000.0 -2015,3,4,16,30,88,84.64,22,1000.0 -2015,3,4,17,0,44,92.61,21,1000.0 -2015,3,4,17,30,23,98.52,20,1000.0 -2015,3,4,18,0,6,100.0,19,1000.0 -2015,3,4,18,30,0,100.0,18,1000.0 -2015,3,4,19,0,0,100.0,18,1000.0 -2015,3,4,19,30,0,100.0,17,1010.0 -2015,3,4,20,0,0,100.0,16,1010.0 -2015,3,4,20,30,0,100.0,15,1010.0 -2015,3,4,21,0,0,100.0,14,1010.0 -2015,3,4,21,30,0,100.0,12,1010.0 -2015,3,4,22,0,0,99.14,10,1010.0 -2015,3,4,22,30,0,100.0,9,1010.0 -2015,3,4,23,0,0,92.24,8,1010.0 -2015,3,4,23,30,0,98.79,7,1010.0 -2015,3,5,0,0,0,93.18,6,1010.0 -2015,3,5,0,30,0,99.9,5,1010.0 -2015,3,5,1,0,0,93.02,5,1010.0 -2015,3,5,1,30,0,99.79,4,1010.0 -2015,3,5,2,0,0,94.05,4,1010.0 -2015,3,5,2,30,0,94.11,4,1010.0 -2015,3,5,3,0,0,88.71000000000001,4,1010.0 -2015,3,5,3,30,0,95.24,3,1010.0 -2015,3,5,4,0,0,90.06,3,1020.0 -2015,3,5,4,30,0,96.74000000000001,2,1020.0 -2015,3,5,5,0,0,92.83,2,1020.0 -2015,3,5,5,30,0,92.9,2,1020.0 -2015,3,5,6,0,0,92.01,2,1020.0 -2015,3,5,6,30,0,92.09,2,1020.0 -2015,3,5,7,0,0,91.92,2,1020.0 -2015,3,5,7,30,3,92.0,2,1020.0 -2015,3,5,8,0,10,90.85000000000001,3,1020.0 -2015,3,5,8,30,45,90.9,3,1020.0 -2015,3,5,9,0,95,82.28,3,1020.0 -2015,3,5,9,30,89,82.3,3,1020.0 -2015,3,5,10,0,213,80.46000000000001,3,1020.0 -2015,3,5,10,30,147,74.99,4,1020.0 -2015,3,5,11,0,162,69.08,5,1020.0 -2015,3,5,11,30,317,69.08,5,1020.0 -2015,3,5,12,0,416,65.36,6,1020.0 -2015,3,5,12,30,677,61.01,7,1020.0 -2015,3,5,13,0,698,58.81,8,1020.0 -2015,3,5,13,30,849,58.800000000000004,8,1020.0 -2015,3,5,14,0,710,55.53,9,1020.0 -2015,3,5,14,30,659,55.53,9,1020.0 -2015,3,5,15,0,677,53.96,9,1020.0 -2015,3,5,15,30,588,53.97,9,1020.0 -2015,3,5,16,0,489,50.89,9,1020.0 -2015,3,5,16,30,379,54.480000000000004,8,1020.0 -2015,3,5,17,0,266,55.46,8,1020.0 -2015,3,5,17,30,151,59.43,7,1030.0 -2015,3,5,18,0,48,64.66,6,1030.0 -2015,3,5,18,30,0,69.37,5,1030.0 -2015,3,5,19,0,0,70.97,4,1030.0 -2015,3,5,19,30,0,76.17,3,1030.0 -2015,3,5,20,0,0,77.29,3,1030.0 -2015,3,5,20,30,0,77.31,3,1030.0 -2015,3,5,21,0,0,77.89,3,1030.0 -2015,3,5,21,30,0,83.63,2,1030.0 -2015,3,5,22,0,0,82.97,2,1030.0 -2015,3,5,22,30,0,82.97,2,1030.0 -2015,3,5,23,0,0,81.9,2,1030.0 -2015,3,5,23,30,0,87.98,1,1030.0 -2015,3,6,0,0,0,86.86,1,1030.0 -2015,3,6,0,30,0,86.85000000000001,1,1030.0 -2015,3,6,1,0,0,85.34,1,1030.0 -2015,3,6,1,30,0,91.71000000000001,0,1030.0 -2015,3,6,2,0,0,90.19,0,1030.0 -2015,3,6,2,30,0,90.18,0,1030.0 -2015,3,6,3,0,0,88.55,0,1030.0 -2015,3,6,3,30,0,88.56,0,1030.0 -2015,3,6,4,0,0,86.14,0,1030.0 -2015,3,6,4,30,0,86.16,0,1030.0 -2015,3,6,5,0,0,90.85000000000001,-1,1030.0 -2015,3,6,5,30,0,90.89,-1,1030.0 -2015,3,6,6,0,0,89.61,-1,1030.0 -2015,3,6,6,30,0,83.35000000000001,0,1030.0 -2015,3,6,7,0,37,82.66,0,1030.0 -2015,3,6,7,30,141,76.93,1,1030.0 -2015,3,6,8,0,188,56.67,3,1030.0 -2015,3,6,8,30,275,52.82,4,1030.0 -2015,3,6,9,0,381,43.77,5,1030.0 -2015,3,6,9,30,604,40.83,6,1030.0 -2015,3,6,10,0,699,37.99,7,1030.0 -2015,3,6,10,30,660,35.47,8,1030.0 -2015,3,6,11,0,714,35.37,9,1030.0 -2015,3,6,11,30,759,35.35,9,1030.0 -2015,3,6,12,0,801,35.57,10,1030.0 -2015,3,6,12,30,817,35.550000000000004,10,1030.0 -2015,3,6,13,0,920,35.31,11,1030.0 -2015,3,6,13,30,892,35.300000000000004,11,1030.0 -2015,3,6,14,0,846,36.92,11,1030.0 -2015,3,6,14,30,784,36.92,11,1030.0 -2015,3,6,15,0,703,38.0,11,1020.0 -2015,3,6,15,30,611,38.0,11,1020.0 -2015,3,6,16,0,506,40.03,11,1020.0 -2015,3,6,16,30,393,42.78,10,1030.0 -2015,3,6,17,0,275,59.04,10,1030.0 -2015,3,6,17,30,157,63.14,9,1030.0 -2015,3,6,18,0,51,64.44,8,1030.0 -2015,3,6,18,30,0,64.44,8,1030.0 -2015,3,6,19,0,0,63.11,8,1030.0 -2015,3,6,19,30,0,67.56,7,1030.0 -2015,3,6,20,0,0,66.56,7,1030.0 -2015,3,6,20,30,0,71.28,7,1030.0 -2015,3,6,21,0,0,71.19,7,1030.0 -2015,3,6,21,30,0,71.18,6,1030.0 -2015,3,6,22,0,0,73.3,6,1030.0 -2015,3,6,22,30,0,78.53,5,1030.0 -2015,3,6,23,0,0,81.55,5,1020.0 -2015,3,6,23,30,0,81.54,5,1020.0 -2015,3,7,0,0,0,82.4,5,1020.0 -2015,3,7,0,30,0,82.39,5,1020.0 -2015,3,7,1,0,0,83.99,5,1020.0 -2015,3,7,1,30,0,83.99,5,1020.0 -2015,3,7,2,0,0,84.84,5,1020.0 -2015,3,7,2,30,0,90.96000000000001,5,1020.0 -2015,3,7,3,0,0,89.8,5,1020.0 -2015,3,7,3,30,0,89.79,5,1020.0 -2015,3,7,4,0,0,88.56,5,1020.0 -2015,3,7,4,30,0,88.57000000000001,5,1020.0 -2015,3,7,5,0,0,82.46000000000001,5,1020.0 -2015,3,7,5,30,0,82.46000000000001,5,1020.0 -2015,3,7,6,0,0,82.01,5,1020.0 -2015,3,7,6,30,0,82.03,5,1020.0 -2015,3,7,7,0,12,76.06,6,1020.0 -2015,3,7,7,30,44,76.08,6,1020.0 -2015,3,7,8,0,82,71.21000000000001,7,1030.0 -2015,3,7,8,30,121,66.53,8,1030.0 -2015,3,7,9,0,157,57.54,9,1030.0 -2015,3,7,9,30,160,53.800000000000004,10,1030.0 -2015,3,7,10,0,425,49.730000000000004,11,1030.0 -2015,3,7,10,30,718,49.72,11,1030.0 -2015,3,7,11,0,776,50.95,11,1030.0 -2015,3,7,11,30,821,50.92,11,1020.0 -2015,3,7,12,0,846,50.03,12,1020.0 -2015,3,7,12,30,566,50.0,12,1020.0 -2015,3,7,13,0,561,48.88,13,1020.0 -2015,3,7,13,30,581,48.85,13,1020.0 -2015,3,7,14,0,515,50.550000000000004,14,1020.0 -2015,3,7,14,30,280,50.53,14,1020.0 -2015,3,7,15,0,320,48.18,14,1020.0 -2015,3,7,15,30,222,51.4,13,1020.0 -2015,3,7,16,0,232,53.17,13,1020.0 -2015,3,7,16,30,212,56.76,12,1020.0 -2015,3,7,17,0,131,70.21000000000001,12,1020.0 -2015,3,7,17,30,73,75.0,11,1020.0 -2015,3,7,18,0,23,80.54,10,1020.0 -2015,3,7,18,30,0,80.54,10,1020.0 -2015,3,7,19,0,0,80.09,10,1020.0 -2015,3,7,19,30,0,80.11,10,1020.0 -2015,3,7,20,0,0,81.11,10,1020.0 -2015,3,7,20,30,0,86.75,9,1020.0 -2015,3,7,21,0,0,86.73,9,1020.0 -2015,3,7,21,30,0,86.71000000000001,9,1020.0 -2015,3,7,22,0,0,87.4,9,1020.0 -2015,3,7,22,30,0,87.36,9,1020.0 -2015,3,7,23,0,0,89.78,9,1020.0 -2015,3,7,23,30,0,89.76,9,1020.0 -2015,3,8,0,0,0,92.05,9,1020.0 -2015,3,8,0,30,0,92.03,9,1020.0 -2015,3,8,1,0,0,92.5,10,1020.0 -2015,3,8,1,30,0,92.48,10,1020.0 -2015,3,8,2,0,0,93.58,10,1020.0 -2015,3,8,2,30,0,93.56,9,1020.0 -2015,3,8,3,0,0,94.68,9,1020.0 -2015,3,8,3,30,0,94.66,9,1020.0 -2015,3,8,4,0,0,94.66,9,1020.0 -2015,3,8,4,30,0,94.65,9,1020.0 -2015,3,8,5,0,0,94.44,9,1020.0 -2015,3,8,5,30,0,100.0,9,1020.0 -2015,3,8,6,0,0,100.0,9,1020.0 -2015,3,8,6,30,0,100.0,9,1020.0 -2015,3,8,7,0,2,95.34,9,1020.0 -2015,3,8,7,30,10,95.35000000000001,9,1020.0 -2015,3,8,8,0,3,91.85000000000001,10,1020.0 -2015,3,8,8,30,92,91.85000000000001,10,1020.0 -2015,3,8,9,0,86,88.59,11,1020.0 -2015,3,8,9,30,94,88.57000000000001,11,1020.0 -2015,3,8,10,0,34,91.88,11,1020.0 -2015,3,8,10,30,31,91.85000000000001,11,1020.0 -2015,3,8,11,0,50,90.10000000000001,12,1020.0 -2015,3,8,11,30,60,90.04,12,1020.0 -2015,3,8,12,0,116,88.49,13,1020.0 -2015,3,8,12,30,112,88.43,13,1020.0 -2015,3,8,13,0,117,92.34,13,1020.0 -2015,3,8,13,30,104,92.29,13,1010.0 -2015,3,8,14,0,120,95.14,13,1010.0 -2015,3,8,14,30,87,95.09,13,1010.0 -2015,3,8,15,0,88,96.24000000000001,13,1010.0 -2015,3,8,15,30,143,100.0,13,1010.0 -2015,3,8,16,0,120,100.0,13,1010.0 -2015,3,8,16,30,34,100.0,12,1010.0 -2015,3,8,17,0,72,100.0,12,1010.0 -2015,3,8,17,30,40,100.0,12,1010.0 -2015,3,8,18,0,12,100.0,12,1010.0 -2015,3,8,18,30,0,100.0,11,1010.0 -2015,3,8,19,0,0,100.0,11,1010.0 -2015,3,8,19,30,0,100.0,11,1010.0 -2015,3,8,20,0,0,100.0,11,1010.0 -2015,3,8,20,30,0,100.0,11,1010.0 -2015,3,8,21,0,0,100.0,11,1010.0 -2015,3,8,21,30,0,100.0,11,1010.0 -2015,3,8,22,0,0,100.0,11,1010.0 -2015,3,8,22,30,0,100.0,11,1010.0 -2015,3,8,23,0,0,100.0,11,1010.0 -2015,3,8,23,30,0,100.0,11,1010.0 -2015,3,9,0,0,0,100.0,11,1010.0 -2015,3,9,0,30,0,100.0,11,1010.0 -2015,3,9,1,0,0,100.0,11,1010.0 -2015,3,9,1,30,0,100.0,11,1010.0 -2015,3,9,2,0,0,99.8,12,1010.0 -2015,3,9,2,30,0,99.77,12,1010.0 -2015,3,9,3,0,0,100.0,12,1010.0 -2015,3,9,3,30,0,100.0,12,1010.0 -2015,3,9,4,0,0,100.0,12,1010.0 -2015,3,9,4,30,0,100.0,12,1010.0 -2015,3,9,5,0,0,100.0,12,1010.0 -2015,3,9,5,30,0,100.0,12,1010.0 -2015,3,9,6,0,0,100.0,13,1010.0 -2015,3,9,6,30,0,100.0,13,1010.0 -2015,3,9,7,0,1,100.0,13,1010.0 -2015,3,9,7,30,6,100.0,13,1010.0 -2015,3,9,8,0,43,100.0,14,1010.0 -2015,3,9,8,30,110,100.0,14,1010.0 -2015,3,9,9,0,171,99.10000000000001,15,1010.0 -2015,3,9,9,30,89,99.07000000000001,15,1010.0 -2015,3,9,10,0,109,99.23,16,1010.0 -2015,3,9,10,30,179,99.2,16,1010.0 -2015,3,9,11,0,164,99.45,17,1010.0 -2015,3,9,11,30,214,99.4,17,1010.0 -2015,3,9,12,0,29,98.28,18,1010.0 -2015,3,9,12,30,164,98.21000000000001,18,1010.0 -2015,3,9,13,0,215,100.0,18,1010.0 -2015,3,9,13,30,70,100.0,18,1000.0 -2015,3,9,14,0,155,100.0,18,1000.0 -2015,3,9,14,30,145,100.0,18,1000.0 -2015,3,9,15,0,115,100.0,18,1000.0 -2015,3,9,15,30,122,100.0,18,1000.0 -2015,3,9,16,0,61,100.0,18,1000.0 -2015,3,9,16,30,199,100.0,18,1000.0 -2015,3,9,17,0,133,100.0,18,1000.0 -2015,3,9,17,30,76,100.0,17,1000.0 -2015,3,9,18,0,25,100.0,17,1000.0 -2015,3,9,18,30,0,100.0,17,1000.0 -2015,3,9,19,0,0,100.0,17,1000.0 -2015,3,9,19,30,0,100.0,16,1010.0 -2015,3,9,20,0,0,100.0,16,1010.0 -2015,3,9,20,30,0,100.0,16,1010.0 -2015,3,9,21,0,0,100.0,16,1010.0 -2015,3,9,21,30,0,100.0,15,1010.0 -2015,3,9,22,0,0,100.0,15,1010.0 -2015,3,9,22,30,0,100.0,14,1010.0 -2015,3,9,23,0,0,100.0,14,1010.0 -2015,3,9,23,30,0,100.0,13,1010.0 -2015,3,10,0,0,0,100.0,13,1010.0 -2015,3,10,0,30,0,100.0,12,1010.0 -2015,3,10,1,0,0,100.0,12,1010.0 -2015,3,10,1,30,0,100.0,12,1010.0 -2015,3,10,2,0,0,100.0,12,1010.0 -2015,3,10,2,30,0,100.0,11,1010.0 -2015,3,10,3,0,0,100.0,11,1010.0 -2015,3,10,3,30,0,100.0,11,1010.0 -2015,3,10,4,0,0,100.0,11,1010.0 -2015,3,10,4,30,0,100.0,10,1010.0 -2015,3,10,5,0,0,100.0,10,1010.0 -2015,3,10,5,30,0,100.0,10,1010.0 -2015,3,10,6,0,0,100.0,10,1010.0 -2015,3,10,6,30,0,100.0,10,1010.0 -2015,3,10,7,0,1,96.27,11,1010.0 -2015,3,10,7,30,3,96.32000000000001,11,1010.0 -2015,3,10,8,0,34,97.05,11,1010.0 -2015,3,10,8,30,33,97.07000000000001,11,1010.0 -2015,3,10,9,0,85,92.06,12,1010.0 -2015,3,10,9,30,164,92.06,12,1010.0 -2015,3,10,10,0,123,93.63,12,1010.0 -2015,3,10,10,30,169,93.60000000000001,12,1010.0 -2015,3,10,11,0,226,88.95,13,1010.0 -2015,3,10,11,30,163,88.89,13,1010.0 -2015,3,10,12,0,305,84.45,14,1010.0 -2015,3,10,12,30,351,84.41,14,1010.0 -2015,3,10,13,0,371,85.59,14,1010.0 -2015,3,10,13,30,281,85.59,14,1010.0 -2015,3,10,14,0,314,81.29,15,1010.0 -2015,3,10,14,30,368,81.33,15,1010.0 -2015,3,10,15,0,332,82.17,15,1010.0 -2015,3,10,15,30,286,87.65,15,1010.0 -2015,3,10,16,0,209,90.27,15,1010.0 -2015,3,10,16,30,183,96.33,14,1010.0 -2015,3,10,17,0,62,98.67,14,1010.0 -2015,3,10,17,30,35,100.0,13,1010.0 -2015,3,10,18,0,12,100.0,12,1010.0 -2015,3,10,18,30,0,100.0,12,1010.0 -2015,3,10,19,0,0,98.82000000000001,12,1010.0 -2015,3,10,19,30,0,98.85000000000001,12,1010.0 -2015,3,10,20,0,0,97.77,12,1010.0 -2015,3,10,20,30,0,100.0,11,1010.0 -2015,3,10,21,0,0,100.0,11,1010.0 -2015,3,10,21,30,0,100.0,11,1010.0 -2015,3,10,22,0,0,100.0,11,1010.0 -2015,3,10,22,30,0,100.0,10,1010.0 -2015,3,10,23,0,0,100.0,10,1010.0 -2015,3,10,23,30,0,100.0,10,1010.0 -2015,3,11,0,0,0,100.0,10,1010.0 -2015,3,11,0,30,0,100.0,10,1010.0 -2015,3,11,1,0,0,100.0,10,1010.0 -2015,3,11,1,30,0,100.0,10,1010.0 -2015,3,11,2,0,0,100.0,11,1010.0 -2015,3,11,2,30,0,100.0,11,1010.0 -2015,3,11,3,0,0,100.0,11,1010.0 -2015,3,11,3,30,0,100.0,11,1010.0 -2015,3,11,4,0,0,100.0,11,1010.0 -2015,3,11,4,30,0,100.0,11,1010.0 -2015,3,11,5,0,0,100.0,11,1010.0 -2015,3,11,5,30,0,100.0,11,1010.0 -2015,3,11,6,0,0,100.0,11,1010.0 -2015,3,11,6,30,0,100.0,11,1020.0 -2015,3,11,7,0,6,95.69,12,1020.0 -2015,3,11,7,30,21,95.72,12,1020.0 -2015,3,11,8,0,37,95.06,12,1020.0 -2015,3,11,8,30,10,95.07000000000001,12,1020.0 -2015,3,11,9,0,96,88.2,13,1020.0 -2015,3,11,9,30,151,88.19,13,1020.0 -2015,3,11,10,0,194,88.92,13,1020.0 -2015,3,11,10,30,227,88.9,13,1020.0 -2015,3,11,11,0,262,84.44,14,1020.0 -2015,3,11,11,30,360,84.41,14,1020.0 -2015,3,11,12,0,393,85.78,14,1020.0 -2015,3,11,12,30,363,85.75,14,1010.0 -2015,3,11,13,0,258,81.79,15,1010.0 -2015,3,11,13,30,280,81.76,15,1010.0 -2015,3,11,14,0,275,83.0,15,1010.0 -2015,3,11,14,30,282,88.5,15,1010.0 -2015,3,11,15,0,190,89.97,15,1010.0 -2015,3,11,15,30,118,89.97,14,1010.0 -2015,3,11,16,0,109,92.05,14,1010.0 -2015,3,11,16,30,77,98.22,13,1010.0 -2015,3,11,17,0,97,99.10000000000001,13,1010.0 -2015,3,11,17,30,67,99.11,13,1010.0 -2015,3,11,18,0,23,97.24000000000001,13,1010.0 -2015,3,11,18,30,0,97.26,13,1010.0 -2015,3,11,19,0,0,96.77,13,1010.0 -2015,3,11,19,30,0,96.78,13,1010.0 -2015,3,11,20,0,0,96.89,13,1010.0 -2015,3,11,20,30,0,96.88,13,1010.0 -2015,3,11,21,0,0,97.07000000000001,13,1010.0 -2015,3,11,21,30,0,100.0,13,1010.0 -2015,3,11,22,0,0,100.0,13,1010.0 -2015,3,11,22,30,0,100.0,12,1010.0 -2015,3,11,23,0,0,100.0,12,1010.0 -2015,3,11,23,30,0,100.0,12,1010.0 -2015,3,12,0,0,0,100.0,12,1010.0 -2015,3,12,0,30,0,100.0,12,1010.0 -2015,3,12,1,0,0,100.0,12,1010.0 -2015,3,12,1,30,0,100.0,12,1010.0 -2015,3,12,2,0,0,100.0,12,1010.0 -2015,3,12,2,30,0,100.0,12,1010.0 -2015,3,12,3,0,0,100.0,12,1010.0 -2015,3,12,3,30,0,100.0,12,1010.0 -2015,3,12,4,0,0,100.0,12,1010.0 -2015,3,12,4,30,0,100.0,12,1010.0 -2015,3,12,5,0,0,100.0,12,1010.0 -2015,3,12,5,30,0,100.0,12,1010.0 -2015,3,12,6,0,0,100.0,12,1010.0 -2015,3,12,6,30,0,100.0,12,1010.0 -2015,3,12,7,0,4,100.0,13,1010.0 -2015,3,12,7,30,15,100.0,13,1010.0 -2015,3,12,8,0,44,100.0,14,1010.0 -2015,3,12,8,30,40,95.05,14,1010.0 -2015,3,12,9,0,52,93.39,15,1010.0 -2015,3,12,9,30,169,93.37,15,1010.0 -2015,3,12,10,0,65,91.71000000000001,16,1010.0 -2015,3,12,10,30,206,91.67,16,1010.0 -2015,3,12,11,0,149,89.86,17,1010.0 -2015,3,12,11,30,193,89.82000000000001,17,1010.0 -2015,3,12,12,0,376,87.24,18,1010.0 -2015,3,12,12,30,86,87.19,18,1010.0 -2015,3,12,13,0,238,83.58,19,1010.0 -2015,3,12,13,30,166,83.55,19,1010.0 -2015,3,12,14,0,240,83.99,19,1010.0 -2015,3,12,14,30,301,89.38,18,1010.0 -2015,3,12,15,0,296,89.47,18,1010.0 -2015,3,12,15,30,304,95.29,18,1010.0 -2015,3,12,16,0,86,95.81,18,1010.0 -2015,3,12,16,30,197,95.8,17,1010.0 -2015,3,12,17,0,155,95.19,17,1010.0 -2015,3,12,17,30,117,100.0,16,1010.0 -2015,3,12,18,0,40,100.0,15,1010.0 -2015,3,12,18,30,0,100.0,15,1010.0 -2015,3,12,19,0,0,100.0,15,1010.0 -2015,3,12,19,30,0,100.0,14,1010.0 -2015,3,12,20,0,0,100.0,14,1010.0 -2015,3,12,20,30,0,100.0,14,1010.0 -2015,3,12,21,0,0,100.0,14,1010.0 -2015,3,12,21,30,0,100.0,14,1010.0 -2015,3,12,22,0,0,100.0,14,1010.0 -2015,3,12,22,30,0,100.0,14,1010.0 -2015,3,12,23,0,0,99.95,14,1010.0 -2015,3,12,23,30,0,100.0,13,1010.0 -2015,3,13,0,0,0,100.0,13,1010.0 -2015,3,13,0,30,0,100.0,13,1010.0 -2015,3,13,1,0,0,100.0,13,1010.0 -2015,3,13,1,30,0,100.0,13,1010.0 -2015,3,13,2,0,0,100.0,13,1010.0 -2015,3,13,2,30,0,100.0,13,1010.0 -2015,3,13,3,0,0,100.0,13,1010.0 -2015,3,13,3,30,0,100.0,13,1010.0 -2015,3,13,4,0,0,100.0,13,1010.0 -2015,3,13,4,30,0,100.0,12,1010.0 -2015,3,13,5,0,0,100.0,12,1010.0 -2015,3,13,5,30,0,100.0,12,1010.0 -2015,3,13,6,0,0,100.0,12,1010.0 -2015,3,13,6,30,0,100.0,12,1010.0 -2015,3,13,7,0,48,100.0,13,1010.0 -2015,3,13,7,30,142,100.0,13,1010.0 -2015,3,13,8,0,22,98.41,14,1010.0 -2015,3,13,8,30,39,92.29,15,1010.0 -2015,3,13,9,0,191,88.44,16,1010.0 -2015,3,13,9,30,62,88.45,16,1010.0 -2015,3,13,10,0,124,84.09,17,1010.0 -2015,3,13,10,30,119,84.08,17,1010.0 -2015,3,13,11,0,93,80.13,18,1010.0 -2015,3,13,11,30,168,80.12,18,1010.0 -2015,3,13,12,0,226,76.42,19,1010.0 -2015,3,13,12,30,185,76.4,19,1010.0 -2015,3,13,13,0,184,77.33,19,1010.0 -2015,3,13,13,30,325,77.3,19,1010.0 -2015,3,13,14,0,300,73.24,20,1010.0 -2015,3,13,14,30,486,73.23,20,1010.0 -2015,3,13,15,0,485,73.27,20,1010.0 -2015,3,13,15,30,335,77.96000000000001,19,1010.0 -2015,3,13,16,0,191,79.17,19,1010.0 -2015,3,13,16,30,104,84.28,18,1010.0 -2015,3,13,17,0,222,89.72,18,1010.0 -2015,3,13,17,30,136,95.55,17,1010.0 -2015,3,13,18,0,49,87.8,17,1010.0 -2015,3,13,18,30,0,87.83,17,1010.0 -2015,3,13,19,0,0,85.59,17,1010.0 -2015,3,13,19,30,0,91.22,16,1010.0 -2015,3,13,20,0,0,90.74,16,1010.0 -2015,3,13,20,30,0,96.74000000000001,15,1010.0 -2015,3,13,21,0,0,96.66,15,1010.0 -2015,3,13,21,30,0,100.0,14,1010.0 -2015,3,13,22,0,0,100.0,14,1010.0 -2015,3,13,22,30,0,100.0,14,1010.0 -2015,3,13,23,0,0,100.0,14,1010.0 -2015,3,13,23,30,0,100.0,13,1010.0 -2015,3,14,0,0,0,100.0,13,1010.0 -2015,3,14,0,30,0,100.0,13,1010.0 -2015,3,14,1,0,0,100.0,13,1010.0 -2015,3,14,1,30,0,100.0,12,1010.0 -2015,3,14,2,0,0,100.0,12,1010.0 -2015,3,14,2,30,0,100.0,12,1010.0 -2015,3,14,3,0,0,100.0,12,1010.0 -2015,3,14,3,30,0,100.0,12,1010.0 -2015,3,14,4,0,0,100.0,12,1010.0 -2015,3,14,4,30,0,100.0,12,1010.0 -2015,3,14,5,0,0,100.0,12,1010.0 -2015,3,14,5,30,0,100.0,12,1010.0 -2015,3,14,6,0,0,100.0,12,1010.0 -2015,3,14,6,30,0,98.96000000000001,13,1010.0 -2015,3,14,7,0,20,100.0,14,1010.0 -2015,3,14,7,30,98,94.28,15,1010.0 -2015,3,14,8,0,257,94.60000000000001,16,1010.0 -2015,3,14,8,30,368,88.8,17,1010.0 -2015,3,14,9,0,474,79.34,19,1010.0 -2015,3,14,9,30,573,74.57000000000001,20,1010.0 -2015,3,14,10,0,660,69.14,21,1010.0 -2015,3,14,10,30,735,69.13,21,1010.0 -2015,3,14,11,0,795,65.17,22,1010.0 -2015,3,14,11,30,839,65.15,22,1010.0 -2015,3,14,12,0,868,61.24,23,1010.0 -2015,3,14,12,30,878,61.21,23,1010.0 -2015,3,14,13,0,869,60.68,23,1010.0 -2015,3,14,13,30,843,60.67,23,1010.0 -2015,3,14,14,0,799,59.9,23,1010.0 -2015,3,14,14,30,597,63.64,22,1010.0 -2015,3,14,15,0,548,62.82,22,1010.0 -2015,3,14,15,30,433,66.78,21,1010.0 -2015,3,14,16,0,384,67.54,21,1010.0 -2015,3,14,16,30,252,71.84,20,1010.0 -2015,3,14,17,0,192,81.51,19,1010.0 -2015,3,14,17,30,111,86.78,18,1010.0 -2015,3,14,18,0,40,86.5,17,1010.0 -2015,3,14,18,30,0,92.2,16,1010.0 -2015,3,14,19,0,0,88.44,16,1010.0 -2015,3,14,19,30,0,94.33,15,1010.0 -2015,3,14,20,0,0,91.25,15,1010.0 -2015,3,14,20,30,0,97.35000000000001,15,1010.0 -2015,3,14,21,0,0,94.73,15,1010.0 -2015,3,14,21,30,0,94.74,14,1020.0 -2015,3,14,22,0,0,93.17,14,1020.0 -2015,3,14,22,30,0,99.41,13,1020.0 -2015,3,14,23,0,0,97.55,13,1020.0 -2015,3,14,23,30,0,97.55,13,1020.0 -2015,3,15,0,0,0,96.10000000000001,13,1020.0 -2015,3,15,0,30,0,100.0,12,1020.0 -2015,3,15,1,0,0,100.0,12,1020.0 -2015,3,15,1,30,0,100.0,12,1020.0 -2015,3,15,2,0,0,100.0,12,1020.0 -2015,3,15,2,30,0,100.0,12,1020.0 -2015,3,15,3,0,0,99.11,12,1020.0 -2015,3,15,3,30,0,100.0,12,1020.0 -2015,3,15,4,0,0,100.0,12,1020.0 -2015,3,15,4,30,0,100.0,11,1020.0 -2015,3,15,5,0,0,100.0,11,1020.0 -2015,3,15,5,30,0,100.0,11,1020.0 -2015,3,15,6,0,0,100.0,11,1020.0 -2015,3,15,6,30,0,100.0,11,1020.0 -2015,3,15,7,0,24,98.64,12,1020.0 -2015,3,15,7,30,101,92.41,13,1020.0 -2015,3,15,8,0,120,89.15,14,1020.0 -2015,3,15,8,30,171,89.18,15,1020.0 -2015,3,15,9,0,288,85.86,16,1020.0 -2015,3,15,9,30,332,80.55,16,1020.0 -2015,3,15,10,0,403,78.29,17,1020.0 -2015,3,15,10,30,445,78.28,17,1020.0 -2015,3,15,11,0,615,75.79,18,1020.0 -2015,3,15,11,30,649,75.77,18,1020.0 -2015,3,15,12,0,859,72.91,19,1020.0 -2015,3,15,12,30,867,72.89,19,1020.0 -2015,3,15,13,0,858,70.12,20,1020.0 -2015,3,15,13,30,831,70.11,20,1020.0 -2015,3,15,14,0,708,66.15,21,1020.0 -2015,3,15,14,30,726,66.15,21,1020.0 -2015,3,15,15,0,651,65.76,21,1020.0 -2015,3,15,15,30,564,69.93,20,1020.0 -2015,3,15,16,0,468,70.64,20,1020.0 -2015,3,15,16,30,363,70.64,20,1020.0 -2015,3,15,17,0,255,75.97,20,1020.0 -2015,3,15,17,30,84,80.82000000000001,19,1020.0 -2015,3,15,18,0,31,80.0,18,1020.0 -2015,3,15,18,30,0,80.0,18,1020.0 -2015,3,15,19,0,0,77.96000000000001,18,1020.0 -2015,3,15,19,30,0,83.03,17,1020.0 -2015,3,15,20,0,0,81.4,17,1020.0 -2015,3,15,20,30,0,86.73,16,1020.0 -2015,3,15,21,0,0,85.85000000000001,16,1020.0 -2015,3,15,21,30,0,91.49,15,1020.0 -2015,3,15,22,0,0,91.2,15,1020.0 -2015,3,15,22,30,0,97.25,15,1020.0 -2015,3,15,23,0,0,97.18,15,1020.0 -2015,3,15,23,30,0,97.16,14,1020.0 -2015,3,16,0,0,0,97.84,14,1020.0 -2015,3,16,0,30,0,100.0,14,1020.0 -2015,3,16,1,0,0,100.0,14,1020.0 -2015,3,16,1,30,0,100.0,13,1020.0 -2015,3,16,2,0,0,100.0,13,1020.0 -2015,3,16,2,30,0,100.0,13,1020.0 -2015,3,16,3,0,0,100.0,13,1020.0 -2015,3,16,3,30,0,100.0,13,1020.0 -2015,3,16,4,0,0,100.0,13,1020.0 -2015,3,16,4,30,0,100.0,12,1020.0 -2015,3,16,5,0,0,100.0,12,1020.0 -2015,3,16,5,30,0,100.0,12,1020.0 -2015,3,16,6,0,0,100.0,13,1020.0 -2015,3,16,6,30,0,96.77,14,1020.0 -2015,3,16,7,0,17,94.01,15,1020.0 -2015,3,16,7,30,26,88.22,16,1020.0 -2015,3,16,8,0,49,89.75,17,1020.0 -2015,3,16,8,30,168,84.28,18,1020.0 -2015,3,16,9,0,118,78.01,20,1020.0 -2015,3,16,9,30,236,73.35000000000001,21,1020.0 -2015,3,16,10,0,198,69.37,22,1020.0 -2015,3,16,10,30,298,69.35000000000001,22,1020.0 -2015,3,16,11,0,424,65.97,23,1020.0 -2015,3,16,11,30,150,65.93,23,1020.0 -2015,3,16,12,0,560,64.43,24,1020.0 -2015,3,16,12,30,350,64.4,24,1020.0 -2015,3,16,13,0,629,66.93,24,1020.0 -2015,3,16,13,30,486,66.91,24,1020.0 -2015,3,16,14,0,317,68.73,24,1010.0 -2015,3,16,14,30,215,68.7,24,1010.0 -2015,3,16,15,0,197,69.41,24,1010.0 -2015,3,16,15,30,358,73.7,23,1010.0 -2015,3,16,16,0,341,74.41,23,1010.0 -2015,3,16,16,30,265,79.05,22,1010.0 -2015,3,16,17,0,254,82.39,22,1010.0 -2015,3,16,17,30,149,93.13,20,1010.0 -2015,3,16,18,0,55,95.56,19,1010.0 -2015,3,16,18,30,0,100.0,18,1010.0 -2015,3,16,19,0,0,97.04,18,1010.0 -2015,3,16,19,30,0,100.0,18,1010.0 -2015,3,16,20,0,0,100.0,18,1010.0 -2015,3,16,20,30,0,100.0,17,1010.0 -2015,3,16,21,0,0,97.26,17,1010.0 -2015,3,16,21,30,0,100.0,16,1010.0 -2015,3,16,22,0,0,100.0,16,1010.0 -2015,3,16,22,30,0,100.0,16,1010.0 -2015,3,16,23,0,0,100.0,16,1010.0 -2015,3,16,23,30,0,100.0,16,1010.0 -2015,3,17,0,0,0,100.0,16,1010.0 -2015,3,17,0,30,0,100.0,15,1010.0 -2015,3,17,1,0,0,100.0,15,1010.0 -2015,3,17,1,30,0,100.0,15,1010.0 -2015,3,17,2,0,0,100.0,15,1010.0 -2015,3,17,2,30,0,100.0,15,1010.0 -2015,3,17,3,0,0,100.0,15,1010.0 -2015,3,17,3,30,0,100.0,15,1010.0 -2015,3,17,4,0,0,100.0,15,1010.0 -2015,3,17,4,30,0,100.0,15,1010.0 -2015,3,17,5,0,0,100.0,15,1010.0 -2015,3,17,5,30,0,100.0,15,1010.0 -2015,3,17,6,0,0,100.0,15,1010.0 -2015,3,17,6,30,0,100.0,16,1010.0 -2015,3,17,7,0,31,100.0,17,1020.0 -2015,3,17,7,30,58,100.0,17,1020.0 -2015,3,17,8,0,143,100.0,18,1020.0 -2015,3,17,8,30,198,94.89,18,1020.0 -2015,3,17,9,0,291,95.45,19,1020.0 -2015,3,17,9,30,318,89.7,20,1020.0 -2015,3,17,10,0,414,90.12,22,1020.0 -2015,3,17,10,30,439,84.76,22,1020.0 -2015,3,17,11,0,537,81.57000000000001,23,1010.0 -2015,3,17,11,30,565,81.54,23,1010.0 -2015,3,17,12,0,568,76.81,24,1010.0 -2015,3,17,12,30,614,76.78,24,1010.0 -2015,3,17,13,0,872,77.0,24,1010.0 -2015,3,17,13,30,845,76.96000000000001,24,1010.0 -2015,3,17,14,0,801,76.98,25,1010.0 -2015,3,17,14,30,668,76.95,24,1010.0 -2015,3,17,15,0,409,76.78,24,1010.0 -2015,3,17,15,30,364,81.52,23,1010.0 -2015,3,17,16,0,364,84.19,23,1010.0 -2015,3,17,16,30,334,89.44,23,1010.0 -2015,3,17,17,0,250,91.3,23,1010.0 -2015,3,17,17,30,108,97.04,21,1010.0 -2015,3,17,18,0,41,93.72,20,1010.0 -2015,3,17,18,30,0,99.71000000000001,19,1010.0 -2015,3,17,19,0,0,96.09,19,1010.0 -2015,3,17,19,30,0,96.10000000000001,19,1010.0 -2015,3,17,20,0,0,94.63,19,1010.0 -2015,3,17,20,30,0,100.0,18,1010.0 -2015,3,17,21,0,0,100.0,18,1010.0 -2015,3,17,21,30,0,100.0,18,1010.0 -2015,3,17,22,0,0,100.0,18,1010.0 -2015,3,17,22,30,0,100.0,17,1010.0 -2015,3,17,23,0,0,100.0,17,1010.0 -2015,3,17,23,30,0,100.0,17,1010.0 -2015,3,18,0,0,0,100.0,17,1010.0 -2015,3,18,0,30,0,100.0,16,1010.0 -2015,3,18,1,0,0,100.0,16,1010.0 -2015,3,18,1,30,0,100.0,16,1010.0 -2015,3,18,2,0,0,100.0,16,1010.0 -2015,3,18,2,30,0,100.0,16,1010.0 -2015,3,18,3,0,0,100.0,16,1010.0 -2015,3,18,3,30,0,100.0,16,1010.0 -2015,3,18,4,0,0,100.0,16,1010.0 -2015,3,18,4,30,0,100.0,16,1010.0 -2015,3,18,5,0,0,100.0,16,1010.0 -2015,3,18,5,30,0,100.0,16,1010.0 -2015,3,18,6,0,0,100.0,16,1010.0 -2015,3,18,6,30,0,100.0,17,1010.0 -2015,3,18,7,0,2,100.0,18,1010.0 -2015,3,18,7,30,7,98.28,18,1010.0 -2015,3,18,8,0,6,95.81,19,1010.0 -2015,3,18,8,30,57,95.79,19,1010.0 -2015,3,18,9,0,66,93.26,20,1010.0 -2015,3,18,9,30,289,93.25,21,1010.0 -2015,3,18,10,0,375,89.33,22,1010.0 -2015,3,18,10,30,734,84.02,22,1010.0 -2015,3,18,11,0,797,79.53,23,1010.0 -2015,3,18,11,30,841,79.5,23,1010.0 -2015,3,18,12,0,871,74.95,24,1010.0 -2015,3,18,12,30,880,74.91,24,1010.0 -2015,3,18,13,0,646,74.86,24,1010.0 -2015,3,18,13,30,626,74.84,24,1010.0 -2015,3,18,14,0,799,74.65,24,1010.0 -2015,3,18,14,30,739,79.26,23,1010.0 -2015,3,18,15,0,662,79.38,23,1010.0 -2015,3,18,15,30,216,84.33,23,1010.0 -2015,3,18,16,0,92,85.35000000000001,23,1010.0 -2015,3,18,16,30,34,90.73,22,1010.0 -2015,3,18,17,0,141,92.95,21,1010.0 -2015,3,18,17,30,65,98.86,20,1010.0 -2015,3,18,18,0,25,94.85000000000001,20,1010.0 -2015,3,18,18,30,0,100.0,19,1010.0 -2015,3,18,19,0,0,97.25,19,1010.0 -2015,3,18,19,30,0,100.0,18,1010.0 -2015,3,18,20,0,0,100.0,18,1010.0 -2015,3,18,20,30,0,100.0,18,1010.0 -2015,3,18,21,0,0,99.21000000000001,18,1010.0 -2015,3,18,21,30,0,100.0,17,1010.0 -2015,3,18,22,0,0,100.0,17,1010.0 -2015,3,18,22,30,0,100.0,17,1010.0 -2015,3,18,23,0,0,100.0,17,1010.0 -2015,3,18,23,30,0,100.0,17,1010.0 -2015,3,19,0,0,0,100.0,17,1010.0 -2015,3,19,0,30,0,100.0,17,1010.0 -2015,3,19,1,0,0,100.0,17,1010.0 -2015,3,19,1,30,0,100.0,17,1010.0 -2015,3,19,2,0,0,100.0,17,1010.0 -2015,3,19,2,30,0,100.0,17,1010.0 -2015,3,19,3,0,0,100.0,17,1010.0 -2015,3,19,3,30,0,100.0,17,1010.0 -2015,3,19,4,0,0,100.0,17,1010.0 -2015,3,19,4,30,0,100.0,17,1010.0 -2015,3,19,5,0,0,100.0,17,1010.0 -2015,3,19,5,30,0,100.0,17,1010.0 -2015,3,19,6,0,0,100.0,17,1010.0 -2015,3,19,6,30,0,100.0,18,1010.0 -2015,3,19,7,0,4,100.0,19,1010.0 -2015,3,19,7,30,12,100.0,19,1010.0 -2015,3,19,8,0,71,98.83,20,1010.0 -2015,3,19,8,30,155,98.84,20,1010.0 -2015,3,19,9,0,84,96.27,21,1010.0 -2015,3,19,9,30,153,96.26,21,1010.0 -2015,3,19,10,0,128,91.79,22,1010.0 -2015,3,19,10,30,143,91.76,22,1010.0 -2015,3,19,11,0,370,86.77,23,1010.0 -2015,3,19,11,30,206,86.74,23,1010.0 -2015,3,19,12,0,512,81.5,24,1010.0 -2015,3,19,12,30,467,81.46000000000001,24,1010.0 -2015,3,19,13,0,862,75.87,25,1010.0 -2015,3,19,13,30,355,75.84,25,1010.0 -2015,3,19,14,0,461,74.62,25,1010.0 -2015,3,19,14,30,446,79.18,25,1010.0 -2015,3,19,15,0,400,78.46000000000001,25,1010.0 -2015,3,19,15,30,446,78.46000000000001,24,1010.0 -2015,3,19,16,0,361,79.73,24,1010.0 -2015,3,19,16,30,369,84.68,23,1010.0 -2015,3,19,17,0,149,91.74,22,1010.0 -2015,3,19,17,30,155,97.53,21,1010.0 -2015,3,19,18,0,60,100.0,20,1010.0 -2015,3,19,18,30,0,100.0,20,1010.0 -2015,3,19,19,0,0,98.17,20,1010.0 -2015,3,19,19,30,0,100.0,19,1010.0 -2015,3,19,20,0,0,100.0,19,1010.0 -2015,3,19,20,30,0,100.0,18,1010.0 -2015,3,19,21,0,0,100.0,18,1010.0 -2015,3,19,21,30,0,100.0,18,1010.0 -2015,3,19,22,0,0,100.0,18,1010.0 -2015,3,19,22,30,0,100.0,17,1010.0 -2015,3,19,23,0,0,100.0,17,1010.0 -2015,3,19,23,30,0,100.0,17,1010.0 -2015,3,20,0,0,0,100.0,17,1010.0 -2015,3,20,0,30,0,100.0,17,1010.0 -2015,3,20,1,0,0,100.0,17,1010.0 -2015,3,20,1,30,0,100.0,16,1010.0 -2015,3,20,2,0,0,100.0,16,1010.0 -2015,3,20,2,30,0,100.0,16,1010.0 -2015,3,20,3,0,0,100.0,17,1010.0 -2015,3,20,3,30,0,100.0,17,1010.0 -2015,3,20,4,0,0,100.0,17,1010.0 -2015,3,20,4,30,0,100.0,17,1010.0 -2015,3,20,5,0,0,100.0,17,1010.0 -2015,3,20,5,30,0,100.0,17,1010.0 -2015,3,20,6,0,0,99.56,18,1010.0 -2015,3,20,6,30,0,99.60000000000001,19,1010.0 -2015,3,20,7,0,25,100.0,20,1010.0 -2015,3,20,7,30,62,96.48,21,1010.0 -2015,3,20,8,0,102,90.25,22,1010.0 -2015,3,20,8,30,155,90.25,22,1010.0 -2015,3,20,9,0,199,85.61,23,1010.0 -2015,3,20,9,30,325,85.60000000000001,24,1010.0 -2015,3,20,10,0,373,80.48,25,1010.0 -2015,3,20,10,30,414,80.45,25,1010.0 -2015,3,20,11,0,236,76.24,25,1010.0 -2015,3,20,11,30,249,76.22,25,1010.0 -2015,3,20,12,0,254,76.24,26,1010.0 -2015,3,20,12,30,391,76.21000000000001,26,1010.0 -2015,3,20,13,0,385,76.17,26,1010.0 -2015,3,20,13,30,455,76.15,25,1010.0 -2015,3,20,14,0,282,76.49,25,1010.0 -2015,3,20,14,30,305,76.48,25,1010.0 -2015,3,20,15,0,394,77.45,25,1010.0 -2015,3,20,15,30,176,82.2,24,1010.0 -2015,3,20,16,0,354,82.79,24,1010.0 -2015,3,20,16,30,295,87.93,23,1010.0 -2015,3,20,17,0,180,89.43,23,1010.0 -2015,3,20,17,30,103,95.03,22,1010.0 -2015,3,20,18,0,39,97.60000000000001,21,1010.0 -2015,3,20,18,30,0,100.0,20,1010.0 -2015,3,20,19,0,0,100.0,20,1010.0 -2015,3,20,19,30,0,100.0,19,1010.0 -2015,3,20,20,0,0,100.0,19,1010.0 -2015,3,20,20,30,0,100.0,19,1010.0 -2015,3,20,21,0,0,100.0,19,1010.0 -2015,3,20,21,30,0,100.0,19,1010.0 -2015,3,20,22,0,0,100.0,19,1010.0 -2015,3,20,22,30,0,100.0,18,1010.0 -2015,3,20,23,0,0,100.0,18,1010.0 -2015,3,20,23,30,0,100.0,18,1010.0 -2015,3,21,0,0,0,100.0,18,1010.0 -2015,3,21,0,30,0,100.0,18,1010.0 -2015,3,21,1,0,0,100.0,19,1010.0 -2015,3,21,1,30,0,100.0,19,1010.0 -2015,3,21,2,0,0,99.93,19,1010.0 -2015,3,21,2,30,0,99.9,19,1010.0 -2015,3,21,3,0,0,99.53,19,1010.0 -2015,3,21,3,30,0,100.0,18,1010.0 -2015,3,21,4,0,0,100.0,18,1010.0 -2015,3,21,4,30,0,100.0,18,1010.0 -2015,3,21,5,0,0,100.0,18,1010.0 -2015,3,21,5,30,0,100.0,18,1010.0 -2015,3,21,6,0,0,100.0,18,1010.0 -2015,3,21,6,30,0,100.0,18,1010.0 -2015,3,21,7,0,4,99.91,19,1010.0 -2015,3,21,7,30,6,99.93,19,1010.0 -2015,3,21,8,0,24,100.0,19,1010.0 -2015,3,21,8,30,12,100.0,19,1010.0 -2015,3,21,9,0,25,98.63,20,1010.0 -2015,3,21,9,30,141,98.61,20,1010.0 -2015,3,21,10,0,144,99.68,20,1010.0 -2015,3,21,10,30,190,99.64,20,1010.0 -2015,3,21,11,0,66,94.91,21,1010.0 -2015,3,21,11,30,108,94.86,21,1010.0 -2015,3,21,12,0,168,96.17,21,1010.0 -2015,3,21,12,30,159,96.13,21,1010.0 -2015,3,21,13,0,109,97.74000000000001,21,1010.0 -2015,3,21,13,30,100,97.73,21,1010.0 -2015,3,21,14,0,201,92.09,22,1010.0 -2015,3,21,14,30,190,97.85000000000001,21,1010.0 -2015,3,21,15,0,168,97.78,21,1010.0 -2015,3,21,15,30,18,97.75,21,1010.0 -2015,3,21,16,0,68,97.82000000000001,21,1010.0 -2015,3,21,16,30,116,100.0,20,1010.0 -2015,3,21,17,0,43,100.0,20,1010.0 -2015,3,21,17,30,85,100.0,19,1010.0 -2015,3,21,18,0,34,100.0,19,1010.0 -2015,3,21,18,30,0,100.0,19,1010.0 -2015,3,21,19,0,0,100.0,19,1010.0 -2015,3,21,19,30,0,100.0,19,1010.0 -2015,3,21,20,0,0,100.0,19,1010.0 -2015,3,21,20,30,0,100.0,18,1010.0 -2015,3,21,21,0,0,100.0,18,1010.0 -2015,3,21,21,30,0,100.0,18,1010.0 -2015,3,21,22,0,0,100.0,18,1010.0 -2015,3,21,22,30,0,100.0,18,1010.0 -2015,3,21,23,0,0,100.0,18,1010.0 -2015,3,21,23,30,0,100.0,17,1010.0 -2015,3,22,0,0,0,100.0,17,1010.0 -2015,3,22,0,30,0,100.0,16,1010.0 -2015,3,22,1,0,0,100.0,16,1010.0 -2015,3,22,1,30,0,100.0,16,1010.0 -2015,3,22,2,0,0,100.0,16,1010.0 -2015,3,22,2,30,0,100.0,15,1010.0 -2015,3,22,3,0,0,100.0,15,1010.0 -2015,3,22,3,30,0,100.0,15,1010.0 -2015,3,22,4,0,0,100.0,15,1010.0 -2015,3,22,4,30,0,100.0,14,1010.0 -2015,3,22,5,0,0,100.0,14,1010.0 -2015,3,22,5,30,0,100.0,14,1010.0 -2015,3,22,6,0,0,100.0,14,1010.0 -2015,3,22,6,30,0,97.05,15,1010.0 -2015,3,22,7,0,80,95.0,16,1010.0 -2015,3,22,7,30,183,95.02,16,1010.0 -2015,3,22,8,0,293,92.77,17,1010.0 -2015,3,22,8,30,405,87.12,18,1010.0 -2015,3,22,9,0,509,83.4,19,1010.0 -2015,3,22,9,30,608,78.38,20,1010.0 -2015,3,22,10,0,692,75.15,21,1010.0 -2015,3,22,10,30,766,75.13,21,1010.0 -2015,3,22,11,0,823,72.46000000000001,22,1010.0 -2015,3,22,11,30,866,72.44,22,1010.0 -2015,3,22,12,0,896,73.75,23,1010.0 -2015,3,22,12,30,903,73.73,23,1010.0 -2015,3,22,13,0,891,69.86,23,1010.0 -2015,3,22,13,30,863,69.84,23,1010.0 -2015,3,22,14,0,817,69.48,23,1010.0 -2015,3,22,14,30,460,69.47,23,1010.0 -2015,3,22,15,0,419,68.46000000000001,23,1010.0 -2015,3,22,15,30,420,72.74,22,1010.0 -2015,3,22,16,0,488,71.97,22,1010.0 -2015,3,22,16,30,296,76.51,21,1010.0 -2015,3,22,17,0,272,83.38,21,1010.0 -2015,3,22,17,30,50,88.74,19,1010.0 -2015,3,22,18,0,66,93.64,18,1010.0 -2015,3,22,18,30,0,99.75,17,1010.0 -2015,3,22,19,0,0,95.68,17,1010.0 -2015,3,22,19,30,0,100.0,16,1010.0 -2015,3,22,20,0,0,98.57000000000001,16,1010.0 -2015,3,22,20,30,0,98.60000000000001,16,1010.0 -2015,3,22,21,0,0,95.58,16,1010.0 -2015,3,22,21,30,0,100.0,15,1010.0 -2015,3,22,22,0,0,99.24000000000001,15,1010.0 -2015,3,22,22,30,0,100.0,15,1010.0 -2015,3,22,23,0,0,100.0,15,1010.0 -2015,3,22,23,30,0,100.0,14,1010.0 -2015,3,23,0,0,0,100.0,14,1010.0 -2015,3,23,0,30,0,100.0,13,1010.0 -2015,3,23,1,0,0,100.0,13,1010.0 -2015,3,23,1,30,0,100.0,13,1010.0 -2015,3,23,2,0,0,100.0,13,1010.0 -2015,3,23,2,30,0,100.0,12,1010.0 -2015,3,23,3,0,0,100.0,12,1010.0 -2015,3,23,3,30,0,100.0,12,1010.0 -2015,3,23,4,0,0,100.0,12,1010.0 -2015,3,23,4,30,0,100.0,12,1010.0 -2015,3,23,5,0,0,100.0,12,1010.0 -2015,3,23,5,30,0,100.0,12,1010.0 -2015,3,23,6,0,0,100.0,12,1010.0 -2015,3,23,6,30,0,99.71000000000001,13,1010.0 -2015,3,23,7,0,87,95.72,14,1010.0 -2015,3,23,7,30,194,89.78,15,1010.0 -2015,3,23,8,0,309,87.17,16,1010.0 -2015,3,23,8,30,424,81.82000000000001,17,1010.0 -2015,3,23,9,0,534,78.32000000000001,18,1010.0 -2015,3,23,9,30,635,73.57000000000001,19,1010.0 -2015,3,23,10,0,725,70.12,20,1010.0 -2015,3,23,10,30,801,65.92,21,1010.0 -2015,3,23,11,0,861,63.43,22,1010.0 -2015,3,23,11,30,905,63.39,22,1010.0 -2015,3,23,12,0,933,61.02,23,1010.0 -2015,3,23,12,30,941,60.99,23,1010.0 -2015,3,23,13,0,931,62.2,24,1010.0 -2015,3,23,13,30,902,62.18,24,1010.0 -2015,3,23,14,0,856,58.42,24,1010.0 -2015,3,23,14,30,794,58.4,24,1010.0 -2015,3,23,15,0,716,58.15,24,1010.0 -2015,3,23,15,30,625,61.75,23,1010.0 -2015,3,23,16,0,524,62.910000000000004,23,1010.0 -2015,3,23,16,30,413,66.83,22,1010.0 -2015,3,23,17,0,299,71.58,22,1010.0 -2015,3,23,17,30,183,76.09,21,1010.0 -2015,3,23,18,0,77,74.10000000000001,20,1010.0 -2015,3,23,18,30,0,78.85000000000001,19,1010.0 -2015,3,23,19,0,0,80.87,18,1010.0 -2015,3,23,19,30,0,86.14,17,1010.0 -2015,3,23,20,0,0,91.85000000000001,17,1010.0 -2015,3,23,20,30,0,97.93,16,1010.0 -2015,3,23,21,0,0,97.76,15,1010.0 -2015,3,23,21,30,0,97.76,15,1010.0 -2015,3,23,22,0,0,98.63,15,1010.0 -2015,3,23,22,30,0,100.0,14,1010.0 -2015,3,23,23,0,0,100.0,14,1010.0 -2015,3,23,23,30,0,100.0,13,1010.0 -2015,3,24,0,0,0,100.0,13,1010.0 -2015,3,24,0,30,0,100.0,13,1010.0 -2015,3,24,1,0,0,100.0,13,1010.0 -2015,3,24,1,30,0,100.0,13,1010.0 -2015,3,24,2,0,0,100.0,13,1010.0 -2015,3,24,2,30,0,100.0,12,1010.0 -2015,3,24,3,0,0,100.0,12,1010.0 -2015,3,24,3,30,0,100.0,12,1010.0 -2015,3,24,4,0,0,100.0,12,1010.0 -2015,3,24,4,30,0,100.0,12,1010.0 -2015,3,24,5,0,0,100.0,12,1010.0 -2015,3,24,5,30,0,100.0,12,1010.0 -2015,3,24,6,0,0,100.0,13,1010.0 -2015,3,24,6,30,12,100.0,14,1010.0 -2015,3,24,7,0,93,96.87,16,1010.0 -2015,3,24,7,30,202,90.93,17,1010.0 -2015,3,24,8,0,319,87.71000000000001,18,1010.0 -2015,3,24,8,30,435,82.4,19,1010.0 -2015,3,24,9,0,544,77.51,20,1010.0 -2015,3,24,9,30,645,72.87,21,1010.0 -2015,3,24,10,0,733,69.69,22,1010.0 -2015,3,24,10,30,808,69.67,22,1010.0 -2015,3,24,11,0,867,67.24,23,1010.0 -2015,3,24,11,30,910,67.22,23,1010.0 -2015,3,24,12,0,936,68.96000000000001,24,1010.0 -2015,3,24,12,30,943,68.93,24,1010.0 -2015,3,24,13,0,930,66.14,24,1010.0 -2015,3,24,13,30,901,66.12,24,1010.0 -2015,3,24,14,0,853,66.77,24,1010.0 -2015,3,24,14,30,791,66.74,24,1010.0 -2015,3,24,15,0,710,66.9,24,1010.0 -2015,3,24,15,30,619,71.02,23,1010.0 -2015,3,24,16,0,518,71.52,23,1010.0 -2015,3,24,16,30,408,75.98,22,1010.0 -2015,3,24,17,0,294,78.84,22,1010.0 -2015,3,24,17,30,180,89.11,20,1010.0 -2015,3,24,18,0,77,91.06,19,1010.0 -2015,3,24,18,30,0,96.94,18,1010.0 -2015,3,24,19,0,0,93.38,18,1010.0 -2015,3,24,19,30,0,99.47,17,1010.0 -2015,3,24,20,0,0,98.22,17,1010.0 -2015,3,24,20,30,0,100.0,16,1010.0 -2015,3,24,21,0,0,100.0,16,1010.0 -2015,3,24,21,30,0,100.0,16,1010.0 -2015,3,24,22,0,0,100.0,16,1010.0 -2015,3,24,22,30,0,100.0,15,1010.0 -2015,3,24,23,0,0,100.0,15,1010.0 -2015,3,24,23,30,0,100.0,15,1010.0 -2015,3,25,0,0,0,100.0,15,1010.0 -2015,3,25,0,30,0,100.0,14,1010.0 -2015,3,25,1,0,0,100.0,14,1010.0 -2015,3,25,1,30,0,100.0,14,1010.0 -2015,3,25,2,0,0,100.0,14,1010.0 -2015,3,25,2,30,0,100.0,14,1010.0 -2015,3,25,3,0,0,100.0,14,1010.0 -2015,3,25,3,30,0,100.0,13,1010.0 -2015,3,25,4,0,0,100.0,13,1010.0 -2015,3,25,4,30,0,100.0,13,1010.0 -2015,3,25,5,0,0,100.0,13,1010.0 -2015,3,25,5,30,0,100.0,13,1010.0 -2015,3,25,6,0,0,100.0,14,1010.0 -2015,3,25,6,30,14,100.0,15,1010.0 -2015,3,25,7,0,97,100.0,17,1010.0 -2015,3,25,7,30,207,94.8,18,1010.0 -2015,3,25,8,0,323,91.71000000000001,20,1010.0 -2015,3,25,8,30,310,86.21000000000001,20,1010.0 -2015,3,25,9,0,307,79.10000000000001,21,1010.0 -2015,3,25,9,30,489,79.09,21,1010.0 -2015,3,25,10,0,621,73.93,22,1010.0 -2015,3,25,10,30,653,73.9,22,1010.0 -2015,3,25,11,0,756,69.55,23,1010.0 -2015,3,25,11,30,760,69.52,23,1010.0 -2015,3,25,12,0,827,65.54,24,1010.0 -2015,3,25,12,30,821,65.51,24,1010.0 -2015,3,25,13,0,810,65.26,24,1010.0 -2015,3,25,13,30,896,65.23,24,1010.0 -2015,3,25,14,0,739,64.71000000000001,24,1010.0 -2015,3,25,14,30,714,68.69,23,1010.0 -2015,3,25,15,0,642,67.97,23,1010.0 -2015,3,25,15,30,571,72.2,22,1010.0 -2015,3,25,16,0,438,71.7,22,1010.0 -2015,3,25,16,30,319,76.2,21,1010.0 -2015,3,25,17,0,278,78.17,21,1010.0 -2015,3,25,17,30,145,88.44,20,1010.0 -2015,3,25,18,0,61,95.51,19,1010.0 -2015,3,25,18,30,0,95.51,18,1010.0 -2015,3,25,19,0,0,95.60000000000001,18,1010.0 -2015,3,25,19,30,0,100.0,17,1010.0 -2015,3,25,20,0,0,100.0,17,1010.0 -2015,3,25,20,30,0,100.0,17,1010.0 -2015,3,25,21,0,0,100.0,17,1010.0 -2015,3,25,21,30,0,100.0,17,1010.0 -2015,3,25,22,0,0,100.0,17,1010.0 -2015,3,25,22,30,0,100.0,17,1010.0 -2015,3,25,23,0,0,100.0,17,1010.0 -2015,3,25,23,30,0,100.0,16,1010.0 -2015,3,26,0,0,0,100.0,16,1010.0 -2015,3,26,0,30,0,100.0,16,1010.0 -2015,3,26,1,0,0,100.0,16,1010.0 -2015,3,26,1,30,0,100.0,16,1000.0 -2015,3,26,2,0,0,100.0,16,1000.0 -2015,3,26,2,30,0,100.0,16,1000.0 -2015,3,26,3,0,0,100.0,16,1000.0 -2015,3,26,3,30,0,100.0,16,1010.0 -2015,3,26,4,0,0,100.0,17,1010.0 -2015,3,26,4,30,0,100.0,17,1010.0 -2015,3,26,5,0,0,100.0,17,1010.0 -2015,3,26,5,30,0,100.0,17,1010.0 -2015,3,26,6,0,0,100.0,18,1010.0 -2015,3,26,6,30,0,100.0,18,1010.0 -2015,3,26,7,0,2,99.95,18,1010.0 -2015,3,26,7,30,36,100.0,17,1010.0 -2015,3,26,8,0,69,96.09,17,1010.0 -2015,3,26,8,30,21,100.0,16,1010.0 -2015,3,26,9,0,30,88.51,16,1010.0 -2015,3,26,9,30,186,88.53,16,1010.0 -2015,3,26,10,0,158,80.45,16,1010.0 -2015,3,26,10,30,508,75.51,17,1010.0 -2015,3,26,11,0,406,69.52,18,1010.0 -2015,3,26,11,30,581,69.51,18,1010.0 -2015,3,26,12,0,730,65.73,19,1010.0 -2015,3,26,12,30,917,65.71000000000001,19,1010.0 -2015,3,26,13,0,906,62.1,20,1010.0 -2015,3,26,13,30,878,62.08,20,1010.0 -2015,3,26,14,0,830,61.940000000000005,20,1010.0 -2015,3,26,14,30,768,65.88,19,1010.0 -2015,3,26,15,0,692,64.93,19,1010.0 -2015,3,26,15,30,516,69.12,18,1010.0 -2015,3,26,16,0,366,67.68,18,1010.0 -2015,3,26,16,30,230,72.11,17,1010.0 -2015,3,26,17,0,153,72.28,17,1010.0 -2015,3,26,17,30,96,77.06,16,1010.0 -2015,3,26,18,0,41,82.97,15,1010.0 -2015,3,26,18,30,0,88.55,14,1010.0 -2015,3,26,19,0,0,87.83,14,1010.0 -2015,3,26,19,30,0,93.76,14,1010.0 -2015,3,26,20,0,0,91.0,14,1010.0 -2015,3,26,20,30,0,97.19,13,1010.0 -2015,3,26,21,0,0,93.67,13,1010.0 -2015,3,26,21,30,0,93.69,12,1010.0 -2015,3,26,22,0,0,89.61,12,1010.0 -2015,3,26,22,30,0,95.74000000000001,11,1010.0 -2015,3,26,23,0,0,90.24,11,1010.0 -2015,3,26,23,30,0,96.45,10,1010.0 -2015,3,27,0,0,0,90.99,10,1010.0 -2015,3,27,0,30,0,97.3,9,1010.0 -2015,3,27,1,0,0,92.14,9,1010.0 -2015,3,27,1,30,0,98.57000000000001,8,1010.0 -2015,3,27,2,0,0,93.86,8,1010.0 -2015,3,27,2,30,0,100.0,7,1010.0 -2015,3,27,3,0,0,96.32000000000001,7,1010.0 -2015,3,27,3,30,0,96.32000000000001,7,1010.0 -2015,3,27,4,0,0,93.24,7,1010.0 -2015,3,27,4,30,0,93.25,7,1010.0 -2015,3,27,5,0,0,90.68,7,1010.0 -2015,3,27,5,30,0,90.69,7,1010.0 -2015,3,27,6,0,0,92.07000000000001,7,1010.0 -2015,3,27,6,30,19,86.04,8,1010.0 -2015,3,27,7,0,109,79.59,10,1020.0 -2015,3,27,7,30,222,74.49,11,1020.0 -2015,3,27,8,0,339,69.45,13,1020.0 -2015,3,27,8,30,456,65.09,14,1020.0 -2015,3,27,9,0,567,52.410000000000004,16,1020.0 -2015,3,27,9,30,668,49.19,17,1020.0 -2015,3,27,10,0,757,47.62,18,1020.0 -2015,3,27,10,30,832,44.730000000000004,19,1020.0 -2015,3,27,11,0,892,44.92,20,1020.0 -2015,3,27,11,30,935,44.910000000000004,20,1020.0 -2015,3,27,12,0,960,44.9,21,1010.0 -2015,3,27,12,30,966,44.88,21,1010.0 -2015,3,27,13,0,953,44.82,22,1010.0 -2015,3,27,13,30,922,44.800000000000004,22,1010.0 -2015,3,27,14,0,874,46.58,22,1010.0 -2015,3,27,14,30,809,46.56,22,1010.0 -2015,3,27,15,0,730,47.26,23,1010.0 -2015,3,27,15,30,638,47.25,22,1010.0 -2015,3,27,16,0,534,52.29,22,1010.0 -2015,3,27,16,30,423,55.58,21,1010.0 -2015,3,27,17,0,307,73.58,20,1010.0 -2015,3,27,17,30,191,83.32000000000001,18,1010.0 -2015,3,27,18,0,83,77.79,17,1010.0 -2015,3,27,18,30,0,82.89,16,1010.0 -2015,3,27,19,0,0,78.15,16,1010.0 -2015,3,27,19,30,0,83.33,15,1010.0 -2015,3,27,20,0,0,82.87,15,1010.0 -2015,3,27,20,30,0,88.4,15,1010.0 -2015,3,27,21,0,0,87.65,15,1010.0 -2015,3,27,21,30,0,87.67,14,1010.0 -2015,3,27,22,0,0,86.53,14,1010.0 -2015,3,27,22,30,0,92.35000000000001,13,1010.0 -2015,3,27,23,0,0,91.58,13,1010.0 -2015,3,27,23,30,0,97.79,12,1020.0 -2015,3,28,0,0,0,97.83,12,1020.0 -2015,3,28,0,30,0,97.83,12,1020.0 -2015,3,28,1,0,0,97.99000000000001,12,1020.0 -2015,3,28,1,30,0,100.0,11,1020.0 -2015,3,28,2,0,0,100.0,11,1020.0 -2015,3,28,2,30,0,100.0,11,1010.0 -2015,3,28,3,0,0,100.0,11,1010.0 -2015,3,28,3,30,0,100.0,11,1010.0 -2015,3,28,4,0,0,100.0,11,1010.0 -2015,3,28,4,30,0,100.0,11,1010.0 -2015,3,28,5,0,0,100.0,11,1010.0 -2015,3,28,5,30,0,100.0,11,1010.0 -2015,3,28,6,0,0,100.0,11,1020.0 -2015,3,28,6,30,21,97.63,12,1020.0 -2015,3,28,7,0,109,91.64,14,1020.0 -2015,3,28,7,30,219,85.93,15,1020.0 -2015,3,28,8,0,337,77.25,17,1020.0 -2015,3,28,8,30,452,72.54,18,1020.0 -2015,3,28,9,0,563,68.13,20,1020.0 -2015,3,28,9,30,663,64.03,20,1020.0 -2015,3,28,10,0,753,60.04,21,1020.0 -2015,3,28,10,30,827,56.47,22,1020.0 -2015,3,28,11,0,887,53.43,23,1010.0 -2015,3,28,11,30,930,53.4,23,1010.0 -2015,3,28,12,0,954,50.77,24,1010.0 -2015,3,28,12,30,961,50.75,24,1010.0 -2015,3,28,13,0,948,51.26,24,1010.0 -2015,3,28,13,30,918,51.24,24,1010.0 -2015,3,28,14,0,871,51.370000000000005,24,1010.0 -2015,3,28,14,30,808,51.36,24,1010.0 -2015,3,28,15,0,729,51.410000000000004,24,1010.0 -2015,3,28,15,30,638,54.59,23,1010.0 -2015,3,28,16,0,537,57.72,23,1010.0 -2015,3,28,16,30,427,61.32,22,1010.0 -2015,3,28,17,0,312,70.92,21,1010.0 -2015,3,28,17,30,196,80.25,19,1010.0 -2015,3,28,18,0,88,83.16,18,1010.0 -2015,3,28,18,30,0,88.58,17,1010.0 -2015,3,28,19,0,0,88.25,17,1010.0 -2015,3,28,19,30,0,94.05,16,1010.0 -2015,3,28,20,0,0,95.89,16,1010.0 -2015,3,28,20,30,0,100.0,15,1010.0 -2015,3,28,21,0,0,100.0,15,1010.0 -2015,3,28,21,30,0,100.0,15,1010.0 -2015,3,28,22,0,0,100.0,15,1010.0 -2015,3,28,22,30,0,100.0,14,1010.0 -2015,3,28,23,0,0,100.0,14,1010.0 -2015,3,28,23,30,0,100.0,14,1010.0 -2015,3,29,0,0,0,100.0,14,1010.0 -2015,3,29,0,30,0,100.0,14,1010.0 -2015,3,29,1,0,0,100.0,14,1010.0 -2015,3,29,1,30,0,100.0,14,1010.0 -2015,3,29,2,0,0,100.0,14,1010.0 -2015,3,29,2,30,0,100.0,14,1010.0 -2015,3,29,3,0,0,100.0,14,1010.0 -2015,3,29,3,30,0,100.0,13,1010.0 -2015,3,29,4,0,0,100.0,13,1010.0 -2015,3,29,4,30,0,100.0,13,1010.0 -2015,3,29,5,0,0,100.0,13,1010.0 -2015,3,29,5,30,0,100.0,13,1010.0 -2015,3,29,6,0,0,100.0,14,1010.0 -2015,3,29,6,30,22,100.0,16,1010.0 -2015,3,29,7,0,27,98.05,18,1020.0 -2015,3,29,7,30,218,92.14,19,1020.0 -2015,3,29,8,0,334,90.02,20,1020.0 -2015,3,29,8,30,277,84.66,21,1020.0 -2015,3,29,9,0,344,79.41,22,1020.0 -2015,3,29,9,30,406,79.4,22,1020.0 -2015,3,29,10,0,747,74.82000000000001,23,1020.0 -2015,3,29,10,30,821,74.8,23,1020.0 -2015,3,29,11,0,880,70.37,24,1010.0 -2015,3,29,11,30,923,70.35000000000001,24,1010.0 -2015,3,29,12,0,949,65.87,25,1010.0 -2015,3,29,12,30,956,65.85,25,1010.0 -2015,3,29,13,0,944,65.68,25,1010.0 -2015,3,29,13,30,916,65.67,25,1010.0 -2015,3,29,14,0,869,65.36,25,1010.0 -2015,3,29,14,30,807,69.36,24,1010.0 -2015,3,29,15,0,728,68.97,24,1010.0 -2015,3,29,15,30,637,73.24,23,1010.0 -2015,3,29,16,0,534,73.08,23,1010.0 -2015,3,29,16,30,424,77.64,22,1010.0 -2015,3,29,17,0,308,78.31,22,1010.0 -2015,3,29,17,30,192,83.24,21,1010.0 -2015,3,29,18,0,85,89.37,20,1010.0 -2015,3,29,18,30,0,95.09,19,1010.0 -2015,3,29,19,0,0,100.0,19,1010.0 -2015,3,29,19,30,0,100.0,18,1010.0 -2015,3,29,20,0,0,100.0,18,1010.0 -2015,3,29,20,30,0,100.0,18,1010.0 -2015,3,29,21,0,0,100.0,18,1010.0 -2015,3,29,21,30,0,100.0,17,1010.0 -2015,3,29,22,0,0,100.0,17,1010.0 -2015,3,29,22,30,0,100.0,17,1010.0 -2015,3,29,23,0,0,100.0,17,1010.0 -2015,3,29,23,30,0,100.0,17,1010.0 -2015,3,30,0,0,0,100.0,17,1010.0 -2015,3,30,0,30,0,100.0,17,1010.0 -2015,3,30,1,0,0,100.0,17,1010.0 -2015,3,30,1,30,0,100.0,17,1010.0 -2015,3,30,2,0,0,100.0,17,1010.0 -2015,3,30,2,30,0,100.0,17,1010.0 -2015,3,30,3,0,0,100.0,17,1010.0 -2015,3,30,3,30,0,100.0,16,1010.0 -2015,3,30,4,0,0,100.0,16,1010.0 -2015,3,30,4,30,0,100.0,16,1010.0 -2015,3,30,5,0,0,100.0,16,1010.0 -2015,3,30,5,30,0,100.0,16,1020.0 -2015,3,30,6,0,0,100.0,16,1020.0 -2015,3,30,6,30,17,100.0,17,1020.0 -2015,3,30,7,0,82,96.66,19,1020.0 -2015,3,30,7,30,165,90.87,20,1020.0 -2015,3,30,8,0,320,84.93,21,1020.0 -2015,3,30,8,30,432,84.93,21,1020.0 -2015,3,30,9,0,538,78.35000000000001,22,1020.0 -2015,3,30,9,30,636,78.34,22,1020.0 -2015,3,30,10,0,724,74.14,23,1020.0 -2015,3,30,10,30,797,74.12,23,1020.0 -2015,3,30,11,0,860,70.59,24,1020.0 -2015,3,30,11,30,901,70.56,24,1020.0 -2015,3,30,12,0,932,66.88,25,1020.0 -2015,3,30,12,30,938,66.84,25,1010.0 -2015,3,30,13,0,927,67.16,25,1010.0 -2015,3,30,13,30,898,67.13,25,1010.0 -2015,3,30,14,0,852,66.97,25,1010.0 -2015,3,30,14,30,789,66.95,25,1010.0 -2015,3,30,15,0,701,67.0,25,1010.0 -2015,3,30,15,30,611,71.10000000000001,24,1010.0 -2015,3,30,16,0,509,71.78,24,1010.0 -2015,3,30,16,30,402,76.22,23,1010.0 -2015,3,30,17,0,290,78.75,23,1010.0 -2015,3,30,17,30,180,83.66,22,1010.0 -2015,3,30,18,0,79,87.69,21,1010.0 -2015,3,30,18,30,7,93.25,20,1010.0 -2015,3,30,19,0,0,91.53,20,1010.0 -2015,3,30,19,30,0,97.38,19,1010.0 -2015,3,30,20,0,0,97.49000000000001,19,1010.0 -2015,3,30,20,30,0,97.49000000000001,19,1010.0 -2015,3,30,21,0,0,97.87,19,1010.0 -2015,3,30,21,30,0,100.0,18,1010.0 -2015,3,30,22,0,0,100.0,18,1010.0 -2015,3,30,22,30,0,100.0,18,1010.0 -2015,3,30,23,0,0,100.0,18,1010.0 -2015,3,30,23,30,0,100.0,18,1010.0 -2015,3,31,0,0,0,100.0,18,1010.0 -2015,3,31,0,30,0,100.0,17,1010.0 -2015,3,31,1,0,0,100.0,17,1010.0 -2015,3,31,1,30,0,100.0,17,1010.0 -2015,3,31,2,0,0,100.0,17,1010.0 -2015,3,31,2,30,0,100.0,17,1010.0 -2015,3,31,3,0,0,100.0,17,1010.0 -2015,3,31,3,30,0,100.0,16,1010.0 -2015,3,31,4,0,0,100.0,16,1010.0 -2015,3,31,4,30,0,100.0,16,1010.0 -2015,3,31,5,0,0,100.0,16,1010.0 -2015,3,31,5,30,0,100.0,16,1010.0 -2015,3,31,6,0,0,100.0,17,1010.0 -2015,3,31,6,30,25,100.0,18,1010.0 -2015,3,31,7,0,112,98.43,19,1010.0 -2015,3,31,7,30,220,92.53,20,1010.0 -2015,3,31,8,0,334,85.15,21,1010.0 -2015,3,31,8,30,447,85.15,21,1010.0 -2015,3,31,9,0,556,79.02,22,1010.0 -2015,3,31,9,30,255,74.37,23,1010.0 -2015,3,31,10,0,289,70.61,24,1010.0 -2015,3,31,10,30,674,70.58,24,1010.0 -2015,3,31,11,0,722,67.2,25,1010.0 -2015,3,31,11,30,756,67.18,25,1010.0 -2015,3,31,12,0,779,67.52,25,1010.0 -2015,3,31,12,30,948,67.49,25,1010.0 -2015,3,31,13,0,935,63.6,26,1010.0 -2015,3,31,13,30,905,67.45,26,1010.0 -2015,3,31,14,0,856,67.14,26,1010.0 -2015,3,31,14,30,662,67.12,25,1010.0 -2015,3,31,15,0,595,67.0,25,1010.0 -2015,3,31,15,30,513,71.11,24,1010.0 -2015,3,31,16,0,402,78.31,23,1010.0 -2015,3,31,16,30,327,83.2,22,1010.0 -2015,3,31,17,0,150,85.58,22,1010.0 -2015,3,31,17,30,108,90.96000000000001,21,1010.0 -2015,3,31,18,0,48,90.14,21,1010.0 -2015,3,31,18,30,5,95.84,20,1010.0 -2015,3,31,19,0,0,96.66,20,1010.0 -2015,3,31,19,30,0,96.66,20,1010.0 -2015,3,31,20,0,0,97.73,20,1010.0 -2015,3,31,20,30,0,100.0,19,1010.0 -2015,3,31,21,0,0,100.0,19,1010.0 -2015,3,31,21,30,0,100.0,19,1010.0 -2015,3,31,22,0,0,100.0,19,1010.0 -2015,3,31,22,30,0,100.0,19,1010.0 -2015,3,31,23,0,0,100.0,19,1010.0 -2015,3,31,23,30,0,100.0,19,1010.0 -2015,4,1,0,0,0,100.0,19,1010.0 -2015,4,1,0,30,0,100.0,18,1010.0 -2015,4,1,1,0,0,100.0,18,1010.0 -2015,4,1,1,30,0,100.0,18,1010.0 -2015,4,1,2,0,0,100.0,18,1010.0 -2015,4,1,2,30,0,100.0,18,1010.0 -2015,4,1,3,0,0,100.0,18,1010.0 -2015,4,1,3,30,0,100.0,17,1010.0 -2015,4,1,4,0,0,100.0,17,1010.0 -2015,4,1,4,30,0,100.0,17,1010.0 -2015,4,1,5,0,0,100.0,17,1010.0 -2015,4,1,5,30,0,100.0,17,1010.0 -2015,4,1,6,0,0,100.0,18,1010.0 -2015,4,1,6,30,24,100.0,19,1010.0 -2015,4,1,7,0,108,96.02,21,1010.0 -2015,4,1,7,30,113,96.04,21,1010.0 -2015,4,1,8,0,194,91.97,22,1010.0 -2015,4,1,8,30,395,91.98,22,1010.0 -2015,4,1,9,0,381,86.22,23,1010.0 -2015,4,1,9,30,369,86.21000000000001,23,1010.0 -2015,4,1,10,0,491,80.58,24,1010.0 -2015,4,1,10,30,619,80.55,24,1010.0 -2015,4,1,11,0,452,79.49,24,1010.0 -2015,4,1,11,30,395,79.47,24,1010.0 -2015,4,1,12,0,144,78.86,24,1010.0 -2015,4,1,12,30,204,78.83,24,1010.0 -2015,4,1,13,0,408,79.37,24,1010.0 -2015,4,1,13,30,497,79.35000000000001,24,1010.0 -2015,4,1,14,0,389,80.14,24,1010.0 -2015,4,1,14,30,548,85.07000000000001,24,1010.0 -2015,4,1,15,0,223,85.65,24,1010.0 -2015,4,1,15,30,232,85.63,23,1010.0 -2015,4,1,16,0,229,86.19,23,1010.0 -2015,4,1,16,30,291,91.57000000000001,22,1010.0 -2015,4,1,17,0,67,92.69,22,1010.0 -2015,4,1,17,30,98,98.54,21,1010.0 -2015,4,1,18,0,43,98.4,21,1010.0 -2015,4,1,18,30,4,100.0,20,1010.0 -2015,4,1,19,0,0,100.0,20,1010.0 -2015,4,1,19,30,0,100.0,20,1010.0 -2015,4,1,20,0,0,100.0,20,1010.0 -2015,4,1,20,30,0,100.0,20,1010.0 -2015,4,1,21,0,0,100.0,20,1010.0 -2015,4,1,21,30,0,100.0,20,1010.0 -2015,4,1,22,0,0,100.0,20,1010.0 -2015,4,1,22,30,0,100.0,19,1010.0 -2015,4,1,23,0,0,100.0,19,1010.0 -2015,4,1,23,30,0,100.0,19,1010.0 -2015,4,2,0,0,0,100.0,19,1010.0 -2015,4,2,0,30,0,100.0,19,1010.0 -2015,4,2,1,0,0,100.0,19,1010.0 -2015,4,2,1,30,0,100.0,19,1010.0 -2015,4,2,2,0,0,100.0,19,1010.0 -2015,4,2,2,30,0,100.0,19,1010.0 -2015,4,2,3,0,0,100.0,19,1010.0 -2015,4,2,3,30,0,100.0,19,1010.0 -2015,4,2,4,0,0,100.0,19,1010.0 -2015,4,2,4,30,0,100.0,19,1010.0 -2015,4,2,5,0,0,100.0,19,1010.0 -2015,4,2,5,30,0,100.0,19,1010.0 -2015,4,2,6,0,0,100.0,20,1010.0 -2015,4,2,6,30,5,100.0,20,1010.0 -2015,4,2,7,0,24,100.0,21,1010.0 -2015,4,2,7,30,74,97.0,22,1010.0 -2015,4,2,8,0,116,94.43,23,1010.0 -2015,4,2,8,30,167,94.45,24,1010.0 -2015,4,2,9,0,26,87.2,25,1010.0 -2015,4,2,9,30,90,87.19,25,1010.0 -2015,4,2,10,0,367,81.31,26,1010.0 -2015,4,2,10,30,789,81.29,26,1010.0 -2015,4,2,11,0,469,76.24,26,1010.0 -2015,4,2,11,30,492,76.22,26,1010.0 -2015,4,2,12,0,503,75.87,26,1010.0 -2015,4,2,12,30,506,75.85000000000001,26,1010.0 -2015,4,2,13,0,500,74.96000000000001,26,1010.0 -2015,4,2,13,30,873,74.95,26,1010.0 -2015,4,2,14,0,828,73.55,26,1010.0 -2015,4,2,14,30,767,73.53,26,1010.0 -2015,4,2,15,0,685,71.82000000000001,26,1010.0 -2015,4,2,15,30,597,76.19,25,1010.0 -2015,4,2,16,0,504,74.51,25,1010.0 -2015,4,2,16,30,398,79.08,24,1010.0 -2015,4,2,17,0,291,83.44,24,1010.0 -2015,4,2,17,30,182,88.65,22,1010.0 -2015,4,2,18,0,82,94.58,21,1010.0 -2015,4,2,18,30,9,100.0,20,1010.0 -2015,4,2,19,0,0,100.0,20,1010.0 -2015,4,2,19,30,0,100.0,20,1010.0 -2015,4,2,20,0,0,100.0,20,1010.0 -2015,4,2,20,30,0,100.0,19,1010.0 -2015,4,2,21,0,0,100.0,19,1010.0 -2015,4,2,21,30,0,100.0,19,1010.0 -2015,4,2,22,0,0,100.0,20,1010.0 -2015,4,2,22,30,0,100.0,20,1010.0 -2015,4,2,23,0,0,100.0,20,1010.0 -2015,4,2,23,30,0,100.0,20,1010.0 -2015,4,3,0,0,0,100.0,20,1010.0 -2015,4,3,0,30,0,100.0,20,1010.0 -2015,4,3,1,0,0,100.0,21,1010.0 -2015,4,3,1,30,0,100.0,21,1010.0 -2015,4,3,2,0,0,100.0,21,1010.0 -2015,4,3,2,30,0,100.0,21,1010.0 -2015,4,3,3,0,0,100.0,21,1010.0 -2015,4,3,3,30,0,100.0,20,1010.0 -2015,4,3,4,0,0,100.0,20,1010.0 -2015,4,3,4,30,0,100.0,20,1010.0 -2015,4,3,5,0,0,100.0,20,1010.0 -2015,4,3,5,30,0,100.0,20,1010.0 -2015,4,3,6,0,0,100.0,21,1010.0 -2015,4,3,6,30,32,100.0,21,1010.0 -2015,4,3,7,0,7,99.13,22,1010.0 -2015,4,3,7,30,40,93.32000000000001,23,1010.0 -2015,4,3,8,0,87,89.41,24,1010.0 -2015,4,3,8,30,140,89.42,24,1010.0 -2015,4,3,9,0,173,84.4,25,1010.0 -2015,4,3,9,30,297,84.4,25,1010.0 -2015,4,3,10,0,232,80.19,26,1010.0 -2015,4,3,10,30,287,80.19,26,1010.0 -2015,4,3,11,0,537,76.11,27,1010.0 -2015,4,3,11,30,246,76.10000000000001,27,1010.0 -2015,4,3,12,0,242,76.4,27,1010.0 -2015,4,3,12,30,251,76.38,27,1010.0 -2015,4,3,13,0,317,71.97,28,1010.0 -2015,4,3,13,30,169,76.26,27,1010.0 -2015,4,3,14,0,481,76.04,27,1010.0 -2015,4,3,14,30,332,80.63,26,1010.0 -2015,4,3,15,0,680,81.53,26,1010.0 -2015,4,3,15,30,550,86.5,25,1010.0 -2015,4,3,16,0,386,87.8,25,1010.0 -2015,4,3,16,30,120,93.21000000000001,24,1010.0 -2015,4,3,17,0,220,93.62,24,1010.0 -2015,4,3,17,30,175,99.44,23,1010.0 -2015,4,3,18,0,77,96.97,23,1010.0 -2015,4,3,18,30,8,100.0,22,1010.0 -2015,4,3,19,0,0,100.0,22,1010.0 -2015,4,3,19,30,0,100.0,22,1010.0 -2015,4,3,20,0,0,96.85000000000001,22,1010.0 -2015,4,3,20,30,0,100.0,21,1010.0 -2015,4,3,21,0,0,98.93,21,1010.0 -2015,4,3,21,30,0,100.0,20,1010.0 -2015,4,3,22,0,0,99.32000000000001,20,1010.0 -2015,4,3,22,30,0,99.34,20,1010.0 -2015,4,3,23,0,0,91.59,20,1010.0 -2015,4,3,23,30,0,97.45,19,1010.0 -2015,4,4,0,0,0,89.17,19,1010.0 -2015,4,4,0,30,0,94.92,18,1010.0 -2015,4,4,1,0,0,87.13,18,1010.0 -2015,4,4,1,30,0,92.79,17,1010.0 -2015,4,4,2,0,0,86.89,17,1010.0 -2015,4,4,2,30,0,86.9,17,1010.0 -2015,4,4,3,0,0,83.67,17,1010.0 -2015,4,4,3,30,0,89.16,16,1010.0 -2015,4,4,4,0,0,86.9,16,1010.0 -2015,4,4,4,30,0,86.92,16,1020.0 -2015,4,4,5,0,0,85.17,16,1020.0 -2015,4,4,5,30,0,90.82000000000001,16,1020.0 -2015,4,4,6,0,0,88.55,16,1020.0 -2015,4,4,6,30,16,88.58,16,1020.0 -2015,4,4,7,0,60,80.22,16,1020.0 -2015,4,4,7,30,73,80.23,16,1020.0 -2015,4,4,8,0,270,72.64,17,1020.0 -2015,4,4,8,30,297,72.69,17,1020.0 -2015,4,4,9,0,345,72.06,17,1020.0 -2015,4,4,9,30,242,72.04,17,1020.0 -2015,4,4,10,0,295,71.9,17,1020.0 -2015,4,4,10,30,324,71.92,17,1020.0 -2015,4,4,11,0,360,73.08,17,1020.0 -2015,4,4,11,30,377,73.07000000000001,17,1020.0 -2015,4,4,12,0,425,73.65,17,1020.0 -2015,4,4,12,30,428,73.60000000000001,17,1020.0 -2015,4,4,13,0,654,74.33,17,1020.0 -2015,4,4,13,30,867,69.78,18,1020.0 -2015,4,4,14,0,824,67.56,19,1020.0 -2015,4,4,14,30,763,67.55,19,1020.0 -2015,4,4,15,0,679,68.86,19,1020.0 -2015,4,4,15,30,592,68.85000000000001,19,1020.0 -2015,4,4,16,0,496,69.45,19,1020.0 -2015,4,4,16,30,295,69.45,19,1020.0 -2015,4,4,17,0,285,72.58,19,1020.0 -2015,4,4,17,30,179,77.25,18,1020.0 -2015,4,4,18,0,81,86.57000000000001,17,1020.0 -2015,4,4,18,30,10,92.22,16,1020.0 -2015,4,4,19,0,0,89.33,16,1020.0 -2015,4,4,19,30,0,89.32000000000001,16,1020.0 -2015,4,4,20,0,0,88.7,16,1020.0 -2015,4,4,20,30,0,88.7,16,1020.0 -2015,4,4,21,0,0,88.22,16,1020.0 -2015,4,4,21,30,0,94.03,15,1020.0 -2015,4,4,22,0,0,93.39,15,1020.0 -2015,4,4,22,30,0,93.36,15,1010.0 -2015,4,4,23,0,0,92.92,15,1010.0 -2015,4,4,23,30,0,92.88,15,1010.0 -2015,4,5,0,0,0,92.74,15,1010.0 -2015,4,5,0,30,0,92.71000000000001,15,1010.0 -2015,4,5,1,0,0,93.21000000000001,15,1010.0 -2015,4,5,1,30,0,93.19,15,1010.0 -2015,4,5,2,0,0,93.65,15,1010.0 -2015,4,5,2,30,0,99.83,15,1010.0 -2015,4,5,3,0,0,99.63,15,1010.0 -2015,4,5,3,30,0,99.59,14,1010.0 -2015,4,5,4,0,0,99.13,14,1010.0 -2015,4,5,4,30,0,99.12,14,1010.0 -2015,4,5,5,0,0,100.0,14,1010.0 -2015,4,5,5,30,0,100.0,14,1010.0 -2015,4,5,6,0,0,97.68,15,1010.0 -2015,4,5,6,30,3,97.69,15,1010.0 -2015,4,5,7,0,11,97.37,16,1010.0 -2015,4,5,7,30,8,97.37,16,1010.0 -2015,4,5,8,0,12,98.64,17,1010.0 -2015,4,5,8,30,66,92.64,18,1010.0 -2015,4,5,9,0,98,94.93,19,1010.0 -2015,4,5,9,30,115,89.22,20,1010.0 -2015,4,5,10,0,179,89.83,21,1010.0 -2015,4,5,10,30,101,89.79,21,1010.0 -2015,4,5,11,0,108,88.58,22,1010.0 -2015,4,5,11,30,245,88.53,22,1010.0 -2015,4,5,12,0,197,86.31,23,1010.0 -2015,4,5,12,30,405,86.25,23,1010.0 -2015,4,5,13,0,411,88.54,23,1010.0 -2015,4,5,13,30,382,88.49,23,1010.0 -2015,4,5,14,0,352,90.0,23,1010.0 -2015,4,5,14,30,425,89.96000000000001,23,1010.0 -2015,4,5,15,0,376,90.96000000000001,23,1010.0 -2015,4,5,15,30,304,90.95,23,1010.0 -2015,4,5,16,0,304,91.92,23,1010.0 -2015,4,5,16,30,37,97.66,22,1010.0 -2015,4,5,17,0,120,98.2,22,1010.0 -2015,4,5,17,30,163,100.0,21,1010.0 -2015,4,5,18,0,77,100.0,21,1010.0 -2015,4,5,18,30,11,100.0,20,1010.0 -2015,4,5,19,0,0,100.0,20,1010.0 -2015,4,5,19,30,0,100.0,20,1010.0 -2015,4,5,20,0,0,100.0,20,1010.0 -2015,4,5,20,30,0,100.0,20,1010.0 -2015,4,5,21,0,0,100.0,20,1010.0 -2015,4,5,21,30,0,100.0,20,1010.0 -2015,4,5,22,0,0,100.0,20,1010.0 -2015,4,5,22,30,0,100.0,20,1010.0 -2015,4,5,23,0,0,100.0,20,1010.0 -2015,4,5,23,30,0,100.0,20,1010.0 -2015,4,6,0,0,0,100.0,20,1010.0 -2015,4,6,0,30,0,100.0,20,1010.0 -2015,4,6,1,0,0,100.0,20,1010.0 -2015,4,6,1,30,0,100.0,20,1010.0 -2015,4,6,2,0,0,100.0,20,1010.0 -2015,4,6,2,30,0,100.0,20,1010.0 -2015,4,6,3,0,0,100.0,20,1010.0 -2015,4,6,3,30,0,100.0,20,1010.0 -2015,4,6,4,0,0,100.0,20,1010.0 -2015,4,6,4,30,0,100.0,20,1010.0 -2015,4,6,5,0,0,100.0,20,1010.0 -2015,4,6,5,30,0,100.0,20,1010.0 -2015,4,6,6,0,0,100.0,20,1010.0 -2015,4,6,6,30,15,100.0,20,1010.0 -2015,4,6,7,0,49,100.0,21,1010.0 -2015,4,6,7,30,115,100.0,21,1010.0 -2015,4,6,8,0,146,97.91,22,1010.0 -2015,4,6,8,30,235,92.17,23,1010.0 -2015,4,6,9,0,315,85.69,24,1010.0 -2015,4,6,9,30,232,85.68,24,1010.0 -2015,4,6,10,0,468,79.61,25,1010.0 -2015,4,6,10,30,489,79.59,25,1010.0 -2015,4,6,11,0,233,78.62,25,1010.0 -2015,4,6,11,30,488,78.61,25,1010.0 -2015,4,6,12,0,463,77.59,25,1010.0 -2015,4,6,12,30,336,77.58,25,1010.0 -2015,4,6,13,0,714,76.93,25,1010.0 -2015,4,6,13,30,682,81.65,24,1010.0 -2015,4,6,14,0,639,81.7,24,1010.0 -2015,4,6,14,30,700,81.71000000000001,24,1010.0 -2015,4,6,15,0,559,82.09,24,1010.0 -2015,4,6,15,30,488,87.18,23,1010.0 -2015,4,6,16,0,472,86.28,23,1010.0 -2015,4,6,16,30,360,91.65,22,1010.0 -2015,4,6,17,0,248,90.67,22,1010.0 -2015,4,6,17,30,181,96.35000000000001,21,1010.0 -2015,4,6,18,0,85,94.73,21,1010.0 -2015,4,6,18,30,11,100.0,20,1010.0 -2015,4,6,19,0,0,100.0,20,1010.0 -2015,4,6,19,30,0,100.0,20,1010.0 -2015,4,6,20,0,0,100.0,20,1010.0 -2015,4,6,20,30,0,100.0,19,1010.0 -2015,4,6,21,0,0,100.0,19,1010.0 -2015,4,6,21,30,0,100.0,19,1010.0 -2015,4,6,22,0,0,100.0,19,1010.0 -2015,4,6,22,30,0,100.0,19,1010.0 -2015,4,6,23,0,0,100.0,19,1010.0 -2015,4,6,23,30,0,100.0,19,1010.0 -2015,4,7,0,0,0,100.0,19,1010.0 -2015,4,7,0,30,0,100.0,19,1010.0 -2015,4,7,1,0,0,100.0,19,1010.0 -2015,4,7,1,30,0,100.0,19,1010.0 -2015,4,7,2,0,0,100.0,19,1010.0 -2015,4,7,2,30,0,100.0,19,1010.0 -2015,4,7,3,0,0,100.0,20,1010.0 -2015,4,7,3,30,0,100.0,19,1010.0 -2015,4,7,4,0,0,100.0,19,1010.0 -2015,4,7,4,30,0,100.0,19,1010.0 -2015,4,7,5,0,0,100.0,19,1010.0 -2015,4,7,5,30,0,100.0,19,1010.0 -2015,4,7,6,0,0,100.0,20,1010.0 -2015,4,7,6,30,38,100.0,20,1010.0 -2015,4,7,7,0,114,98.69,21,1010.0 -2015,4,7,7,30,231,98.72,21,1010.0 -2015,4,7,8,0,340,95.72,22,1010.0 -2015,4,7,8,30,447,95.75,22,1010.0 -2015,4,7,9,0,550,90.43,23,1010.0 -2015,4,7,9,30,644,90.42,23,1010.0 -2015,4,7,10,0,730,84.2,24,1010.0 -2015,4,7,10,30,799,79.3,25,1010.0 -2015,4,7,11,0,859,74.76,26,1010.0 -2015,4,7,11,30,613,74.73,26,1010.0 -2015,4,7,12,0,633,70.46000000000001,27,1010.0 -2015,4,7,12,30,637,70.44,27,1010.0 -2015,4,7,13,0,921,70.05,27,1010.0 -2015,4,7,13,30,892,70.03,27,1010.0 -2015,4,7,14,0,846,69.27,27,1010.0 -2015,4,7,14,30,784,73.45,26,1010.0 -2015,4,7,15,0,708,72.85000000000001,26,1010.0 -2015,4,7,15,30,620,72.86,26,1010.0 -2015,4,7,16,0,521,72.95,26,1010.0 -2015,4,7,16,30,414,77.41,25,1010.0 -2015,4,7,17,0,305,84.01,24,1010.0 -2015,4,7,17,30,195,89.2,23,1010.0 -2015,4,7,18,0,93,95.31,22,1010.0 -2015,4,7,18,30,15,100.0,21,1010.0 -2015,4,7,19,0,0,100.0,21,1010.0 -2015,4,7,19,30,0,100.0,21,1010.0 -2015,4,7,20,0,0,100.0,21,1010.0 -2015,4,7,20,30,0,100.0,20,1010.0 -2015,4,7,21,0,0,100.0,20,1010.0 -2015,4,7,21,30,0,100.0,20,1010.0 -2015,4,7,22,0,0,100.0,20,1010.0 -2015,4,7,22,30,0,100.0,20,1010.0 -2015,4,7,23,0,0,100.0,20,1010.0 -2015,4,7,23,30,0,100.0,19,1010.0 -2015,4,8,0,0,0,100.0,19,1010.0 -2015,4,8,0,30,0,100.0,19,1010.0 -2015,4,8,1,0,0,100.0,20,1010.0 -2015,4,8,1,30,0,100.0,20,1010.0 -2015,4,8,2,0,0,100.0,20,1010.0 -2015,4,8,2,30,0,100.0,20,1010.0 -2015,4,8,3,0,0,100.0,20,1010.0 -2015,4,8,3,30,0,100.0,20,1010.0 -2015,4,8,4,0,0,100.0,20,1010.0 -2015,4,8,4,30,0,100.0,20,1010.0 -2015,4,8,5,0,0,100.0,20,1010.0 -2015,4,8,5,30,0,100.0,20,1010.0 -2015,4,8,6,0,0,100.0,21,1010.0 -2015,4,8,6,30,15,100.0,21,1010.0 -2015,4,8,7,0,46,100.0,22,1010.0 -2015,4,8,7,30,65,94.85000000000001,23,1010.0 -2015,4,8,8,0,177,89.17,24,1010.0 -2015,4,8,8,30,299,89.19,24,1010.0 -2015,4,8,9,0,395,82.72,25,1010.0 -2015,4,8,9,30,567,82.72,25,1010.0 -2015,4,8,10,0,594,77.24,26,1010.0 -2015,4,8,10,30,666,77.2,26,1010.0 -2015,4,8,11,0,675,76.76,27,1010.0 -2015,4,8,11,30,739,76.72,27,1010.0 -2015,4,8,12,0,723,72.01,27,1010.0 -2015,4,8,12,30,672,71.98,27,1010.0 -2015,4,8,13,0,706,70.8,27,1010.0 -2015,4,8,13,30,686,75.05,26,1010.0 -2015,4,8,14,0,682,73.53,26,1010.0 -2015,4,8,14,30,655,77.98,25,1010.0 -2015,4,8,15,0,438,77.54,25,1010.0 -2015,4,8,15,30,482,82.31,24,1010.0 -2015,4,8,16,0,469,83.66,24,1010.0 -2015,4,8,16,30,355,88.84,23,1010.0 -2015,4,8,17,0,95,91.01,23,1010.0 -2015,4,8,17,30,61,96.67,22,1010.0 -2015,4,8,18,0,29,97.22,22,1010.0 -2015,4,8,18,30,4,97.22,22,1010.0 -2015,4,8,19,0,0,97.63,22,1010.0 -2015,4,8,19,30,0,100.0,21,1010.0 -2015,4,8,20,0,0,100.0,21,1010.0 -2015,4,8,20,30,0,100.0,21,1010.0 -2015,4,8,21,0,0,100.0,21,1010.0 -2015,4,8,21,30,0,100.0,21,1010.0 -2015,4,8,22,0,0,100.0,21,1010.0 -2015,4,8,22,30,0,100.0,21,1010.0 -2015,4,8,23,0,0,100.0,21,1010.0 -2015,4,8,23,30,0,100.0,21,1010.0 -2015,4,9,0,0,0,100.0,21,1010.0 -2015,4,9,0,30,0,100.0,21,1010.0 -2015,4,9,1,0,0,100.0,21,1010.0 -2015,4,9,1,30,0,100.0,21,1010.0 -2015,4,9,2,0,0,100.0,21,1000.0 -2015,4,9,2,30,0,100.0,21,1000.0 -2015,4,9,3,0,0,100.0,21,1000.0 -2015,4,9,3,30,0,100.0,21,1000.0 -2015,4,9,4,0,0,100.0,21,1000.0 -2015,4,9,4,30,0,100.0,21,1010.0 -2015,4,9,5,0,0,100.0,21,1010.0 -2015,4,9,5,30,0,100.0,21,1010.0 -2015,4,9,6,0,0,100.0,21,1010.0 -2015,4,9,6,30,9,99.38,22,1010.0 -2015,4,9,7,0,20,96.05,23,1010.0 -2015,4,9,7,30,137,96.06,23,1010.0 -2015,4,9,8,0,45,90.94,24,1010.0 -2015,4,9,8,30,198,90.95,24,1010.0 -2015,4,9,9,0,243,85.53,25,1010.0 -2015,4,9,9,30,251,85.54,25,1010.0 -2015,4,9,10,0,540,80.68,26,1010.0 -2015,4,9,10,30,440,80.68,26,1010.0 -2015,4,9,11,0,620,75.44,27,1010.0 -2015,4,9,11,30,544,75.43,27,1010.0 -2015,4,9,12,0,589,73.97,27,1010.0 -2015,4,9,12,30,599,73.94,27,1010.0 -2015,4,9,13,0,498,72.17,27,1010.0 -2015,4,9,13,30,720,72.14,27,1010.0 -2015,4,9,14,0,685,70.52,27,1010.0 -2015,4,9,14,30,665,74.78,26,1010.0 -2015,4,9,15,0,601,74.11,26,1010.0 -2015,4,9,15,30,579,78.62,26,1010.0 -2015,4,9,16,0,486,78.98,26,1010.0 -2015,4,9,16,30,332,83.84,25,1010.0 -2015,4,9,17,0,276,86.0,24,1010.0 -2015,4,9,17,30,176,91.33,23,1010.0 -2015,4,9,18,0,83,93.09,23,1010.0 -2015,4,9,18,30,13,98.91,22,1010.0 -2015,4,9,19,0,0,99.36,22,1010.0 -2015,4,9,19,30,0,100.0,21,1010.0 -2015,4,9,20,0,0,100.0,21,1010.0 -2015,4,9,20,30,0,100.0,21,1010.0 -2015,4,9,21,0,0,100.0,21,1010.0 -2015,4,9,21,30,0,100.0,21,1010.0 -2015,4,9,22,0,0,100.0,21,1010.0 -2015,4,9,22,30,0,100.0,21,1010.0 -2015,4,9,23,0,0,100.0,21,1010.0 -2015,4,9,23,30,0,100.0,21,1010.0 -2015,4,10,0,0,0,100.0,21,1010.0 -2015,4,10,0,30,0,100.0,21,1010.0 -2015,4,10,1,0,0,100.0,21,1010.0 -2015,4,10,1,30,0,100.0,21,1010.0 -2015,4,10,2,0,0,100.0,21,1010.0 -2015,4,10,2,30,0,100.0,21,1010.0 -2015,4,10,3,0,0,100.0,21,1010.0 -2015,4,10,3,30,0,100.0,21,1010.0 -2015,4,10,4,0,0,100.0,21,1010.0 -2015,4,10,4,30,0,100.0,21,1010.0 -2015,4,10,5,0,0,100.0,21,1010.0 -2015,4,10,5,30,0,100.0,21,1010.0 -2015,4,10,6,0,0,100.0,21,1010.0 -2015,4,10,6,30,4,100.0,21,1010.0 -2015,4,10,7,0,13,100.0,22,1010.0 -2015,4,10,7,30,36,100.0,21,1010.0 -2015,4,10,8,0,123,100.0,21,1010.0 -2015,4,10,8,30,172,100.0,21,1010.0 -2015,4,10,9,0,128,100.0,21,1010.0 -2015,4,10,9,30,147,100.0,21,1010.0 -2015,4,10,10,0,281,98.69,21,1010.0 -2015,4,10,10,30,293,98.69,21,1010.0 -2015,4,10,11,0,483,97.89,21,1010.0 -2015,4,10,11,30,192,97.87,21,1010.0 -2015,4,10,12,0,97,93.86,22,1010.0 -2015,4,10,12,30,75,93.84,22,1010.0 -2015,4,10,13,0,160,90.89,23,1010.0 -2015,4,10,13,30,303,90.88,23,1010.0 -2015,4,10,14,0,284,92.61,23,1010.0 -2015,4,10,14,30,209,92.59,23,1010.0 -2015,4,10,15,0,301,92.54,23,1010.0 -2015,4,10,15,30,200,98.28,22,1010.0 -2015,4,10,16,0,322,98.52,22,1010.0 -2015,4,10,16,30,180,98.52,22,1010.0 -2015,4,10,17,0,132,97.69,22,1010.0 -2015,4,10,17,30,140,100.0,21,1010.0 -2015,4,10,18,0,69,100.0,21,1010.0 -2015,4,10,18,30,13,100.0,20,1010.0 -2015,4,10,19,0,0,100.0,20,1010.0 -2015,4,10,19,30,0,100.0,20,1010.0 -2015,4,10,20,0,0,100.0,20,1010.0 -2015,4,10,20,30,0,100.0,19,1010.0 -2015,4,10,21,0,0,100.0,19,1010.0 -2015,4,10,21,30,0,100.0,19,1010.0 -2015,4,10,22,0,0,100.0,19,1010.0 -2015,4,10,22,30,0,100.0,19,1010.0 -2015,4,10,23,0,0,100.0,19,1010.0 -2015,4,10,23,30,0,100.0,18,1010.0 -2015,4,11,0,0,0,100.0,18,1010.0 -2015,4,11,0,30,0,100.0,18,1010.0 -2015,4,11,1,0,0,100.0,18,1010.0 -2015,4,11,1,30,0,100.0,18,1010.0 -2015,4,11,2,0,0,100.0,18,1010.0 -2015,4,11,2,30,0,100.0,17,1010.0 -2015,4,11,3,0,0,100.0,17,1010.0 -2015,4,11,3,30,0,100.0,17,1010.0 -2015,4,11,4,0,0,100.0,17,1010.0 -2015,4,11,4,30,0,100.0,17,1010.0 -2015,4,11,5,0,0,98.38,17,1010.0 -2015,4,11,5,30,0,100.0,16,1010.0 -2015,4,11,6,0,0,100.0,16,1010.0 -2015,4,11,6,30,8,100.0,16,1010.0 -2015,4,11,7,0,24,96.12,17,1010.0 -2015,4,11,7,30,103,96.14,17,1010.0 -2015,4,11,8,0,136,91.18,18,1010.0 -2015,4,11,8,30,226,91.18,18,1010.0 -2015,4,11,9,0,287,88.72,19,1010.0 -2015,4,11,9,30,398,88.7,19,1010.0 -2015,4,11,10,0,367,87.14,20,1010.0 -2015,4,11,10,30,404,87.11,20,1010.0 -2015,4,11,11,0,435,85.60000000000001,21,1010.0 -2015,4,11,11,30,676,85.57000000000001,21,1010.0 -2015,4,11,12,0,392,83.63,22,1010.0 -2015,4,11,12,30,364,83.59,22,1010.0 -2015,4,11,13,0,308,86.53,22,1010.0 -2015,4,11,13,30,240,86.49,22,1010.0 -2015,4,11,14,0,249,88.62,22,1010.0 -2015,4,11,14,30,225,88.60000000000001,22,1010.0 -2015,4,11,15,0,322,90.24,22,1010.0 -2015,4,11,15,30,358,90.22,22,1010.0 -2015,4,11,16,0,33,92.43,22,1010.0 -2015,4,11,16,30,223,98.24000000000001,21,1010.0 -2015,4,11,17,0,174,99.55,21,1010.0 -2015,4,11,17,30,64,100.0,20,1010.0 -2015,4,11,18,0,31,100.0,20,1010.0 -2015,4,11,18,30,5,100.0,20,1010.0 -2015,4,11,19,0,0,100.0,20,1010.0 -2015,4,11,19,30,0,100.0,20,1010.0 -2015,4,11,20,0,0,100.0,20,1010.0 -2015,4,11,20,30,0,100.0,20,1010.0 -2015,4,11,21,0,0,100.0,20,1010.0 -2015,4,11,21,30,0,100.0,20,1010.0 -2015,4,11,22,0,0,100.0,20,1010.0 -2015,4,11,22,30,0,100.0,19,1010.0 -2015,4,11,23,0,0,100.0,19,1010.0 -2015,4,11,23,30,0,100.0,19,1010.0 -2015,4,12,0,0,0,100.0,19,1010.0 -2015,4,12,0,30,0,100.0,19,1010.0 -2015,4,12,1,0,0,100.0,19,1010.0 -2015,4,12,1,30,0,100.0,19,1010.0 -2015,4,12,2,0,0,100.0,19,1010.0 -2015,4,12,2,30,0,100.0,19,1010.0 -2015,4,12,3,0,0,100.0,19,1010.0 -2015,4,12,3,30,0,100.0,19,1010.0 -2015,4,12,4,0,0,100.0,19,1010.0 -2015,4,12,4,30,0,100.0,19,1010.0 -2015,4,12,5,0,0,100.0,19,1010.0 -2015,4,12,5,30,0,100.0,19,1010.0 -2015,4,12,6,0,0,100.0,20,1010.0 -2015,4,12,6,30,6,100.0,20,1010.0 -2015,4,12,7,0,43,100.0,21,1010.0 -2015,4,12,7,30,59,100.0,21,1010.0 -2015,4,12,8,0,155,98.68,22,1010.0 -2015,4,12,8,30,172,98.67,22,1010.0 -2015,4,12,9,0,442,95.79,23,1010.0 -2015,4,12,9,30,494,95.79,23,1010.0 -2015,4,12,10,0,566,90.8,24,1010.0 -2015,4,12,10,30,579,90.79,24,1010.0 -2015,4,12,11,0,570,90.9,24,1010.0 -2015,4,12,11,30,618,90.88,24,1010.0 -2015,4,12,12,0,507,85.84,25,1010.0 -2015,4,12,12,30,474,85.82000000000001,25,1010.0 -2015,4,12,13,0,516,85.94,25,1010.0 -2015,4,12,13,30,496,85.92,25,1010.0 -2015,4,12,14,0,597,85.62,25,1010.0 -2015,4,12,14,30,566,90.85000000000001,24,1010.0 -2015,4,12,15,0,415,91.82000000000001,24,1010.0 -2015,4,12,15,30,420,91.81,24,1010.0 -2015,4,12,16,0,290,93.2,24,1010.0 -2015,4,12,16,30,174,98.96000000000001,23,1010.0 -2015,4,12,17,0,154,99.02,23,1010.0 -2015,4,12,17,30,53,100.0,22,1010.0 -2015,4,12,18,0,25,100.0,22,1010.0 -2015,4,12,18,30,4,100.0,22,1010.0 -2015,4,12,19,0,0,100.0,22,1010.0 -2015,4,12,19,30,0,100.0,22,1010.0 -2015,4,12,20,0,0,100.0,22,1010.0 -2015,4,12,20,30,0,100.0,21,1010.0 -2015,4,12,21,0,0,100.0,21,1010.0 -2015,4,12,21,30,0,100.0,21,1010.0 -2015,4,12,22,0,0,100.0,21,1010.0 -2015,4,12,22,30,0,100.0,21,1010.0 -2015,4,12,23,0,0,100.0,21,1010.0 -2015,4,12,23,30,0,100.0,21,1010.0 -2015,4,13,0,0,0,100.0,21,1010.0 -2015,4,13,0,30,0,100.0,21,1010.0 -2015,4,13,1,0,0,100.0,21,1010.0 -2015,4,13,1,30,0,100.0,21,1010.0 -2015,4,13,2,0,0,100.0,21,1010.0 -2015,4,13,2,30,0,100.0,21,1010.0 -2015,4,13,3,0,0,100.0,21,1010.0 -2015,4,13,3,30,0,100.0,21,1010.0 -2015,4,13,4,0,0,100.0,21,1010.0 -2015,4,13,4,30,0,100.0,21,1010.0 -2015,4,13,5,0,0,100.0,21,1010.0 -2015,4,13,5,30,0,100.0,21,1010.0 -2015,4,13,6,0,0,100.0,21,1010.0 -2015,4,13,6,30,45,100.0,21,1010.0 -2015,4,13,7,0,136,100.0,21,1010.0 -2015,4,13,7,30,59,100.0,21,1010.0 -2015,4,13,8,0,106,98.94,22,1010.0 -2015,4,13,8,30,365,98.95,22,1010.0 -2015,4,13,9,0,532,92.8,23,1010.0 -2015,4,13,9,30,617,92.8,23,1010.0 -2015,4,13,10,0,696,86.85000000000001,24,1010.0 -2015,4,13,10,30,805,86.84,24,1010.0 -2015,4,13,11,0,857,82.34,25,1010.0 -2015,4,13,11,30,894,82.32000000000001,25,1010.0 -2015,4,13,12,0,939,78.92,26,1010.0 -2015,4,13,12,30,943,78.9,26,1010.0 -2015,4,13,13,0,928,79.7,26,1010.0 -2015,4,13,13,30,897,79.68,26,1010.0 -2015,4,13,14,0,849,79.89,26,1010.0 -2015,4,13,14,30,786,79.88,26,1010.0 -2015,4,13,15,0,711,80.26,27,1010.0 -2015,4,13,15,30,623,80.25,26,1010.0 -2015,4,13,16,0,523,81.84,26,1010.0 -2015,4,13,16,30,418,81.84,26,1010.0 -2015,4,13,17,0,308,83.44,26,1010.0 -2015,4,13,17,30,200,88.54,25,1010.0 -2015,4,13,18,0,98,85.10000000000001,25,1010.0 -2015,4,13,18,30,20,90.34,25,1010.0 -2015,4,13,19,0,0,83.95,25,1010.0 -2015,4,13,19,30,0,83.97,24,1010.0 -2015,4,13,20,0,0,83.83,24,1010.0 -2015,4,13,20,30,0,89.04,23,1010.0 -2015,4,13,21,0,0,89.38,23,1010.0 -2015,4,13,21,30,0,94.97,22,1010.0 -2015,4,13,22,0,0,95.05,22,1010.0 -2015,4,13,22,30,0,95.05,22,1010.0 -2015,4,13,23,0,0,95.83,22,1010.0 -2015,4,13,23,30,0,100.0,21,1010.0 -2015,4,14,0,0,0,100.0,21,1010.0 -2015,4,14,0,30,0,100.0,21,1010.0 -2015,4,14,1,0,0,100.0,21,1010.0 -2015,4,14,1,30,0,100.0,21,1010.0 -2015,4,14,2,0,0,100.0,21,1010.0 -2015,4,14,2,30,0,100.0,21,1010.0 -2015,4,14,3,0,0,100.0,21,1010.0 -2015,4,14,3,30,0,100.0,20,1010.0 -2015,4,14,4,0,0,100.0,20,1010.0 -2015,4,14,4,30,0,100.0,20,1010.0 -2015,4,14,5,0,0,100.0,20,1010.0 -2015,4,14,5,30,0,100.0,20,1010.0 -2015,4,14,6,0,0,99.04,21,1010.0 -2015,4,14,6,30,12,99.06,21,1010.0 -2015,4,14,7,0,78,100.0,21,1010.0 -2015,4,14,7,30,111,96.34,22,1010.0 -2015,4,14,8,0,18,92.43,23,1010.0 -2015,4,14,8,30,22,92.44,23,1010.0 -2015,4,14,9,0,29,84.62,24,1010.0 -2015,4,14,9,30,55,84.63,24,1010.0 -2015,4,14,10,0,43,82.94,24,1010.0 -2015,4,14,10,30,85,82.93,24,1010.0 -2015,4,14,11,0,89,83.04,24,1010.0 -2015,4,14,11,30,108,88.15,24,1010.0 -2015,4,14,12,0,421,88.46000000000001,24,1010.0 -2015,4,14,12,30,540,88.42,24,1010.0 -2015,4,14,13,0,639,89.11,24,1010.0 -2015,4,14,13,30,669,89.08,24,1010.0 -2015,4,14,14,0,528,89.63,24,1010.0 -2015,4,14,14,30,645,89.57000000000001,24,1010.0 -2015,4,14,15,0,471,84.17,24,1010.0 -2015,4,14,15,30,375,89.35000000000001,23,1010.0 -2015,4,14,16,0,405,88.06,23,1010.0 -2015,4,14,16,30,317,88.11,23,1010.0 -2015,4,14,17,0,295,88.60000000000001,23,1010.0 -2015,4,14,17,30,190,94.13,22,1010.0 -2015,4,14,18,0,91,99.73,21,1010.0 -2015,4,14,18,30,15,100.0,20,1010.0 -2015,4,14,19,0,0,100.0,20,1010.0 -2015,4,14,19,30,0,100.0,20,1010.0 -2015,4,14,20,0,0,96.41,20,1010.0 -2015,4,14,20,30,0,100.0,19,1010.0 -2015,4,14,21,0,0,98.67,19,1010.0 -2015,4,14,21,30,0,98.67,19,1010.0 -2015,4,14,22,0,0,95.02,19,1010.0 -2015,4,14,22,30,0,100.0,18,1010.0 -2015,4,14,23,0,0,97.52,18,1010.0 -2015,4,14,23,30,0,100.0,17,1010.0 -2015,4,15,0,0,0,100.0,17,1010.0 -2015,4,15,0,30,0,100.0,17,1010.0 -2015,4,15,1,0,0,99.96000000000001,17,1010.0 -2015,4,15,1,30,0,99.94,17,1010.0 -2015,4,15,2,0,0,98.34,17,1010.0 -2015,4,15,2,30,0,100.0,16,1010.0 -2015,4,15,3,0,0,100.0,16,1010.0 -2015,4,15,3,30,0,100.0,16,1010.0 -2015,4,15,4,0,0,100.0,16,1010.0 -2015,4,15,4,30,0,100.0,16,1010.0 -2015,4,15,5,0,0,99.26,16,1010.0 -2015,4,15,5,30,0,99.28,16,1010.0 -2015,4,15,6,0,0,98.83,16,1010.0 -2015,4,15,6,30,61,98.85000000000001,16,1010.0 -2015,4,15,7,0,155,93.85000000000001,17,1010.0 -2015,4,15,7,30,153,88.15,18,1010.0 -2015,4,15,8,0,309,84.68,19,1010.0 -2015,4,15,8,30,398,79.61,20,1010.0 -2015,4,15,9,0,470,77.78,21,1010.0 -2015,4,15,9,30,545,73.17,22,1010.0 -2015,4,15,10,0,750,72.06,23,1010.0 -2015,4,15,10,30,818,72.04,23,1010.0 -2015,4,15,11,0,870,70.69,24,1010.0 -2015,4,15,11,30,723,70.66,24,1010.0 -2015,4,15,12,0,860,68.87,25,1010.0 -2015,4,15,12,30,863,68.84,25,1010.0 -2015,4,15,13,0,636,65.94,26,1010.0 -2015,4,15,13,30,599,65.91,26,1010.0 -2015,4,15,14,0,551,66.71000000000001,26,1010.0 -2015,4,15,14,30,524,66.69,26,1010.0 -2015,4,15,15,0,506,67.04,26,1010.0 -2015,4,15,15,30,611,71.12,25,1010.0 -2015,4,15,16,0,512,71.93,25,1010.0 -2015,4,15,16,30,408,76.36,24,1010.0 -2015,4,15,17,0,279,79.62,24,1010.0 -2015,4,15,17,30,181,84.55,23,1010.0 -2015,4,15,18,0,90,90.65,22,1010.0 -2015,4,15,18,30,18,96.37,21,1010.0 -2015,4,15,19,0,0,93.08,21,1010.0 -2015,4,15,19,30,0,99.0,20,1010.0 -2015,4,15,20,0,0,98.01,20,1010.0 -2015,4,15,20,30,0,98.02,20,1010.0 -2015,4,15,21,0,0,97.52,20,1010.0 -2015,4,15,21,30,0,100.0,19,1010.0 -2015,4,15,22,0,0,100.0,19,1010.0 -2015,4,15,22,30,0,100.0,19,1010.0 -2015,4,15,23,0,0,100.0,19,1010.0 -2015,4,15,23,30,0,100.0,19,1010.0 -2015,4,16,0,0,0,100.0,19,1010.0 -2015,4,16,0,30,0,100.0,19,1010.0 -2015,4,16,1,0,0,100.0,19,1010.0 -2015,4,16,1,30,0,100.0,19,1010.0 -2015,4,16,2,0,0,100.0,19,1010.0 -2015,4,16,2,30,0,100.0,19,1010.0 -2015,4,16,3,0,0,100.0,19,1010.0 -2015,4,16,3,30,0,100.0,19,1010.0 -2015,4,16,4,0,0,100.0,19,1010.0 -2015,4,16,4,30,0,100.0,19,1010.0 -2015,4,16,5,0,0,100.0,19,1010.0 -2015,4,16,5,30,0,100.0,19,1010.0 -2015,4,16,6,0,0,100.0,20,1010.0 -2015,4,16,6,30,45,100.0,20,1010.0 -2015,4,16,7,0,96,100.0,21,1010.0 -2015,4,16,7,30,182,100.0,21,1010.0 -2015,4,16,8,0,177,99.67,22,1010.0 -2015,4,16,8,30,390,99.68,22,1010.0 -2015,4,16,9,0,433,100.0,22,1010.0 -2015,4,16,9,30,346,100.0,22,1010.0 -2015,4,16,10,0,581,98.62,23,1010.0 -2015,4,16,10,30,73,98.60000000000001,23,1010.0 -2015,4,16,11,0,564,93.32000000000001,24,1010.0 -2015,4,16,11,30,589,93.29,24,1010.0 -2015,4,16,12,0,181,92.72,24,1010.0 -2015,4,16,12,30,430,92.7,24,1010.0 -2015,4,16,13,0,914,91.39,24,1010.0 -2015,4,16,13,30,559,91.35000000000001,24,1010.0 -2015,4,16,14,0,202,91.35000000000001,24,1010.0 -2015,4,16,14,30,199,91.32000000000001,24,1010.0 -2015,4,16,15,0,120,91.63,24,1010.0 -2015,4,16,15,30,112,91.62,24,1010.0 -2015,4,16,16,0,260,91.61,24,1010.0 -2015,4,16,16,30,169,97.28,23,1010.0 -2015,4,16,17,0,170,97.93,23,1010.0 -2015,4,16,17,30,117,100.0,22,1010.0 -2015,4,16,18,0,59,100.0,22,1010.0 -2015,4,16,18,30,13,100.0,21,1010.0 -2015,4,16,19,0,0,100.0,21,1010.0 -2015,4,16,19,30,0,100.0,21,1010.0 -2015,4,16,20,0,0,100.0,21,1010.0 -2015,4,16,20,30,0,100.0,21,1010.0 -2015,4,16,21,0,0,100.0,21,1010.0 -2015,4,16,21,30,0,100.0,20,1010.0 -2015,4,16,22,0,0,100.0,20,1010.0 -2015,4,16,22,30,0,100.0,20,1010.0 -2015,4,16,23,0,0,100.0,20,1010.0 -2015,4,16,23,30,0,100.0,20,1010.0 -2015,4,17,0,0,0,100.0,20,1010.0 -2015,4,17,0,30,0,100.0,20,1010.0 -2015,4,17,1,0,0,100.0,20,1010.0 -2015,4,17,1,30,0,100.0,20,1010.0 -2015,4,17,2,0,0,99.56,20,1010.0 -2015,4,17,2,30,0,100.0,20,1010.0 -2015,4,17,3,0,0,100.0,20,1010.0 -2015,4,17,3,30,0,100.0,20,1010.0 -2015,4,17,4,0,0,100.0,20,1010.0 -2015,4,17,4,30,0,100.0,19,1010.0 -2015,4,17,5,0,0,100.0,19,1010.0 -2015,4,17,5,30,0,100.0,19,1010.0 -2015,4,17,6,0,0,100.0,20,1010.0 -2015,4,17,6,30,67,100.0,20,1010.0 -2015,4,17,7,0,122,100.0,20,1010.0 -2015,4,17,7,30,230,97.52,21,1010.0 -2015,4,17,8,0,343,97.9,22,1010.0 -2015,4,17,8,30,440,92.14,23,1010.0 -2015,4,17,9,0,522,93.04,24,1010.0 -2015,4,17,9,30,686,93.04,25,1010.0 -2015,4,17,10,0,762,88.59,26,1010.0 -2015,4,17,10,30,830,88.58,26,1010.0 -2015,4,17,11,0,662,83.16,26,1010.0 -2015,4,17,11,30,689,83.15,26,1010.0 -2015,4,17,12,0,709,83.06,27,1010.0 -2015,4,17,12,30,721,83.03,26,1010.0 -2015,4,17,13,0,584,83.06,26,1010.0 -2015,4,17,13,30,523,83.05,26,1010.0 -2015,4,17,14,0,569,83.67,26,1010.0 -2015,4,17,14,30,461,88.75,25,1010.0 -2015,4,17,15,0,251,90.13,25,1010.0 -2015,4,17,15,30,175,95.65,24,1010.0 -2015,4,17,16,0,98,96.41,24,1010.0 -2015,4,17,16,30,63,100.0,23,1010.0 -2015,4,17,17,0,91,100.0,23,1010.0 -2015,4,17,17,30,26,100.0,23,1010.0 -2015,4,17,18,0,13,99.87,23,1000.0 -2015,4,17,18,30,2,100.0,22,1000.0 -2015,4,17,19,0,0,100.0,22,1000.0 -2015,4,17,19,30,0,100.0,22,1000.0 -2015,4,17,20,0,0,100.0,22,1000.0 -2015,4,17,20,30,0,100.0,22,1000.0 -2015,4,17,21,0,0,100.0,22,1000.0 -2015,4,17,21,30,0,100.0,21,1000.0 -2015,4,17,22,0,0,100.0,21,1000.0 -2015,4,17,22,30,0,100.0,21,1000.0 -2015,4,17,23,0,0,100.0,21,1000.0 -2015,4,17,23,30,0,100.0,21,1000.0 -2015,4,18,0,0,0,100.0,21,1000.0 -2015,4,18,0,30,0,100.0,21,1000.0 -2015,4,18,1,0,0,100.0,21,1000.0 -2015,4,18,1,30,0,100.0,21,1000.0 -2015,4,18,2,0,0,99.85000000000001,21,1000.0 -2015,4,18,2,30,0,100.0,20,1000.0 -2015,4,18,3,0,0,100.0,20,1000.0 -2015,4,18,3,30,0,100.0,20,1000.0 -2015,4,18,4,0,0,100.0,20,1000.0 -2015,4,18,4,30,0,100.0,20,1000.0 -2015,4,18,5,0,0,100.0,20,1000.0 -2015,4,18,5,30,0,100.0,20,1010.0 -2015,4,18,6,0,0,100.0,20,1010.0 -2015,4,18,6,30,63,100.0,20,1010.0 -2015,4,18,7,0,147,100.0,21,1010.0 -2015,4,18,7,30,109,100.0,21,1010.0 -2015,4,18,8,0,41,100.0,22,1010.0 -2015,4,18,8,30,97,100.0,22,1010.0 -2015,4,18,9,0,281,94.29,23,1010.0 -2015,4,18,9,30,140,94.27,23,1010.0 -2015,4,18,10,0,431,87.29,24,1010.0 -2015,4,18,10,30,304,87.26,24,1010.0 -2015,4,18,11,0,286,86.01,24,1000.0 -2015,4,18,11,30,376,85.95,24,1000.0 -2015,4,18,12,0,502,83.91,24,1000.0 -2015,4,18,12,30,306,83.9,24,1000.0 -2015,4,18,13,0,529,83.26,24,1000.0 -2015,4,18,13,30,500,83.24,24,1000.0 -2015,4,18,14,0,133,84.54,24,1000.0 -2015,4,18,14,30,297,84.51,24,1000.0 -2015,4,18,15,0,398,86.8,24,1000.0 -2015,4,18,15,30,178,86.79,24,1000.0 -2015,4,18,16,0,102,87.97,24,1000.0 -2015,4,18,16,30,138,93.42,23,1000.0 -2015,4,18,17,0,55,93.67,23,1000.0 -2015,4,18,17,30,34,99.52,22,1000.0 -2015,4,18,18,0,18,98.93,22,1000.0 -2015,4,18,18,30,4,100.0,21,1000.0 -2015,4,18,19,0,0,100.0,21,1000.0 -2015,4,18,19,30,0,100.0,20,1000.0 -2015,4,18,20,0,0,100.0,20,1000.0 -2015,4,18,20,30,0,100.0,20,1000.0 -2015,4,18,21,0,0,100.0,20,1000.0 -2015,4,18,21,30,0,100.0,20,1000.0 -2015,4,18,22,0,0,100.0,20,1000.0 -2015,4,18,22,30,0,100.0,19,1000.0 -2015,4,18,23,0,0,100.0,19,1000.0 -2015,4,18,23,30,0,100.0,19,1000.0 -2015,4,19,0,0,0,100.0,19,1000.0 -2015,4,19,0,30,0,100.0,18,1000.0 -2015,4,19,1,0,0,100.0,18,1000.0 -2015,4,19,1,30,0,100.0,18,1000.0 -2015,4,19,2,0,0,100.0,18,1000.0 -2015,4,19,2,30,0,100.0,18,1000.0 -2015,4,19,3,0,0,100.0,18,1000.0 -2015,4,19,3,30,0,100.0,18,1000.0 -2015,4,19,4,0,0,100.0,18,1000.0 -2015,4,19,4,30,0,100.0,17,1000.0 -2015,4,19,5,0,0,100.0,17,1000.0 -2015,4,19,5,30,0,100.0,17,1000.0 -2015,4,19,6,0,9,100.0,18,1000.0 -2015,4,19,6,30,79,97.38,19,1000.0 -2015,4,19,7,0,179,98.36,20,1000.0 -2015,4,19,7,30,290,98.36,21,1000.0 -2015,4,19,8,0,403,96.75,22,1000.0 -2015,4,19,8,30,513,91.03,22,1000.0 -2015,4,19,9,0,616,86.81,23,1000.0 -2015,4,19,9,30,711,81.73,24,1000.0 -2015,4,19,10,0,793,78.27,25,1000.0 -2015,4,19,10,30,862,78.26,25,1000.0 -2015,4,19,11,0,916,75.42,26,1000.0 -2015,4,19,11,30,953,75.39,26,1000.0 -2015,4,19,12,0,979,72.38,27,1000.0 -2015,4,19,12,30,981,72.35000000000001,27,1000.0 -2015,4,19,13,0,965,73.13,27,1000.0 -2015,4,19,13,30,933,73.10000000000001,27,1000.0 -2015,4,19,14,0,884,73.67,27,1000.0 -2015,4,19,14,30,820,73.65,27,1000.0 -2015,4,19,15,0,614,74.48,27,1000.0 -2015,4,19,15,30,540,78.98,27,1000.0 -2015,4,19,16,0,549,81.03,27,1000.0 -2015,4,19,16,30,442,81.03,26,1000.0 -2015,4,19,17,0,297,84.47,26,1000.0 -2015,4,19,17,30,197,89.63,25,1000.0 -2015,4,19,18,0,103,93.39,24,1000.0 -2015,4,19,18,30,26,99.2,23,1000.0 -2015,4,19,19,0,0,99.15,22,1000.0 -2015,4,19,19,30,0,100.0,21,1000.0 -2015,4,19,20,0,0,100.0,21,1000.0 -2015,4,19,20,30,0,100.0,20,1000.0 -2015,4,19,21,0,0,100.0,20,1000.0 -2015,4,19,21,30,0,100.0,19,1000.0 -2015,4,19,22,0,0,100.0,19,1000.0 -2015,4,19,22,30,0,100.0,18,1000.0 -2015,4,19,23,0,0,100.0,18,1000.0 -2015,4,19,23,30,0,100.0,17,1000.0 -2015,4,20,0,0,0,97.01,17,1000.0 -2015,4,20,0,30,0,100.0,16,1000.0 -2015,4,20,1,0,0,93.79,16,1000.0 -2015,4,20,1,30,0,100.0,15,1000.0 -2015,4,20,2,0,0,92.43,15,1010.0 -2015,4,20,2,30,0,92.45,15,1010.0 -2015,4,20,3,0,0,88.54,15,1010.0 -2015,4,20,3,30,0,94.44,14,1010.0 -2015,4,20,4,0,0,92.60000000000001,14,1010.0 -2015,4,20,4,30,0,92.63,14,1010.0 -2015,4,20,5,0,0,90.52,14,1010.0 -2015,4,20,5,30,0,90.55,14,1010.0 -2015,4,20,6,0,6,88.49,14,1010.0 -2015,4,20,6,30,46,88.52,14,1010.0 -2015,4,20,7,0,118,83.36,14,1010.0 -2015,4,20,7,30,175,83.37,14,1010.0 -2015,4,20,8,0,255,71.31,15,1010.0 -2015,4,20,8,30,424,71.32000000000001,15,1010.0 -2015,4,20,9,0,512,63.6,16,1010.0 -2015,4,20,9,30,625,63.61,16,1010.0 -2015,4,20,10,0,607,57.35,17,1010.0 -2015,4,20,10,30,656,57.34,17,1010.0 -2015,4,20,11,0,700,53.19,18,1010.0 -2015,4,20,11,30,777,53.17,18,1010.0 -2015,4,20,12,0,827,51.160000000000004,19,1010.0 -2015,4,20,12,30,827,51.15,19,1010.0 -2015,4,20,13,0,892,49.75,20,1010.0 -2015,4,20,13,30,809,49.730000000000004,20,1010.0 -2015,4,20,14,0,763,51.29,20,1010.0 -2015,4,20,14,30,627,51.28,20,1010.0 -2015,4,20,15,0,522,54.870000000000005,20,1010.0 -2015,4,20,15,30,309,58.38,20,1010.0 -2015,4,20,16,0,349,60.08,20,1010.0 -2015,4,20,16,30,301,60.09,19,1010.0 -2015,4,20,17,0,212,72.3,19,1010.0 -2015,4,20,17,30,143,76.97,18,1010.0 -2015,4,20,18,0,74,77.0,18,1010.0 -2015,4,20,18,30,18,82.01,17,1010.0 -2015,4,20,19,0,0,78.28,17,1010.0 -2015,4,20,19,30,0,78.28,17,1010.0 -2015,4,20,20,0,0,79.27,17,1010.0 -2015,4,20,20,30,0,84.46000000000001,16,1010.0 -2015,4,20,21,0,0,84.27,16,1010.0 -2015,4,20,21,30,0,84.27,16,1010.0 -2015,4,20,22,0,0,83.99,16,1010.0 -2015,4,20,22,30,0,83.99,16,1010.0 -2015,4,20,23,0,0,83.32000000000001,16,1010.0 -2015,4,20,23,30,0,83.32000000000001,16,1010.0 -2015,4,21,0,0,0,82.75,16,1010.0 -2015,4,21,0,30,0,88.2,15,1010.0 -2015,4,21,1,0,0,88.48,15,1010.0 -2015,4,21,1,30,0,88.47,15,1010.0 -2015,4,21,2,0,0,88.27,15,1010.0 -2015,4,21,2,30,0,94.14,14,1010.0 -2015,4,21,3,0,0,92.79,14,1010.0 -2015,4,21,3,30,0,92.79,14,1010.0 -2015,4,21,4,0,0,91.02,14,1010.0 -2015,4,21,4,30,0,97.13,13,1010.0 -2015,4,21,5,0,0,97.15,13,1010.0 -2015,4,21,5,30,0,97.17,14,1010.0 -2015,4,21,6,0,12,95.84,15,1010.0 -2015,4,21,6,30,86,89.88,16,1010.0 -2015,4,21,7,0,189,84.10000000000001,17,1010.0 -2015,4,21,7,30,300,78.98,18,1010.0 -2015,4,21,8,0,414,76.02,19,1010.0 -2015,4,21,8,30,524,71.46000000000001,20,1010.0 -2015,4,21,9,0,626,68.8,21,1010.0 -2015,4,21,9,30,720,64.73,22,1010.0 -2015,4,21,10,0,800,63.47,23,1010.0 -2015,4,21,10,30,869,63.46,23,1010.0 -2015,4,21,11,0,920,66.09,24,1010.0 -2015,4,21,11,30,957,66.07000000000001,24,1010.0 -2015,4,21,12,0,980,64.28,24,1010.0 -2015,4,21,12,30,982,64.27,24,1010.0 -2015,4,21,13,0,966,65.68,24,1010.0 -2015,4,21,13,30,933,65.65,24,1010.0 -2015,4,21,14,0,885,66.27,24,1010.0 -2015,4,21,14,30,820,66.25,24,1010.0 -2015,4,21,15,0,741,66.93,24,1010.0 -2015,4,21,15,30,650,71.05,23,1010.0 -2015,4,21,16,0,548,72.01,23,1010.0 -2015,4,21,16,30,441,76.49,22,1010.0 -2015,4,21,17,0,330,78.28,22,1010.0 -2015,4,21,17,30,219,83.2,21,1010.0 -2015,4,21,18,0,116,91.15,20,1010.0 -2015,4,21,18,30,31,96.99000000000001,19,1010.0 -2015,4,21,19,0,0,94.11,19,1010.0 -2015,4,21,19,30,0,94.14,19,1010.0 -2015,4,21,20,0,0,94.29,19,1010.0 -2015,4,21,20,30,0,100.0,18,1010.0 -2015,4,21,21,0,0,100.0,18,1010.0 -2015,4,21,21,30,0,100.0,18,1010.0 -2015,4,21,22,0,0,100.0,18,1010.0 -2015,4,21,22,30,0,100.0,18,1010.0 -2015,4,21,23,0,0,100.0,18,1010.0 -2015,4,21,23,30,0,100.0,18,1010.0 -2015,4,22,0,0,0,100.0,18,1010.0 -2015,4,22,0,30,0,100.0,17,1010.0 -2015,4,22,1,0,0,100.0,17,1010.0 -2015,4,22,1,30,0,100.0,17,1010.0 -2015,4,22,2,0,0,100.0,17,1010.0 -2015,4,22,2,30,0,100.0,17,1010.0 -2015,4,22,3,0,0,100.0,17,1010.0 -2015,4,22,3,30,0,100.0,17,1010.0 -2015,4,22,4,0,0,100.0,17,1010.0 -2015,4,22,4,30,0,100.0,17,1010.0 -2015,4,22,5,0,0,100.0,17,1010.0 -2015,4,22,5,30,0,100.0,17,1010.0 -2015,4,22,6,0,4,100.0,18,1010.0 -2015,4,22,6,30,30,98.72,19,1010.0 -2015,4,22,7,0,64,94.86,21,1010.0 -2015,4,22,7,30,235,89.26,22,1010.0 -2015,4,22,8,0,312,86.38,23,1010.0 -2015,4,22,8,30,434,86.39,23,1010.0 -2015,4,22,9,0,551,82.46000000000001,24,1010.0 -2015,4,22,9,30,634,77.69,25,1010.0 -2015,4,22,10,0,634,74.22,26,1010.0 -2015,4,22,10,30,526,74.2,26,1010.0 -2015,4,22,11,0,678,74.9,26,1010.0 -2015,4,22,11,30,816,74.88,26,1010.0 -2015,4,22,12,0,444,74.67,26,1010.0 -2015,4,22,12,30,651,74.65,26,1010.0 -2015,4,22,13,0,506,74.92,26,1010.0 -2015,4,22,13,30,507,79.47,25,1010.0 -2015,4,22,14,0,434,80.39,25,1010.0 -2015,4,22,14,30,346,80.36,25,1010.0 -2015,4,22,15,0,139,81.12,25,1010.0 -2015,4,22,15,30,123,86.08,24,1010.0 -2015,4,22,16,0,181,87.14,24,1010.0 -2015,4,22,16,30,199,92.52,23,1000.0 -2015,4,22,17,0,102,93.86,23,1000.0 -2015,4,22,17,30,45,99.71000000000001,22,1000.0 -2015,4,22,18,0,23,99.60000000000001,22,1000.0 -2015,4,22,18,30,31,100.0,21,1000.0 -2015,4,22,19,0,0,100.0,21,1000.0 -2015,4,22,19,30,0,100.0,21,1010.0 -2015,4,22,20,0,0,100.0,21,1010.0 -2015,4,22,20,30,0,100.0,21,1010.0 -2015,4,22,21,0,0,100.0,21,1010.0 -2015,4,22,21,30,0,100.0,21,1010.0 -2015,4,22,22,0,0,100.0,21,1010.0 -2015,4,22,22,30,0,100.0,21,1010.0 -2015,4,22,23,0,0,100.0,21,1010.0 -2015,4,22,23,30,0,100.0,21,1010.0 -2015,4,23,0,0,0,100.0,21,1010.0 -2015,4,23,0,30,0,100.0,21,1010.0 -2015,4,23,1,0,0,100.0,21,1000.0 -2015,4,23,1,30,0,100.0,21,1000.0 -2015,4,23,2,0,0,100.0,21,1000.0 -2015,4,23,2,30,0,100.0,21,1000.0 -2015,4,23,3,0,0,100.0,21,1000.0 -2015,4,23,3,30,0,100.0,20,1000.0 -2015,4,23,4,0,0,100.0,20,1000.0 -2015,4,23,4,30,0,100.0,20,1000.0 -2015,4,23,5,0,0,100.0,20,1010.0 -2015,4,23,5,30,0,100.0,20,1010.0 -2015,4,23,6,0,7,100.0,21,1010.0 -2015,4,23,6,30,62,98.81,22,1010.0 -2015,4,23,7,0,151,98.21000000000001,23,1010.0 -2015,4,23,7,30,276,98.22,23,1010.0 -2015,4,23,8,0,383,95.19,24,1010.0 -2015,4,23,8,30,487,95.21000000000001,24,1010.0 -2015,4,23,9,0,583,90.15,25,1010.0 -2015,4,23,9,30,321,90.16,25,1010.0 -2015,4,23,10,0,358,85.35000000000001,26,1010.0 -2015,4,23,10,30,617,85.33,26,1010.0 -2015,4,23,11,0,658,81.27,27,1010.0 -2015,4,23,11,30,686,81.24,27,1010.0 -2015,4,23,12,0,923,82.19,27,1010.0 -2015,4,23,12,30,925,82.17,27,1010.0 -2015,4,23,13,0,771,77.78,28,1010.0 -2015,4,23,13,30,761,77.75,28,1010.0 -2015,4,23,14,0,748,77.65,28,1010.0 -2015,4,23,14,30,640,77.64,28,1000.0 -2015,4,23,15,0,612,77.05,28,1000.0 -2015,4,23,15,30,498,77.03,28,1000.0 -2015,4,23,16,0,413,76.97,28,1000.0 -2015,4,23,16,30,295,81.58,28,1000.0 -2015,4,23,17,0,185,84.36,28,1000.0 -2015,4,23,17,30,134,89.47,26,1000.0 -2015,4,23,18,0,71,92.64,25,1000.0 -2015,4,23,18,30,19,98.34,24,1000.0 -2015,4,23,19,0,0,98.47,23,1000.0 -2015,4,23,19,30,0,98.49000000000001,23,1000.0 -2015,4,23,20,0,0,98.22,23,1010.0 -2015,4,23,20,30,0,100.0,23,1010.0 -2015,4,23,21,0,0,100.0,23,1010.0 -2015,4,23,21,30,0,100.0,22,1010.0 -2015,4,23,22,0,0,100.0,22,1010.0 -2015,4,23,22,30,0,100.0,22,1010.0 -2015,4,23,23,0,0,100.0,22,1010.0 -2015,4,23,23,30,0,100.0,21,1000.0 -2015,4,24,0,0,0,100.0,21,1000.0 -2015,4,24,0,30,0,100.0,21,1010.0 -2015,4,24,1,0,0,100.0,21,1010.0 -2015,4,24,1,30,0,100.0,21,1010.0 -2015,4,24,2,0,0,100.0,21,1010.0 -2015,4,24,2,30,0,100.0,21,1010.0 -2015,4,24,3,0,0,100.0,22,1010.0 -2015,4,24,3,30,0,100.0,22,1010.0 -2015,4,24,4,0,0,100.0,22,1010.0 -2015,4,24,4,30,0,100.0,21,1010.0 -2015,4,24,5,0,0,100.0,21,1010.0 -2015,4,24,5,30,0,100.0,21,1010.0 -2015,4,24,6,0,0,100.0,22,1010.0 -2015,4,24,6,30,11,100.0,22,1000.0 -2015,4,24,7,0,65,100.0,23,1000.0 -2015,4,24,7,30,100,100.0,23,1010.0 -2015,4,24,8,0,68,100.0,23,1010.0 -2015,4,24,8,30,200,100.0,23,1000.0 -2015,4,24,9,0,407,96.60000000000001,24,1000.0 -2015,4,24,9,30,518,96.56,24,1000.0 -2015,4,24,10,0,342,91.27,25,1000.0 -2015,4,24,10,30,459,86.0,26,1000.0 -2015,4,24,11,0,674,80.53,27,1000.0 -2015,4,24,11,30,283,80.5,27,1000.0 -2015,4,24,12,0,517,75.48,28,1000.0 -2015,4,24,12,30,518,75.46000000000001,28,1000.0 -2015,4,24,13,0,429,74.83,28,1000.0 -2015,4,24,13,30,494,74.81,28,1000.0 -2015,4,24,14,0,636,74.33,28,1000.0 -2015,4,24,14,30,466,78.77,27,1000.0 -2015,4,24,15,0,268,79.41,27,1000.0 -2015,4,24,15,30,208,79.4,27,1000.0 -2015,4,24,16,0,444,81.04,27,1000.0 -2015,4,24,16,30,280,85.93,26,1000.0 -2015,4,24,17,0,245,88.37,26,1000.0 -2015,4,24,17,30,114,93.75,25,1000.0 -2015,4,24,18,0,56,99.17,24,1000.0 -2015,4,24,18,30,11,100.0,23,1000.0 -2015,4,24,19,0,0,100.0,23,1000.0 -2015,4,24,19,30,0,100.0,23,1000.0 -2015,4,24,20,0,0,100.0,23,1000.0 -2015,4,24,20,30,0,100.0,23,1000.0 -2015,4,24,21,0,0,100.0,23,1000.0 -2015,4,24,21,30,0,100.0,23,1000.0 -2015,4,24,22,0,0,100.0,23,1000.0 -2015,4,24,22,30,0,100.0,23,1000.0 -2015,4,24,23,0,0,100.0,23,1000.0 -2015,4,24,23,30,0,100.0,23,1000.0 -2015,4,25,0,0,0,100.0,23,1000.0 -2015,4,25,0,30,0,100.0,23,1000.0 -2015,4,25,1,0,0,100.0,23,1000.0 -2015,4,25,1,30,0,100.0,22,1000.0 -2015,4,25,2,0,0,100.0,22,1000.0 -2015,4,25,2,30,0,100.0,22,1000.0 -2015,4,25,3,0,0,100.0,22,1000.0 -2015,4,25,3,30,0,100.0,22,1000.0 -2015,4,25,4,0,0,100.0,22,1000.0 -2015,4,25,4,30,0,100.0,22,1000.0 -2015,4,25,5,0,0,100.0,22,1000.0 -2015,4,25,5,30,0,100.0,22,1000.0 -2015,4,25,6,0,0,100.0,22,1000.0 -2015,4,25,6,30,2,100.0,23,1000.0 -2015,4,25,7,0,9,100.0,24,1000.0 -2015,4,25,7,30,12,100.0,24,1000.0 -2015,4,25,8,0,20,100.0,24,1000.0 -2015,4,25,8,30,113,100.0,24,1000.0 -2015,4,25,9,0,44,94.08,25,1000.0 -2015,4,25,9,30,126,94.07000000000001,25,1000.0 -2015,4,25,10,0,677,93.4,25,1000.0 -2015,4,25,10,30,705,88.0,26,1000.0 -2015,4,25,11,0,856,79.25,27,1000.0 -2015,4,25,11,30,890,79.21000000000001,27,1000.0 -2015,4,25,12,0,954,72.52,28,1000.0 -2015,4,25,12,30,957,72.49,28,1000.0 -2015,4,25,13,0,943,67.9,29,1000.0 -2015,4,25,13,30,913,67.88,29,1000.0 -2015,4,25,14,0,864,69.04,29,1000.0 -2015,4,25,14,30,802,73.13,28,1000.0 -2015,4,25,15,0,728,74.65,28,1000.0 -2015,4,25,15,30,641,74.64,28,1000.0 -2015,4,25,16,0,543,76.09,28,1000.0 -2015,4,25,16,30,439,80.65,27,1000.0 -2015,4,25,17,0,331,81.45,27,1000.0 -2015,4,25,17,30,223,91.64,26,1000.0 -2015,4,25,18,0,120,97.46000000000001,25,1000.0 -2015,4,25,18,30,35,100.0,24,1000.0 -2015,4,25,19,0,0,99.15,23,1000.0 -2015,4,25,19,30,0,100.0,22,1000.0 -2015,4,25,20,0,0,100.0,22,1000.0 -2015,4,25,20,30,0,100.0,22,1000.0 -2015,4,25,21,0,0,100.0,22,1000.0 -2015,4,25,21,30,0,100.0,21,1000.0 -2015,4,25,22,0,0,100.0,21,1000.0 -2015,4,25,22,30,0,100.0,20,1000.0 -2015,4,25,23,0,0,100.0,20,1000.0 -2015,4,25,23,30,0,100.0,20,1000.0 -2015,4,26,0,0,0,100.0,20,1000.0 -2015,4,26,0,30,0,100.0,20,1000.0 -2015,4,26,1,0,0,100.0,20,1000.0 -2015,4,26,1,30,0,100.0,19,1000.0 -2015,4,26,2,0,0,100.0,19,1000.0 -2015,4,26,2,30,0,100.0,19,1000.0 -2015,4,26,3,0,0,100.0,19,1000.0 -2015,4,26,3,30,0,100.0,19,1000.0 -2015,4,26,4,0,0,100.0,19,1000.0 -2015,4,26,4,30,0,100.0,19,1000.0 -2015,4,26,5,0,0,100.0,19,1000.0 -2015,4,26,5,30,0,100.0,20,1000.0 -2015,4,26,6,0,4,100.0,21,1000.0 -2015,4,26,6,30,25,99.58,21,1000.0 -2015,4,26,7,0,68,100.0,22,1000.0 -2015,4,26,7,30,180,97.57000000000001,23,1000.0 -2015,4,26,8,0,204,94.83,24,1000.0 -2015,4,26,8,30,325,94.86,24,1000.0 -2015,4,26,9,0,207,95.39,24,1000.0 -2015,4,26,9,30,250,95.35000000000001,24,1000.0 -2015,4,26,10,0,418,89.35000000000001,25,1000.0 -2015,4,26,10,30,150,89.29,25,1000.0 -2015,4,26,11,0,314,82.11,26,1000.0 -2015,4,26,11,30,302,82.06,26,1000.0 -2015,4,26,12,0,759,73.17,27,1000.0 -2015,4,26,12,30,746,73.14,27,1000.0 -2015,4,26,13,0,759,72.2,27,1000.0 -2015,4,26,13,30,821,72.17,27,1000.0 -2015,4,26,14,0,792,73.18,27,1000.0 -2015,4,26,14,30,716,73.17,27,1000.0 -2015,4,26,15,0,637,74.62,27,1000.0 -2015,4,26,15,30,616,79.12,26,1000.0 -2015,4,26,16,0,161,80.9,26,1000.0 -2015,4,26,16,30,111,85.82000000000001,25,1000.0 -2015,4,26,17,0,23,87.86,25,1000.0 -2015,4,26,17,30,56,93.24,24,1000.0 -2015,4,26,18,0,29,98.75,23,1000.0 -2015,4,26,18,30,7,100.0,23,1000.0 -2015,4,26,19,0,0,100.0,23,1000.0 -2015,4,26,19,30,0,100.0,22,1000.0 -2015,4,26,20,0,0,100.0,22,1000.0 -2015,4,26,20,30,0,100.0,22,1000.0 -2015,4,26,21,0,0,100.0,22,1000.0 -2015,4,26,21,30,0,100.0,22,1000.0 -2015,4,26,22,0,0,100.0,22,1000.0 -2015,4,26,22,30,0,100.0,22,1000.0 -2015,4,26,23,0,0,100.0,22,1000.0 -2015,4,26,23,30,0,100.0,22,1000.0 -2015,4,27,0,0,0,100.0,22,1000.0 -2015,4,27,0,30,0,100.0,22,1000.0 -2015,4,27,1,0,0,100.0,22,1000.0 -2015,4,27,1,30,0,100.0,22,1000.0 -2015,4,27,2,0,0,100.0,22,1000.0 -2015,4,27,2,30,0,100.0,22,1000.0 -2015,4,27,3,0,0,100.0,22,1000.0 -2015,4,27,3,30,0,100.0,22,1000.0 -2015,4,27,4,0,0,100.0,22,1000.0 -2015,4,27,4,30,0,100.0,22,1000.0 -2015,4,27,5,0,0,100.0,22,1000.0 -2015,4,27,5,30,0,100.0,22,1000.0 -2015,4,27,6,0,8,100.0,22,1000.0 -2015,4,27,6,30,68,100.0,22,1000.0 -2015,4,27,7,0,43,100.0,22,1000.0 -2015,4,27,7,30,69,100.0,22,1000.0 -2015,4,27,8,0,272,99.17,23,1000.0 -2015,4,27,8,30,348,99.18,23,1000.0 -2015,4,27,9,0,432,94.53,24,1000.0 -2015,4,27,9,30,560,94.54,24,1000.0 -2015,4,27,10,0,628,90.54,25,1000.0 -2015,4,27,10,30,247,90.53,25,1000.0 -2015,4,27,11,0,263,87.32000000000001,26,1000.0 -2015,4,27,11,30,385,87.3,26,1000.0 -2015,4,27,12,0,270,88.83,26,1000.0 -2015,4,27,12,30,334,88.83,26,1000.0 -2015,4,27,13,0,330,84.46000000000001,27,1000.0 -2015,4,27,13,30,154,84.45,27,1000.0 -2015,4,27,14,0,628,83.93,27,1000.0 -2015,4,27,14,30,745,83.92,27,1000.0 -2015,4,27,15,0,672,82.8,27,1000.0 -2015,4,27,15,30,588,87.81,26,1000.0 -2015,4,27,16,0,204,86.43,26,1000.0 -2015,4,27,16,30,155,91.71000000000001,25,1000.0 -2015,4,27,17,0,265,91.33,25,1000.0 -2015,4,27,17,30,195,96.97,24,1000.0 -2015,4,27,18,0,101,95.47,24,1000.0 -2015,4,27,18,30,23,100.0,23,1000.0 -2015,4,27,19,0,0,100.0,23,1000.0 -2015,4,27,19,30,0,100.0,22,1000.0 -2015,4,27,20,0,0,100.0,22,1000.0 -2015,4,27,20,30,0,100.0,21,1000.0 -2015,4,27,21,0,0,100.0,21,1000.0 -2015,4,27,21,30,0,100.0,21,1000.0 -2015,4,27,22,0,0,100.0,21,1000.0 -2015,4,27,22,30,0,100.0,20,1000.0 -2015,4,27,23,0,0,100.0,20,1000.0 -2015,4,27,23,30,0,100.0,20,1000.0 -2015,4,28,0,0,0,100.0,20,1000.0 -2015,4,28,0,30,0,100.0,19,1000.0 -2015,4,28,1,0,0,100.0,19,1000.0 -2015,4,28,1,30,0,100.0,18,1000.0 -2015,4,28,2,0,0,100.0,18,1000.0 -2015,4,28,2,30,0,100.0,18,1000.0 -2015,4,28,3,0,0,100.0,18,1000.0 -2015,4,28,3,30,0,100.0,17,1000.0 -2015,4,28,4,0,0,100.0,17,1000.0 -2015,4,28,4,30,0,100.0,17,1000.0 -2015,4,28,5,0,0,100.0,17,1000.0 -2015,4,28,5,30,0,100.0,17,1000.0 -2015,4,28,6,0,24,99.25,18,1000.0 -2015,4,28,6,30,105,99.27,18,1000.0 -2015,4,28,7,0,206,95.66,19,1000.0 -2015,4,28,7,30,316,95.68,19,1000.0 -2015,4,28,8,0,426,89.02,20,1000.0 -2015,4,28,8,30,534,89.04,20,1010.0 -2015,4,28,9,0,633,80.88,21,1010.0 -2015,4,28,9,30,453,80.89,21,1010.0 -2015,4,28,10,0,502,74.2,22,1010.0 -2015,4,28,10,30,419,74.2,22,1010.0 -2015,4,28,11,0,160,72.69,22,1010.0 -2015,4,28,11,30,445,72.68,22,1010.0 -2015,4,28,12,0,579,70.94,22,1010.0 -2015,4,28,12,30,250,70.93,22,1010.0 -2015,4,28,13,0,646,68.60000000000001,22,1010.0 -2015,4,28,13,30,234,72.91,21,1010.0 -2015,4,28,14,0,268,70.02,21,1010.0 -2015,4,28,14,30,183,74.46000000000001,20,1010.0 -2015,4,28,15,0,82,71.99,20,1010.0 -2015,4,28,15,30,246,76.60000000000001,19,1010.0 -2015,4,28,16,0,95,74.43,19,1010.0 -2015,4,28,16,30,85,79.24,18,1010.0 -2015,4,28,17,0,60,77.16,18,1010.0 -2015,4,28,17,30,234,82.2,17,1010.0 -2015,4,28,18,0,129,80.61,17,1010.0 -2015,4,28,18,30,40,85.93,16,1010.0 -2015,4,28,19,0,0,90.34,15,1010.0 -2015,4,28,19,30,0,96.4,14,1010.0 -2015,4,28,20,0,0,94.63,14,1010.0 -2015,4,28,20,30,0,100.0,14,1010.0 -2015,4,28,21,0,0,98.41,14,1010.0 -2015,4,28,21,30,0,98.42,13,1010.0 -2015,4,28,22,0,0,96.38,13,1010.0 -2015,4,28,22,30,0,100.0,13,1010.0 -2015,4,28,23,0,0,100.0,13,1010.0 -2015,4,28,23,30,0,100.0,12,1010.0 -2015,4,29,0,0,0,99.94,12,1010.0 -2015,4,29,0,30,0,99.92,12,1010.0 -2015,4,29,1,0,0,98.62,12,1010.0 -2015,4,29,1,30,0,100.0,11,1010.0 -2015,4,29,2,0,0,100.0,11,1010.0 -2015,4,29,2,30,0,100.0,11,1010.0 -2015,4,29,3,0,0,100.0,11,1010.0 -2015,4,29,3,30,0,100.0,11,1010.0 -2015,4,29,4,0,0,100.0,11,1010.0 -2015,4,29,4,30,0,100.0,10,1010.0 -2015,4,29,5,0,0,100.0,10,1010.0 -2015,4,29,5,30,0,100.0,10,1010.0 -2015,4,29,6,0,27,99.49000000000001,11,1010.0 -2015,4,29,6,30,113,93.14,12,1010.0 -2015,4,29,7,0,221,87.42,13,1010.0 -2015,4,29,7,30,335,81.93,14,1010.0 -2015,4,29,8,0,452,74.18,16,1010.0 -2015,4,29,8,30,563,69.59,16,1010.0 -2015,4,29,9,0,668,64.53,17,1010.0 -2015,4,29,9,30,762,60.58,18,1010.0 -2015,4,29,10,0,844,57.27,19,1010.0 -2015,4,29,10,30,912,57.25,19,1010.0 -2015,4,29,11,0,964,54.83,20,1010.0 -2015,4,29,11,30,1000,54.82,20,1010.0 -2015,4,29,12,0,1019,52.94,21,1010.0 -2015,4,29,12,30,1021,52.92,21,1010.0 -2015,4,29,13,0,1004,51.21,22,1010.0 -2015,4,29,13,30,971,51.19,22,1010.0 -2015,4,29,14,0,920,52.44,22,1010.0 -2015,4,29,14,30,855,52.43,22,1010.0 -2015,4,29,15,0,776,53.68,22,1010.0 -2015,4,29,15,30,685,53.68,22,1010.0 -2015,4,29,16,0,584,55.19,22,1010.0 -2015,4,29,16,30,476,58.67,21,1010.0 -2015,4,29,17,0,363,63.56,21,1010.0 -2015,4,29,17,30,249,67.59,20,1010.0 -2015,4,29,18,0,140,78.27,19,1010.0 -2015,4,29,18,30,46,88.72,18,1010.0 -2015,4,29,19,0,0,87.5,17,1010.0 -2015,4,29,19,30,0,87.52,16,1010.0 -2015,4,29,20,0,0,85.95,16,1010.0 -2015,4,29,20,30,0,91.64,15,1010.0 -2015,4,29,21,0,0,90.3,15,1010.0 -2015,4,29,21,30,0,90.31,15,1010.0 -2015,4,29,22,0,0,88.69,15,1010.0 -2015,4,29,22,30,0,94.59,14,1010.0 -2015,4,29,23,0,0,92.59,14,1010.0 -2015,4,29,23,30,0,92.59,14,1010.0 -2015,4,30,0,0,0,90.37,14,1010.0 -2015,4,30,0,30,0,96.42,13,1010.0 -2015,4,30,1,0,0,93.96000000000001,13,1010.0 -2015,4,30,1,30,0,93.95,13,1010.0 -2015,4,30,2,0,0,91.46000000000001,13,1010.0 -2015,4,30,2,30,0,97.65,12,1010.0 -2015,4,30,3,0,0,95.28,12,1010.0 -2015,4,30,3,30,0,95.28,12,1010.0 -2015,4,30,4,0,0,93.34,12,1010.0 -2015,4,30,4,30,0,93.36,12,1010.0 -2015,4,30,5,0,0,91.76,12,1010.0 -2015,4,30,5,30,0,85.98,13,1010.0 -2015,4,30,6,0,30,88.32000000000001,14,1010.0 -2015,4,30,6,30,119,82.83,15,1010.0 -2015,4,30,7,0,229,78.41,16,1010.0 -2015,4,30,7,30,344,73.60000000000001,17,1010.0 -2015,4,30,8,0,460,71.67,19,1010.0 -2015,4,30,8,30,572,67.36,20,1010.0 -2015,4,30,9,0,676,54.25,22,1010.0 -2015,4,30,9,30,770,54.25,23,1010.0 -2015,4,30,10,0,852,50.63,24,1010.0 -2015,4,30,10,30,920,50.620000000000005,24,1010.0 -2015,4,30,11,0,972,48.75,24,1010.0 -2015,4,30,11,30,1008,48.730000000000004,24,1010.0 -2015,4,30,12,0,1028,46.74,25,1010.0 -2015,4,30,12,30,1029,46.730000000000004,25,1010.0 -2015,4,30,13,0,1012,47.54,25,1010.0 -2015,4,30,13,30,979,47.52,25,1010.0 -2015,4,30,14,0,928,48.03,25,1010.0 -2015,4,30,14,30,863,48.01,25,1010.0 -2015,4,30,15,0,783,48.39,25,1010.0 -2015,4,30,15,30,692,48.39,25,1010.0 -2015,4,30,16,0,590,49.800000000000004,25,1010.0 -2015,4,30,16,30,480,52.86,25,1010.0 -2015,4,30,17,0,367,52.86,25,1010.0 -2015,4,30,17,30,252,56.14,23,1010.0 -2015,4,30,18,0,143,64.55,22,1010.0 -2015,4,30,18,30,48,68.62,21,1010.0 -2015,4,30,19,0,0,66.05,20,1010.0 -2015,4,30,19,30,0,70.28,19,1010.0 -2015,4,30,20,0,0,69.74,19,1010.0 -2015,4,30,20,30,0,74.25,18,1010.0 -2015,4,30,21,0,0,74.97,18,1010.0 -2015,4,30,21,30,0,79.84,17,1010.0 -2015,4,30,22,0,0,80.65,17,1010.0 -2015,4,30,22,30,0,85.93,16,1010.0 -2015,4,30,23,0,0,86.2,16,1010.0 -2015,4,30,23,30,0,91.88,15,1010.0 -2015,5,1,0,0,0,91.7,15,1010.0 -2015,5,1,0,30,0,97.79,15,1010.0 -2015,5,1,1,0,0,97.35000000000001,15,1010.0 -2015,5,1,1,30,0,97.35000000000001,14,1010.0 -2015,5,1,2,0,0,97.02,14,1010.0 -2015,5,1,2,30,0,100.0,14,1010.0 -2015,5,1,3,0,0,100.0,14,1010.0 -2015,5,1,3,30,0,100.0,13,1010.0 -2015,5,1,4,0,0,100.0,13,1010.0 -2015,5,1,4,30,0,100.0,13,1010.0 -2015,5,1,5,0,0,100.0,13,1010.0 -2015,5,1,5,30,0,96.96000000000001,14,1010.0 -2015,5,1,6,0,30,94.31,15,1010.0 -2015,5,1,6,30,117,88.49,16,1010.0 -2015,5,1,7,0,223,87.47,17,1010.0 -2015,5,1,7,30,335,82.13,18,1010.0 -2015,5,1,8,0,449,77.21000000000001,20,1010.0 -2015,5,1,8,30,432,72.61,21,1010.0 -2015,5,1,9,0,511,61.71,23,1010.0 -2015,5,1,9,30,753,61.71,24,1010.0 -2015,5,1,10,0,833,56.6,25,1010.0 -2015,5,1,10,30,900,56.59,25,1010.0 -2015,5,1,11,0,951,53.79,25,1010.0 -2015,5,1,11,30,987,53.78,25,1010.0 -2015,5,1,12,0,515,51.550000000000004,26,1010.0 -2015,5,1,12,30,602,51.54,26,1010.0 -2015,5,1,13,0,593,52.57,26,1010.0 -2015,5,1,13,30,259,52.550000000000004,26,1010.0 -2015,5,1,14,0,245,52.58,26,1010.0 -2015,5,1,14,30,242,52.57,26,1010.0 -2015,5,1,15,0,282,51.44,26,1010.0 -2015,5,1,15,30,239,51.43,26,1010.0 -2015,5,1,16,0,462,51.82,26,1010.0 -2015,5,1,16,30,297,51.82,26,1010.0 -2015,5,1,17,0,221,53.4,26,1010.0 -2015,5,1,17,30,190,56.660000000000004,25,1010.0 -2015,5,1,18,0,106,61.230000000000004,24,1010.0 -2015,5,1,18,30,35,65.04,23,1010.0 -2015,5,1,19,0,0,64.35,22,1010.0 -2015,5,1,19,30,0,68.42,21,1010.0 -2015,5,1,20,0,0,69.10000000000001,21,1010.0 -2015,5,1,20,30,0,73.5,20,1010.0 -2015,5,1,21,0,0,79.39,19,1010.0 -2015,5,1,21,30,0,84.51,18,1010.0 -2015,5,1,22,0,0,85.29,18,1010.0 -2015,5,1,22,30,0,90.83,18,1010.0 -2015,5,1,23,0,0,90.96000000000001,18,1010.0 -2015,5,1,23,30,0,90.94,17,1010.0 -2015,5,2,0,0,0,90.42,17,1010.0 -2015,5,2,0,30,0,96.33,16,1010.0 -2015,5,2,1,0,0,95.69,16,1010.0 -2015,5,2,1,30,0,95.68,16,1010.0 -2015,5,2,2,0,0,95.23,16,1010.0 -2015,5,2,2,30,0,100.0,15,1010.0 -2015,5,2,3,0,0,100.0,15,1010.0 -2015,5,2,3,30,0,100.0,15,1010.0 -2015,5,2,4,0,0,100.0,15,1010.0 -2015,5,2,4,30,0,100.0,14,1010.0 -2015,5,2,5,0,0,100.0,14,1010.0 -2015,5,2,5,30,0,100.0,15,1010.0 -2015,5,2,6,0,29,98.48,16,1010.0 -2015,5,2,6,30,114,92.44,17,1010.0 -2015,5,2,7,0,217,90.92,18,1010.0 -2015,5,2,7,30,327,85.42,19,1010.0 -2015,5,2,8,0,438,77.01,21,1010.0 -2015,5,2,8,30,546,72.45,22,1010.0 -2015,5,2,9,0,647,60.370000000000005,24,1010.0 -2015,5,2,9,30,739,60.36,24,1010.0 -2015,5,2,10,0,818,55.730000000000004,25,1010.0 -2015,5,2,10,30,885,55.71,25,1010.0 -2015,5,2,11,0,935,53.27,26,1010.0 -2015,5,2,11,30,970,53.25,26,1010.0 -2015,5,2,12,0,480,53.94,26,1010.0 -2015,5,2,12,30,500,53.92,26,1010.0 -2015,5,2,13,0,395,54.13,26,1010.0 -2015,5,2,13,30,957,54.120000000000005,26,1010.0 -2015,5,2,14,0,909,54.04,26,1010.0 -2015,5,2,14,30,846,57.31,25,1010.0 -2015,5,2,15,0,762,57.09,25,1010.0 -2015,5,2,15,30,673,57.07,25,1010.0 -2015,5,2,16,0,575,57.58,25,1010.0 -2015,5,2,16,30,468,61.120000000000005,24,1010.0 -2015,5,2,17,0,360,67.81,23,1010.0 -2015,5,2,17,30,248,72.04,22,1010.0 -2015,5,2,18,0,142,79.74,21,1010.0 -2015,5,2,18,30,49,84.8,20,1010.0 -2015,5,2,19,0,0,83.48,19,1010.0 -2015,5,2,19,30,0,88.87,18,1010.0 -2015,5,2,20,0,0,86.48,18,1010.0 -2015,5,2,20,30,0,92.11,17,1010.0 -2015,5,2,21,0,0,90.56,17,1010.0 -2015,5,2,21,30,0,90.56,17,1010.0 -2015,5,2,22,0,0,89.34,17,1010.0 -2015,5,2,22,30,0,95.18,16,1010.0 -2015,5,2,23,0,0,93.98,16,1010.0 -2015,5,2,23,30,0,93.97,16,1010.0 -2015,5,3,0,0,0,92.92,16,1010.0 -2015,5,3,0,30,0,92.9,16,1010.0 -2015,5,3,1,0,0,92.3,16,1010.0 -2015,5,3,1,30,0,98.38,15,1010.0 -2015,5,3,2,0,0,98.02,15,1010.0 -2015,5,3,2,30,0,98.01,15,1010.0 -2015,5,3,3,0,0,98.04,15,1010.0 -2015,5,3,3,30,0,98.04,15,1010.0 -2015,5,3,4,0,0,92.3,16,1010.0 -2015,5,3,4,30,0,92.31,16,1010.0 -2015,5,3,5,0,0,93.61,16,1010.0 -2015,5,3,5,30,0,87.87,17,1010.0 -2015,5,3,6,0,35,91.10000000000001,18,1010.0 -2015,5,3,6,30,123,85.61,19,1010.0 -2015,5,3,7,0,229,82.83,20,1010.0 -2015,5,3,7,30,342,77.9,21,1010.0 -2015,5,3,8,0,454,67.9,23,1010.0 -2015,5,3,8,30,563,67.9,23,1010.0 -2015,5,3,9,0,664,64.79,24,1010.0 -2015,5,3,9,30,756,64.79,24,1010.0 -2015,5,3,10,0,835,62.88,25,1010.0 -2015,5,3,10,30,901,62.870000000000005,25,1010.0 -2015,5,3,11,0,282,60.45,26,1010.0 -2015,5,3,11,30,989,60.43,26,1010.0 -2015,5,3,12,0,661,60.410000000000004,26,1010.0 -2015,5,3,12,30,533,60.39,26,1010.0 -2015,5,3,13,0,524,60.24,26,1010.0 -2015,5,3,13,30,956,60.22,26,1010.0 -2015,5,3,14,0,907,60.38,26,1010.0 -2015,5,3,14,30,843,60.36,26,1010.0 -2015,5,3,15,0,762,60.56,26,1010.0 -2015,5,3,15,30,673,64.25,25,1010.0 -2015,5,3,16,0,482,65.13,25,1010.0 -2015,5,3,16,30,393,69.12,24,1010.0 -2015,5,3,17,0,350,71.62,24,1010.0 -2015,5,3,17,30,246,76.05,23,1010.0 -2015,5,3,18,0,141,82.15,22,1010.0 -2015,5,3,18,30,50,87.32000000000001,21,1010.0 -2015,5,3,19,0,0,89.62,20,1010.0 -2015,5,3,19,30,0,89.64,20,1010.0 -2015,5,3,20,0,0,88.65,20,1010.0 -2015,5,3,20,30,0,94.33,19,1010.0 -2015,5,3,21,0,0,94.09,19,1010.0 -2015,5,3,21,30,0,94.09,19,1010.0 -2015,5,3,22,0,0,94.64,19,1010.0 -2015,5,3,22,30,0,100.0,18,1010.0 -2015,5,3,23,0,0,100.0,18,1010.0 -2015,5,3,23,30,0,100.0,18,1010.0 -2015,5,4,0,0,0,100.0,18,1010.0 -2015,5,4,0,30,0,100.0,18,1010.0 -2015,5,4,1,0,0,100.0,18,1010.0 -2015,5,4,1,30,0,100.0,18,1010.0 -2015,5,4,2,0,0,100.0,18,1010.0 -2015,5,4,2,30,0,100.0,18,1010.0 -2015,5,4,3,0,0,100.0,18,1010.0 -2015,5,4,3,30,0,100.0,18,1010.0 -2015,5,4,4,0,0,100.0,18,1010.0 -2015,5,4,4,30,0,100.0,17,1010.0 -2015,5,4,5,0,0,100.0,17,1010.0 -2015,5,4,5,30,0,99.85000000000001,18,1010.0 -2015,5,4,6,0,36,96.01,20,1010.0 -2015,5,4,6,30,123,90.27,21,1010.0 -2015,5,4,7,0,229,81.01,22,1010.0 -2015,5,4,7,30,340,81.03,22,1010.0 -2015,5,4,8,0,453,73.58,23,1010.0 -2015,5,4,8,30,561,69.29,24,1010.0 -2015,5,4,9,0,662,64.29,25,1010.0 -2015,5,4,9,30,754,64.29,25,1010.0 -2015,5,4,10,0,834,64.47,25,1010.0 -2015,5,4,10,30,901,64.46000000000001,25,1010.0 -2015,5,4,11,0,952,60.93,26,1010.0 -2015,5,4,11,30,988,60.910000000000004,26,1010.0 -2015,5,4,12,0,1009,60.65,26,1010.0 -2015,5,4,12,30,1011,60.63,26,1010.0 -2015,5,4,13,0,995,60.33,26,1010.0 -2015,5,4,13,30,963,60.31,26,1010.0 -2015,5,4,14,0,915,59.99,26,1010.0 -2015,5,4,14,30,852,63.63,25,1010.0 -2015,5,4,15,0,774,63.51,25,1010.0 -2015,5,4,15,30,684,67.4,24,1010.0 -2015,5,4,16,0,584,67.7,24,1010.0 -2015,5,4,16,30,477,71.89,23,1010.0 -2015,5,4,17,0,366,73.42,23,1010.0 -2015,5,4,17,30,254,78.01,22,1010.0 -2015,5,4,18,0,146,85.7,22,1010.0 -2015,5,4,18,30,53,91.14,21,1010.0 -2015,5,4,19,0,0,90.9,20,1010.0 -2015,5,4,19,30,0,90.91,20,1010.0 -2015,5,4,20,0,0,91.09,20,1010.0 -2015,5,4,20,30,0,91.10000000000001,20,1010.0 -2015,5,4,21,0,0,91.39,20,1010.0 -2015,5,4,21,30,0,97.23,19,1010.0 -2015,5,4,22,0,0,97.65,19,1010.0 -2015,5,4,22,30,0,97.63,19,1010.0 -2015,5,4,23,0,0,98.29,19,1010.0 -2015,5,4,23,30,0,98.27,19,1010.0 -2015,5,5,0,0,0,99.52,19,1010.0 -2015,5,5,0,30,0,99.5,19,1010.0 -2015,5,5,1,0,0,100.0,19,1010.0 -2015,5,5,1,30,0,100.0,19,1010.0 -2015,5,5,2,0,0,100.0,19,1010.0 -2015,5,5,2,30,0,100.0,19,1010.0 -2015,5,5,3,0,0,100.0,19,1010.0 -2015,5,5,3,30,0,100.0,19,1010.0 -2015,5,5,4,0,0,100.0,19,1010.0 -2015,5,5,4,30,0,100.0,19,1010.0 -2015,5,5,5,0,0,100.0,19,1010.0 -2015,5,5,5,30,0,100.0,20,1010.0 -2015,5,5,6,0,27,100.0,21,1010.0 -2015,5,5,6,30,94,95.60000000000001,22,1010.0 -2015,5,5,7,0,134,94.61,23,1010.0 -2015,5,5,7,30,148,94.61,24,1010.0 -2015,5,5,8,0,56,89.94,25,1010.0 -2015,5,5,8,30,203,89.94,25,1010.0 -2015,5,5,9,0,215,83.16,26,1010.0 -2015,5,5,9,30,305,83.16,26,1010.0 -2015,5,5,10,0,644,77.12,26,1010.0 -2015,5,5,10,30,615,77.11,26,1010.0 -2015,5,5,11,0,698,76.75,27,1010.0 -2015,5,5,11,30,718,76.73,27,1010.0 -2015,5,5,12,0,954,71.94,27,1010.0 -2015,5,5,12,30,270,71.92,27,1010.0 -2015,5,5,13,0,567,71.41,27,1010.0 -2015,5,5,13,30,329,75.71000000000001,26,1010.0 -2015,5,5,14,0,314,75.09,26,1010.0 -2015,5,5,14,30,462,75.07000000000001,26,1010.0 -2015,5,5,15,0,585,74.87,26,1010.0 -2015,5,5,15,30,445,79.42,25,1010.0 -2015,5,5,16,0,550,79.51,25,1010.0 -2015,5,5,16,30,447,84.38,25,1010.0 -2015,5,5,17,0,293,84.87,25,1010.0 -2015,5,5,17,30,191,90.13,24,1010.0 -2015,5,5,18,0,109,90.49,23,1010.0 -2015,5,5,18,30,39,96.16,22,1010.0 -2015,5,5,19,0,0,96.04,22,1010.0 -2015,5,5,19,30,0,96.06,22,1010.0 -2015,5,5,20,0,0,96.35000000000001,22,1010.0 -2015,5,5,20,30,0,96.37,22,1010.0 -2015,5,5,21,0,0,96.43,22,1010.0 -2015,5,5,21,30,0,96.43,22,1010.0 -2015,5,5,22,0,0,96.29,22,1010.0 -2015,5,5,22,30,0,96.28,22,1010.0 -2015,5,5,23,0,0,95.86,22,1010.0 -2015,5,5,23,30,0,95.85000000000001,22,1010.0 -2015,5,6,0,0,0,94.93,22,1010.0 -2015,5,6,0,30,0,100.0,21,1010.0 -2015,5,6,1,0,0,99.88,21,1010.0 -2015,5,6,1,30,0,99.86,21,1010.0 -2015,5,6,2,0,0,98.74000000000001,21,1010.0 -2015,5,6,2,30,0,98.72,21,1010.0 -2015,5,6,3,0,0,98.08,21,1010.0 -2015,5,6,3,30,0,98.07000000000001,21,1010.0 -2015,5,6,4,0,0,98.02,21,1010.0 -2015,5,6,4,30,0,98.02,21,1010.0 -2015,5,6,5,0,0,98.57000000000001,21,1010.0 -2015,5,6,5,30,0,98.59,21,1010.0 -2015,5,6,6,0,33,96.28,22,1010.0 -2015,5,6,6,30,112,96.3,22,1010.0 -2015,5,6,7,0,210,94.63,23,1010.0 -2015,5,6,7,30,213,89.11,24,1010.0 -2015,5,6,8,0,348,85.10000000000001,25,1010.0 -2015,5,6,8,30,480,85.09,25,1010.0 -2015,5,6,9,0,338,80.09,26,1010.0 -2015,5,6,9,30,247,80.08,26,1010.0 -2015,5,6,10,0,367,75.15,27,1010.0 -2015,5,6,10,30,640,75.14,27,1010.0 -2015,5,6,11,0,659,75.51,27,1010.0 -2015,5,6,11,30,234,75.49,27,1010.0 -2015,5,6,12,0,819,71.53,28,1010.0 -2015,5,6,12,30,792,71.51,28,1010.0 -2015,5,6,13,0,570,71.5,28,1010.0 -2015,5,6,13,30,918,75.77,27,1010.0 -2015,5,6,14,0,568,75.55,27,1010.0 -2015,5,6,14,30,320,75.53,27,1010.0 -2015,5,6,15,0,377,75.27,27,1010.0 -2015,5,6,15,30,640,79.8,26,1010.0 -2015,5,6,16,0,546,79.94,26,1010.0 -2015,5,6,16,30,325,84.81,25,1010.0 -2015,5,6,17,0,340,86.17,25,1010.0 -2015,5,6,17,30,234,91.48,24,1010.0 -2015,5,6,18,0,135,92.44,24,1010.0 -2015,5,6,18,30,49,98.18,23,1010.0 -2015,5,6,19,0,0,97.91,23,1010.0 -2015,5,6,19,30,0,97.93,23,1010.0 -2015,5,6,20,0,0,98.12,23,1010.0 -2015,5,6,20,30,0,100.0,22,1010.0 -2015,5,6,21,0,0,100.0,22,1010.0 -2015,5,6,21,30,0,100.0,22,1010.0 -2015,5,6,22,0,0,100.0,22,1010.0 -2015,5,6,22,30,0,100.0,22,1010.0 -2015,5,6,23,0,0,100.0,22,1010.0 -2015,5,6,23,30,0,100.0,22,1010.0 -2015,5,7,0,0,0,100.0,22,1010.0 -2015,5,7,0,30,0,100.0,22,1010.0 -2015,5,7,1,0,0,100.0,22,1010.0 -2015,5,7,1,30,0,100.0,22,1010.0 -2015,5,7,2,0,0,100.0,22,1010.0 -2015,5,7,2,30,0,100.0,22,1010.0 -2015,5,7,3,0,0,100.0,22,1010.0 -2015,5,7,3,30,0,100.0,22,1010.0 -2015,5,7,4,0,0,100.0,22,1010.0 -2015,5,7,4,30,0,100.0,22,1010.0 -2015,5,7,5,0,0,100.0,22,1010.0 -2015,5,7,5,30,0,100.0,22,1010.0 -2015,5,7,6,0,33,100.0,23,1010.0 -2015,5,7,6,30,114,100.0,23,1010.0 -2015,5,7,7,0,212,99.02,24,1010.0 -2015,5,7,7,30,317,99.03,24,1010.0 -2015,5,7,8,0,424,92.79,25,1010.0 -2015,5,7,8,30,527,92.8,25,1010.0 -2015,5,7,9,0,624,84.97,26,1010.0 -2015,5,7,9,30,384,84.97,26,1010.0 -2015,5,7,10,0,425,79.62,27,1010.0 -2015,5,7,10,30,637,79.60000000000001,27,1010.0 -2015,5,7,11,0,673,75.31,28,1010.0 -2015,5,7,11,30,938,75.29,28,1010.0 -2015,5,7,12,0,510,74.77,28,1010.0 -2015,5,7,12,30,801,74.74,28,1010.0 -2015,5,7,13,0,545,74.4,28,1010.0 -2015,5,7,13,30,694,78.85000000000001,27,1010.0 -2015,5,7,14,0,435,78.51,27,1010.0 -2015,5,7,14,30,577,78.49,27,1010.0 -2015,5,7,15,0,478,78.26,27,1010.0 -2015,5,7,15,30,376,82.99,26,1010.0 -2015,5,7,16,0,301,83.75,26,1010.0 -2015,5,7,16,30,254,88.84,25,1010.0 -2015,5,7,17,0,197,90.54,25,1010.0 -2015,5,7,17,30,216,96.10000000000001,25,1010.0 -2015,5,7,18,0,91,97.13,25,1010.0 -2015,5,7,18,30,28,97.13,24,1010.0 -2015,5,7,19,0,0,97.86,24,1010.0 -2015,5,7,19,30,0,97.87,24,1010.0 -2015,5,7,20,0,0,98.65,24,1010.0 -2015,5,7,20,30,0,98.65,24,1010.0 -2015,5,7,21,0,0,98.92,24,1010.0 -2015,5,7,21,30,0,98.92,24,1010.0 -2015,5,7,22,0,0,99.05,24,1010.0 -2015,5,7,22,30,0,99.07000000000001,24,1010.0 -2015,5,7,23,0,0,99.21000000000001,24,1010.0 -2015,5,7,23,30,0,100.0,24,1010.0 -2015,5,8,0,0,0,100.0,24,1010.0 -2015,5,8,0,30,0,100.0,23,1010.0 -2015,5,8,1,0,0,100.0,23,1010.0 -2015,5,8,1,30,0,100.0,23,1010.0 -2015,5,8,2,0,0,100.0,23,1010.0 -2015,5,8,2,30,0,100.0,23,1010.0 -2015,5,8,3,0,0,100.0,23,1010.0 -2015,5,8,3,30,0,100.0,23,1010.0 -2015,5,8,4,0,0,100.0,23,1010.0 -2015,5,8,4,30,0,100.0,23,1010.0 -2015,5,8,5,0,0,100.0,23,1010.0 -2015,5,8,5,30,0,100.0,23,1010.0 -2015,5,8,6,0,33,98.78,24,1010.0 -2015,5,8,6,30,114,98.8,24,1010.0 -2015,5,8,7,0,214,94.53,25,1010.0 -2015,5,8,7,30,121,94.54,25,1010.0 -2015,5,8,8,0,148,87.81,26,1010.0 -2015,5,8,8,30,236,87.82000000000001,26,1010.0 -2015,5,8,9,0,623,82.07000000000001,27,1010.0 -2015,5,8,9,30,511,82.07000000000001,27,1010.0 -2015,5,8,10,0,523,81.44,27,1010.0 -2015,5,8,10,30,424,81.43,27,1010.0 -2015,5,8,11,0,392,81.09,28,1010.0 -2015,5,8,11,30,685,81.07000000000001,28,1010.0 -2015,5,8,12,0,457,76.58,28,1010.0 -2015,5,8,12,30,646,76.56,28,1010.0 -2015,5,8,13,0,685,76.84,28,1010.0 -2015,5,8,13,30,721,76.83,28,1010.0 -2015,5,8,14,0,685,76.88,28,1010.0 -2015,5,8,14,30,725,81.48,27,1010.0 -2015,5,8,15,0,602,81.41,27,1010.0 -2015,5,8,15,30,415,81.4,27,1010.0 -2015,5,8,16,0,283,81.38,27,1010.0 -2015,5,8,16,30,254,86.3,26,1010.0 -2015,5,8,17,0,148,86.59,26,1010.0 -2015,5,8,17,30,133,91.87,25,1010.0 -2015,5,8,18,0,75,92.9,25,1010.0 -2015,5,8,18,30,25,98.62,24,1010.0 -2015,5,8,19,0,0,99.17,24,1010.0 -2015,5,8,19,30,0,99.16,24,1010.0 -2015,5,8,20,0,0,100.0,24,1010.0 -2015,5,8,20,30,0,100.0,24,1010.0 -2015,5,8,21,0,0,100.0,24,1010.0 -2015,5,8,21,30,0,100.0,24,1010.0 -2015,5,8,22,0,0,100.0,24,1010.0 -2015,5,8,22,30,0,100.0,24,1010.0 -2015,5,8,23,0,0,100.0,24,1010.0 -2015,5,8,23,30,0,100.0,24,1010.0 -2015,5,9,0,0,0,100.0,24,1010.0 -2015,5,9,0,30,0,100.0,24,1010.0 -2015,5,9,1,0,0,100.0,24,1010.0 -2015,5,9,1,30,0,100.0,24,1010.0 -2015,5,9,2,0,0,100.0,24,1010.0 -2015,5,9,2,30,0,100.0,24,1010.0 -2015,5,9,3,0,0,99.87,24,1010.0 -2015,5,9,3,30,0,100.0,23,1010.0 -2015,5,9,4,0,0,100.0,23,1010.0 -2015,5,9,4,30,0,100.0,23,1010.0 -2015,5,9,5,0,0,100.0,23,1010.0 -2015,5,9,5,30,0,100.0,23,1010.0 -2015,5,9,6,0,26,100.0,24,1010.0 -2015,5,9,6,30,90,100.0,24,1010.0 -2015,5,9,7,0,126,96.18,25,1010.0 -2015,5,9,7,30,191,96.18,25,1010.0 -2015,5,9,8,0,425,89.18,26,1010.0 -2015,5,9,8,30,128,89.18,26,1010.0 -2015,5,9,9,0,212,87.92,27,1010.0 -2015,5,9,9,30,182,87.91,27,1010.0 -2015,5,9,10,0,380,82.15,27,1010.0 -2015,5,9,10,30,411,82.14,27,1010.0 -2015,5,9,11,0,654,76.17,28,1010.0 -2015,5,9,11,30,617,76.15,28,1010.0 -2015,5,9,12,0,835,74.99,28,1010.0 -2015,5,9,12,30,964,74.97,28,1010.0 -2015,5,9,13,0,756,74.67,28,1010.0 -2015,5,9,13,30,919,74.65,28,1010.0 -2015,5,9,14,0,873,74.48,28,1010.0 -2015,5,9,14,30,811,74.46000000000001,28,1010.0 -2015,5,9,15,0,736,74.28,28,1010.0 -2015,5,9,15,30,650,78.72,27,1000.0 -2015,5,9,16,0,440,79.24,27,1000.0 -2015,5,9,16,30,342,84.03,26,1000.0 -2015,5,9,17,0,144,85.01,26,1000.0 -2015,5,9,17,30,63,90.19,25,1000.0 -2015,5,9,18,0,35,91.43,25,1000.0 -2015,5,9,18,30,13,97.06,24,1010.0 -2015,5,9,19,0,0,98.2,24,1010.0 -2015,5,9,19,30,0,98.22,24,1010.0 -2015,5,9,20,0,0,99.55,24,1010.0 -2015,5,9,20,30,0,99.56,24,1010.0 -2015,5,9,21,0,0,100.0,24,1010.0 -2015,5,9,21,30,0,100.0,24,1010.0 -2015,5,9,22,0,0,100.0,24,1010.0 -2015,5,9,22,30,0,100.0,24,1010.0 -2015,5,9,23,0,0,100.0,24,1010.0 -2015,5,9,23,30,0,100.0,24,1010.0 -2015,5,10,0,0,0,100.0,24,1010.0 -2015,5,10,0,30,0,100.0,24,1010.0 -2015,5,10,1,0,0,100.0,24,1010.0 -2015,5,10,1,30,0,100.0,24,1010.0 -2015,5,10,2,0,0,99.69,24,1010.0 -2015,5,10,2,30,0,99.69,24,1010.0 -2015,5,10,3,0,0,99.36,24,1010.0 -2015,5,10,3,30,0,100.0,24,1010.0 -2015,5,10,4,0,0,100.0,24,1010.0 -2015,5,10,4,30,0,100.0,24,1010.0 -2015,5,10,5,0,0,100.0,24,1010.0 -2015,5,10,5,30,0,100.0,24,1010.0 -2015,5,10,6,0,40,97.3,24,1010.0 -2015,5,10,6,30,61,97.32000000000001,24,1010.0 -2015,5,10,7,0,92,90.84,25,1010.0 -2015,5,10,7,30,153,90.84,25,1010.0 -2015,5,10,8,0,250,87.69,26,1010.0 -2015,5,10,8,30,331,87.66,26,1010.0 -2015,5,10,9,0,383,81.05,26,1010.0 -2015,5,10,9,30,189,81.03,26,1010.0 -2015,5,10,10,0,208,76.67,27,1010.0 -2015,5,10,10,30,449,76.69,27,1010.0 -2015,5,10,11,0,589,77.64,27,1010.0 -2015,5,10,11,30,533,77.64,27,1010.0 -2015,5,10,12,0,434,73.54,28,1010.0 -2015,5,10,12,30,520,73.52,28,1010.0 -2015,5,10,13,0,585,74.39,28,1010.0 -2015,5,10,13,30,641,74.37,28,1010.0 -2015,5,10,14,0,636,75.73,28,1010.0 -2015,5,10,14,30,468,80.25,28,1010.0 -2015,5,10,15,0,304,81.71000000000001,28,1010.0 -2015,5,10,15,30,149,81.7,27,1010.0 -2015,5,10,16,0,200,83.51,27,1010.0 -2015,5,10,16,30,304,88.55,26,1010.0 -2015,5,10,17,0,97,90.31,26,1010.0 -2015,5,10,17,30,53,95.81,25,1010.0 -2015,5,10,18,0,9,96.45,25,1010.0 -2015,5,10,18,30,3,100.0,25,1010.0 -2015,5,10,19,0,0,100.0,25,1010.0 -2015,5,10,19,30,0,100.0,24,1010.0 -2015,5,10,20,0,0,100.0,24,1010.0 -2015,5,10,20,30,0,100.0,24,1010.0 -2015,5,10,21,0,0,100.0,24,1010.0 -2015,5,10,21,30,0,100.0,24,1010.0 -2015,5,10,22,0,0,100.0,24,1010.0 -2015,5,10,22,30,0,100.0,24,1010.0 -2015,5,10,23,0,0,100.0,24,1010.0 -2015,5,10,23,30,0,100.0,24,1010.0 -2015,5,11,0,0,0,100.0,24,1010.0 -2015,5,11,0,30,0,100.0,23,1010.0 -2015,5,11,1,0,0,100.0,23,1010.0 -2015,5,11,1,30,0,100.0,23,1010.0 -2015,5,11,2,0,0,100.0,23,1010.0 -2015,5,11,2,30,0,100.0,23,1010.0 -2015,5,11,3,0,0,100.0,23,1010.0 -2015,5,11,3,30,0,100.0,23,1010.0 -2015,5,11,4,0,0,100.0,23,1010.0 -2015,5,11,4,30,0,100.0,23,1010.0 -2015,5,11,5,0,0,100.0,23,1010.0 -2015,5,11,5,30,0,100.0,23,1010.0 -2015,5,11,6,0,19,100.0,24,1010.0 -2015,5,11,6,30,68,100.0,24,1010.0 -2015,5,11,7,0,102,100.0,25,1010.0 -2015,5,11,7,30,267,100.0,25,1010.0 -2015,5,11,8,0,369,94.03,25,1010.0 -2015,5,11,8,30,160,94.04,25,1010.0 -2015,5,11,9,0,220,84.65,26,1010.0 -2015,5,11,9,30,508,84.65,26,1010.0 -2015,5,11,10,0,473,81.83,26,1010.0 -2015,5,11,10,30,411,81.83,26,1010.0 -2015,5,11,11,0,592,76.85000000000001,27,1010.0 -2015,5,11,11,30,614,76.85000000000001,27,1010.0 -2015,5,11,12,0,507,77.28,27,1010.0 -2015,5,11,12,30,422,77.28,27,1010.0 -2015,5,11,13,0,274,77.71000000000001,27,1010.0 -2015,5,11,13,30,472,82.41,26,1010.0 -2015,5,11,14,0,727,83.21000000000001,26,1010.0 -2015,5,11,14,30,634,83.2,26,1010.0 -2015,5,11,15,0,696,83.97,26,1010.0 -2015,5,11,15,30,623,83.96000000000001,26,1010.0 -2015,5,11,16,0,536,84.61,26,1010.0 -2015,5,11,16,30,301,89.76,25,1010.0 -2015,5,11,17,0,231,90.87,25,1010.0 -2015,5,11,17,30,142,96.45,24,1010.0 -2015,5,11,18,0,103,96.99000000000001,24,1010.0 -2015,5,11,18,30,37,100.0,23,1010.0 -2015,5,11,19,0,0,100.0,23,1010.0 -2015,5,11,19,30,0,100.0,23,1010.0 -2015,5,11,20,0,0,100.0,23,1010.0 -2015,5,11,20,30,0,100.0,22,1010.0 -2015,5,11,21,0,0,100.0,22,1010.0 -2015,5,11,21,30,0,100.0,22,1010.0 -2015,5,11,22,0,0,100.0,22,1010.0 -2015,5,11,22,30,0,100.0,22,1010.0 -2015,5,11,23,0,0,100.0,22,1010.0 -2015,5,11,23,30,0,100.0,22,1010.0 -2015,5,12,0,0,0,100.0,22,1010.0 -2015,5,12,0,30,0,100.0,22,1010.0 -2015,5,12,1,0,0,100.0,22,1010.0 -2015,5,12,1,30,0,100.0,22,1010.0 -2015,5,12,2,0,0,100.0,22,1010.0 -2015,5,12,2,30,0,100.0,22,1010.0 -2015,5,12,3,0,0,99.98,22,1010.0 -2015,5,12,3,30,0,100.0,22,1010.0 -2015,5,12,4,0,0,100.0,22,1010.0 -2015,5,12,4,30,0,100.0,21,1010.0 -2015,5,12,5,0,0,100.0,21,1010.0 -2015,5,12,5,30,0,100.0,21,1010.0 -2015,5,12,6,0,6,99.88,22,1010.0 -2015,5,12,6,30,19,99.91,22,1010.0 -2015,5,12,7,0,29,100.0,22,1010.0 -2015,5,12,7,30,59,100.0,22,1010.0 -2015,5,12,8,0,89,100.0,23,1010.0 -2015,5,12,8,30,156,100.0,23,1010.0 -2015,5,12,9,0,144,99.23,23,1010.0 -2015,5,12,9,30,89,99.26,23,1010.0 -2015,5,12,10,0,156,94.31,24,1010.0 -2015,5,12,10,30,264,94.31,24,1010.0 -2015,5,12,11,0,279,88.96000000000001,25,1010.0 -2015,5,12,11,30,452,88.96000000000001,25,1010.0 -2015,5,12,12,0,430,88.39,25,1010.0 -2015,5,12,12,30,543,88.38,25,1010.0 -2015,5,12,13,0,655,82.66,26,1010.0 -2015,5,12,13,30,594,82.64,26,1010.0 -2015,5,12,14,0,516,82.49,26,1010.0 -2015,5,12,14,30,513,82.47,26,1010.0 -2015,5,12,15,0,455,82.45,26,1010.0 -2015,5,12,15,30,331,87.46000000000001,25,1010.0 -2015,5,12,16,0,249,87.94,25,1010.0 -2015,5,12,16,30,199,87.92,25,1010.0 -2015,5,12,17,0,181,89.29,25,1010.0 -2015,5,12,17,30,157,94.77,24,1010.0 -2015,5,12,18,0,107,100.0,24,1010.0 -2015,5,12,18,30,42,100.0,23,1010.0 -2015,5,12,19,0,0,100.0,22,1010.0 -2015,5,12,19,30,0,100.0,22,1010.0 -2015,5,12,20,0,0,100.0,22,1010.0 -2015,5,12,20,30,0,100.0,22,1010.0 -2015,5,12,21,0,0,100.0,22,1010.0 -2015,5,12,21,30,0,100.0,22,1010.0 -2015,5,12,22,0,0,100.0,22,1010.0 -2015,5,12,22,30,0,100.0,22,1010.0 -2015,5,12,23,0,0,100.0,22,1010.0 -2015,5,12,23,30,0,100.0,22,1010.0 -2015,5,13,0,0,0,100.0,22,1010.0 -2015,5,13,0,30,0,100.0,22,1010.0 -2015,5,13,1,0,0,100.0,22,1010.0 -2015,5,13,1,30,0,100.0,22,1010.0 -2015,5,13,2,0,0,100.0,22,1010.0 -2015,5,13,2,30,0,100.0,21,1010.0 -2015,5,13,3,0,0,100.0,21,1010.0 -2015,5,13,3,30,0,100.0,21,1010.0 -2015,5,13,4,0,0,100.0,21,1010.0 -2015,5,13,4,30,0,100.0,21,1010.0 -2015,5,13,5,0,0,100.0,22,1010.0 -2015,5,13,5,30,0,100.0,22,1010.0 -2015,5,13,6,0,13,100.0,23,1010.0 -2015,5,13,6,30,42,100.0,23,1010.0 -2015,5,13,7,0,71,100.0,23,1010.0 -2015,5,13,7,30,192,100.0,23,1010.0 -2015,5,13,8,0,204,100.0,24,1010.0 -2015,5,13,8,30,259,100.0,24,1010.0 -2015,5,13,9,0,190,100.0,24,1010.0 -2015,5,13,9,30,223,100.0,24,1010.0 -2015,5,13,10,0,278,96.31,25,1010.0 -2015,5,13,10,30,326,96.32000000000001,25,1010.0 -2015,5,13,11,0,395,94.96000000000001,25,1010.0 -2015,5,13,11,30,424,94.96000000000001,25,1010.0 -2015,5,13,12,0,400,92.16,25,1010.0 -2015,5,13,12,30,367,92.15,25,1010.0 -2015,5,13,13,0,385,89.43,25,1010.0 -2015,5,13,13,30,483,89.41,25,1010.0 -2015,5,13,14,0,496,87.5,25,1010.0 -2015,5,13,14,30,439,87.48,25,1010.0 -2015,5,13,15,0,350,87.2,25,1010.0 -2015,5,13,15,30,269,87.18,25,1010.0 -2015,5,13,16,0,202,87.81,25,1010.0 -2015,5,13,16,30,178,93.19,24,1010.0 -2015,5,13,17,0,141,94.48,24,1010.0 -2015,5,13,17,30,123,100.0,23,1010.0 -2015,5,13,18,0,70,99.31,23,1010.0 -2015,5,13,18,30,28,99.31,23,1010.0 -2015,5,13,19,0,0,97.72,23,1010.0 -2015,5,13,19,30,0,97.72,23,1010.0 -2015,5,13,20,0,0,98.39,23,1010.0 -2015,5,13,20,30,0,98.39,23,1010.0 -2015,5,13,21,0,0,98.9,23,1010.0 -2015,5,13,21,30,0,98.89,23,1010.0 -2015,5,13,22,0,0,98.95,23,1010.0 -2015,5,13,22,30,0,100.0,22,1010.0 -2015,5,13,23,0,0,100.0,22,1010.0 -2015,5,13,23,30,0,100.0,22,1010.0 -2015,5,14,0,0,0,100.0,22,1010.0 -2015,5,14,0,30,0,100.0,22,1010.0 -2015,5,14,1,0,0,100.0,22,1010.0 -2015,5,14,1,30,0,100.0,22,1010.0 -2015,5,14,2,0,0,100.0,22,1010.0 -2015,5,14,2,30,0,100.0,22,1010.0 -2015,5,14,3,0,0,100.0,22,1010.0 -2015,5,14,3,30,0,100.0,22,1010.0 -2015,5,14,4,0,0,100.0,22,1010.0 -2015,5,14,4,30,0,100.0,22,1010.0 -2015,5,14,5,0,0,100.0,22,1010.0 -2015,5,14,5,30,0,100.0,22,1010.0 -2015,5,14,6,0,49,100.0,23,1010.0 -2015,5,14,6,30,135,100.0,23,1010.0 -2015,5,14,7,0,236,100.0,24,1010.0 -2015,5,14,7,30,343,100.0,25,1010.0 -2015,5,14,8,0,449,95.43,26,1010.0 -2015,5,14,8,30,552,89.95,26,1010.0 -2015,5,14,9,0,646,83.03,27,1010.0 -2015,5,14,9,30,734,83.02,27,1010.0 -2015,5,14,10,0,807,77.44,28,1010.0 -2015,5,14,10,30,870,77.41,28,1010.0 -2015,5,14,11,0,918,76.91,28,1010.0 -2015,5,14,11,30,951,76.9,28,1010.0 -2015,5,14,12,0,755,76.51,29,1010.0 -2015,5,14,12,30,702,76.5,29,1010.0 -2015,5,14,13,0,472,76.28,29,1010.0 -2015,5,14,13,30,129,76.26,28,1010.0 -2015,5,14,14,0,123,76.14,28,1010.0 -2015,5,14,14,30,98,76.12,28,1010.0 -2015,5,14,15,0,174,76.01,28,1010.0 -2015,5,14,15,30,204,80.55,27,1010.0 -2015,5,14,16,0,384,80.95,27,1010.0 -2015,5,14,16,30,232,85.83,26,1010.0 -2015,5,14,17,0,87,87.60000000000001,26,1010.0 -2015,5,14,17,30,141,92.93,25,1010.0 -2015,5,14,18,0,76,93.65,25,1010.0 -2015,5,14,18,30,30,99.4,24,1010.0 -2015,5,14,19,0,0,98.49000000000001,24,1010.0 -2015,5,14,19,30,0,100.0,23,1010.0 -2015,5,14,20,0,0,100.0,23,1010.0 -2015,5,14,20,30,0,100.0,23,1010.0 -2015,5,14,21,0,0,100.0,23,1010.0 -2015,5,14,21,30,0,100.0,23,1010.0 -2015,5,14,22,0,0,100.0,23,1010.0 -2015,5,14,22,30,0,100.0,23,1010.0 -2015,5,14,23,0,0,100.0,23,1010.0 -2015,5,14,23,30,0,100.0,23,1010.0 -2015,5,15,0,0,0,100.0,23,1010.0 -2015,5,15,0,30,0,100.0,23,1010.0 -2015,5,15,1,0,0,100.0,23,1010.0 -2015,5,15,1,30,0,100.0,23,1010.0 -2015,5,15,2,0,0,100.0,23,1010.0 -2015,5,15,2,30,0,100.0,23,1010.0 -2015,5,15,3,0,0,100.0,23,1010.0 -2015,5,15,3,30,0,100.0,23,1010.0 -2015,5,15,4,0,0,100.0,23,1010.0 -2015,5,15,4,30,0,100.0,23,1010.0 -2015,5,15,5,0,0,100.0,23,1010.0 -2015,5,15,5,30,0,100.0,23,1010.0 -2015,5,15,6,0,21,100.0,23,1010.0 -2015,5,15,6,30,59,100.0,23,1010.0 -2015,5,15,7,0,77,99.17,24,1010.0 -2015,5,15,7,30,159,99.18,24,1010.0 -2015,5,15,8,0,159,100.0,24,1010.0 -2015,5,15,8,30,226,100.0,24,1010.0 -2015,5,15,9,0,299,96.38,25,1010.0 -2015,5,15,9,30,409,96.36,25,1010.0 -2015,5,15,10,0,458,94.2,25,1010.0 -2015,5,15,10,30,598,94.16,25,1010.0 -2015,5,15,11,0,439,86.08,26,1010.0 -2015,5,15,11,30,618,86.03,26,1010.0 -2015,5,15,12,0,569,84.24,26,1010.0 -2015,5,15,12,30,505,84.2,26,1010.0 -2015,5,15,13,0,435,83.13,26,1010.0 -2015,5,15,13,30,305,83.09,26,1010.0 -2015,5,15,14,0,189,83.18,26,1010.0 -2015,5,15,14,30,169,83.15,26,1010.0 -2015,5,15,15,0,112,83.74,26,1010.0 -2015,5,15,15,30,122,83.74,26,1010.0 -2015,5,15,16,0,100,85.25,26,1010.0 -2015,5,15,16,30,129,90.44,25,1010.0 -2015,5,15,17,0,102,92.60000000000001,25,1010.0 -2015,5,15,17,30,123,98.29,24,1010.0 -2015,5,15,18,0,67,99.09,24,1010.0 -2015,5,15,18,30,27,100.0,23,1010.0 -2015,5,15,19,0,0,100.0,23,1010.0 -2015,5,15,19,30,0,100.0,23,1010.0 -2015,5,15,20,0,0,100.0,23,1010.0 -2015,5,15,20,30,0,100.0,23,1010.0 -2015,5,15,21,0,0,100.0,23,1010.0 -2015,5,15,21,30,0,100.0,23,1010.0 -2015,5,15,22,0,0,100.0,23,1010.0 -2015,5,15,22,30,0,100.0,23,1010.0 -2015,5,15,23,0,0,100.0,23,1010.0 -2015,5,15,23,30,0,100.0,23,1010.0 -2015,5,16,0,0,0,100.0,23,1010.0 -2015,5,16,0,30,0,100.0,23,1010.0 -2015,5,16,1,0,0,100.0,23,1010.0 -2015,5,16,1,30,0,100.0,23,1010.0 -2015,5,16,2,0,0,100.0,23,1010.0 -2015,5,16,2,30,0,100.0,23,1010.0 -2015,5,16,3,0,0,100.0,23,1010.0 -2015,5,16,3,30,0,100.0,23,1010.0 -2015,5,16,4,0,0,100.0,23,1010.0 -2015,5,16,4,30,0,100.0,23,1010.0 -2015,5,16,5,0,0,100.0,23,1010.0 -2015,5,16,5,30,0,100.0,23,1010.0 -2015,5,16,6,0,44,100.0,24,1010.0 -2015,5,16,6,30,128,100.0,24,1010.0 -2015,5,16,7,0,228,100.0,25,1010.0 -2015,5,16,7,30,332,100.0,25,1010.0 -2015,5,16,8,0,441,93.06,26,1010.0 -2015,5,16,8,30,543,93.06,26,1010.0 -2015,5,16,9,0,639,81.16,27,1010.0 -2015,5,16,9,30,725,81.15,27,1010.0 -2015,5,16,10,0,799,74.9,28,1010.0 -2015,5,16,10,30,658,74.88,28,1010.0 -2015,5,16,11,0,907,75.08,28,1010.0 -2015,5,16,11,30,580,75.06,28,1010.0 -2015,5,16,12,0,946,75.07000000000001,29,1010.0 -2015,5,16,12,30,658,75.05,28,1010.0 -2015,5,16,13,0,929,74.82000000000001,28,1010.0 -2015,5,16,13,30,898,74.81,28,1010.0 -2015,5,16,14,0,851,74.68,28,1010.0 -2015,5,16,14,30,791,79.15,27,1010.0 -2015,5,16,15,0,719,79.37,27,1010.0 -2015,5,16,15,30,635,79.36,27,1010.0 -2015,5,16,16,0,544,80.58,27,1010.0 -2015,5,16,16,30,444,85.44,26,1010.0 -2015,5,16,17,0,341,87.69,26,1010.0 -2015,5,16,17,30,238,93.03,25,1010.0 -2015,5,16,18,0,135,95.43,25,1010.0 -2015,5,16,18,30,54,95.44,25,1010.0 -2015,5,16,19,0,0,96.96000000000001,25,1010.0 -2015,5,16,19,30,0,100.0,24,1010.0 -2015,5,16,20,0,0,100.0,24,1010.0 -2015,5,16,20,30,0,100.0,24,1010.0 -2015,5,16,21,0,0,100.0,24,1010.0 -2015,5,16,21,30,0,100.0,24,1010.0 -2015,5,16,22,0,0,100.0,24,1010.0 -2015,5,16,22,30,0,100.0,24,1010.0 -2015,5,16,23,0,0,100.0,24,1010.0 -2015,5,16,23,30,0,100.0,24,1010.0 -2015,5,17,0,0,0,100.0,24,1010.0 -2015,5,17,0,30,0,100.0,24,1010.0 -2015,5,17,1,0,0,100.0,24,1010.0 -2015,5,17,1,30,0,100.0,24,1010.0 -2015,5,17,2,0,0,100.0,24,1010.0 -2015,5,17,2,30,0,100.0,24,1010.0 -2015,5,17,3,0,0,100.0,24,1010.0 -2015,5,17,3,30,0,100.0,24,1010.0 -2015,5,17,4,0,0,100.0,24,1010.0 -2015,5,17,4,30,0,100.0,23,1010.0 -2015,5,17,5,0,0,100.0,23,1010.0 -2015,5,17,5,30,0,100.0,23,1010.0 -2015,5,17,6,0,28,100.0,24,1010.0 -2015,5,17,6,30,71,100.0,24,1010.0 -2015,5,17,7,0,201,100.0,25,1010.0 -2015,5,17,7,30,84,100.0,25,1010.0 -2015,5,17,8,0,32,96.68,26,1010.0 -2015,5,17,8,30,39,96.62,26,1010.0 -2015,5,17,9,0,104,96.28,26,1010.0 -2015,5,17,9,30,249,96.29,26,1010.0 -2015,5,17,10,0,587,90.64,27,1010.0 -2015,5,17,10,30,565,90.7,27,1010.0 -2015,5,17,11,0,606,90.12,27,1010.0 -2015,5,17,11,30,297,90.13,27,1010.0 -2015,5,17,12,0,356,89.68,27,1010.0 -2015,5,17,12,30,186,89.67,27,1010.0 -2015,5,17,13,0,114,90.07000000000001,27,1010.0 -2015,5,17,13,30,114,90.06,27,1010.0 -2015,5,17,14,0,257,90.73,27,1010.0 -2015,5,17,14,30,476,90.72,27,1010.0 -2015,5,17,15,0,544,91.3,27,1010.0 -2015,5,17,15,30,375,96.81,26,1010.0 -2015,5,17,16,0,365,97.49000000000001,26,1010.0 -2015,5,17,16,30,288,97.49000000000001,26,1010.0 -2015,5,17,17,0,175,97.93,26,1010.0 -2015,5,17,17,30,166,100.0,25,1010.0 -2015,5,17,18,0,10,100.0,25,1010.0 -2015,5,17,18,30,3,100.0,25,1010.0 -2015,5,17,19,0,0,100.0,25,1010.0 -2015,5,17,19,30,0,100.0,25,1010.0 -2015,5,17,20,0,0,100.0,25,1010.0 -2015,5,17,20,30,0,100.0,25,1010.0 -2015,5,17,21,0,0,100.0,25,1010.0 -2015,5,17,21,30,0,100.0,24,1010.0 -2015,5,17,22,0,0,100.0,24,1010.0 -2015,5,17,22,30,0,100.0,24,1010.0 -2015,5,17,23,0,0,100.0,24,1010.0 -2015,5,17,23,30,0,100.0,24,1010.0 -2015,5,18,0,0,0,100.0,24,1010.0 -2015,5,18,0,30,0,100.0,24,1010.0 -2015,5,18,1,0,0,100.0,24,1010.0 -2015,5,18,1,30,0,100.0,24,1010.0 -2015,5,18,2,0,0,100.0,24,1010.0 -2015,5,18,2,30,0,100.0,24,1010.0 -2015,5,18,3,0,0,100.0,24,1010.0 -2015,5,18,3,30,0,100.0,24,1010.0 -2015,5,18,4,0,0,100.0,24,1010.0 -2015,5,18,4,30,0,100.0,24,1010.0 -2015,5,18,5,0,0,100.0,24,1010.0 -2015,5,18,5,30,0,100.0,24,1010.0 -2015,5,18,6,0,5,100.0,24,1010.0 -2015,5,18,6,30,12,100.0,24,1010.0 -2015,5,18,7,0,19,100.0,25,1010.0 -2015,5,18,7,30,15,100.0,25,1010.0 -2015,5,18,8,0,27,99.64,25,1010.0 -2015,5,18,8,30,68,99.67,25,1010.0 -2015,5,18,9,0,139,97.18,25,1010.0 -2015,5,18,9,30,326,97.2,25,1010.0 -2015,5,18,10,0,592,95.48,25,1010.0 -2015,5,18,10,30,651,95.46000000000001,25,1010.0 -2015,5,18,11,0,731,94.61,25,1010.0 -2015,5,18,11,30,291,94.58,25,1010.0 -2015,5,18,12,0,336,88.02,26,1010.0 -2015,5,18,12,30,617,88.01,26,1010.0 -2015,5,18,13,0,724,87.52,26,1010.0 -2015,5,18,13,30,575,87.51,26,1010.0 -2015,5,18,14,0,555,82.46000000000001,27,1010.0 -2015,5,18,14,30,549,87.44,27,1010.0 -2015,5,18,15,0,699,87.88,27,1010.0 -2015,5,18,15,30,617,87.87,26,1010.0 -2015,5,18,16,0,531,87.76,26,1010.0 -2015,5,18,16,30,434,87.76,26,1010.0 -2015,5,18,17,0,107,88.47,26,1010.0 -2015,5,18,17,30,238,93.85000000000001,25,1010.0 -2015,5,18,18,0,145,93.91,25,1010.0 -2015,5,18,18,30,59,99.68,24,1010.0 -2015,5,18,19,0,0,97.97,24,1010.0 -2015,5,18,19,30,0,97.98,24,1010.0 -2015,5,18,20,0,0,97.82000000000001,24,1010.0 -2015,5,18,20,30,0,100.0,23,1010.0 -2015,5,18,21,0,0,100.0,23,1010.0 -2015,5,18,21,30,0,100.0,23,1010.0 -2015,5,18,22,0,0,100.0,23,1010.0 -2015,5,18,22,30,0,100.0,23,1010.0 -2015,5,18,23,0,0,100.0,23,1010.0 -2015,5,18,23,30,0,100.0,23,1010.0 -2015,5,19,0,0,0,100.0,23,1010.0 -2015,5,19,0,30,0,100.0,22,1010.0 -2015,5,19,1,0,0,100.0,22,1010.0 -2015,5,19,1,30,0,100.0,22,1010.0 -2015,5,19,2,0,0,100.0,22,1010.0 -2015,5,19,2,30,0,100.0,22,1010.0 -2015,5,19,3,0,0,100.0,22,1010.0 -2015,5,19,3,30,0,100.0,22,1010.0 -2015,5,19,4,0,0,100.0,22,1010.0 -2015,5,19,4,30,0,100.0,22,1010.0 -2015,5,19,5,0,0,100.0,23,1010.0 -2015,5,19,5,30,0,100.0,23,1010.0 -2015,5,19,6,0,41,100.0,23,1010.0 -2015,5,19,6,30,31,100.0,23,1010.0 -2015,5,19,7,0,207,100.0,24,1010.0 -2015,5,19,7,30,248,100.0,24,1010.0 -2015,5,19,8,0,303,98.84,25,1010.0 -2015,5,19,8,30,373,98.85000000000001,25,1010.0 -2015,5,19,9,0,432,92.11,26,1010.0 -2015,5,19,9,30,491,92.10000000000001,26,1010.0 -2015,5,19,10,0,460,84.54,27,1010.0 -2015,5,19,10,30,497,84.52,27,1010.0 -2015,5,19,11,0,468,78.81,28,1010.0 -2015,5,19,11,30,784,78.78,28,1010.0 -2015,5,19,12,0,848,78.09,28,1010.0 -2015,5,19,12,30,814,78.07000000000001,28,1010.0 -2015,5,19,13,0,612,77.29,28,1010.0 -2015,5,19,13,30,675,77.26,28,1010.0 -2015,5,19,14,0,568,76.44,28,1010.0 -2015,5,19,14,30,584,76.42,28,1010.0 -2015,5,19,15,0,497,75.92,28,1010.0 -2015,5,19,15,30,476,80.45,27,1010.0 -2015,5,19,16,0,566,80.22,27,1010.0 -2015,5,19,16,30,466,85.04,26,1010.0 -2015,5,19,17,0,364,85.41,26,1010.0 -2015,5,19,17,30,258,90.61,25,1010.0 -2015,5,19,18,0,158,91.64,25,1010.0 -2015,5,19,18,30,68,97.27,24,1010.0 -2015,5,19,19,0,7,96.63,24,1010.0 -2015,5,19,19,30,0,96.65,24,1010.0 -2015,5,19,20,0,0,96.55,24,1010.0 -2015,5,19,20,30,0,100.0,23,1010.0 -2015,5,19,21,0,0,100.0,23,1010.0 -2015,5,19,21,30,0,100.0,23,1010.0 -2015,5,19,22,0,0,100.0,23,1010.0 -2015,5,19,22,30,0,100.0,23,1010.0 -2015,5,19,23,0,0,100.0,23,1010.0 -2015,5,19,23,30,0,100.0,23,1010.0 -2015,5,20,0,0,0,100.0,23,1010.0 -2015,5,20,0,30,0,100.0,23,1010.0 -2015,5,20,1,0,0,100.0,23,1010.0 -2015,5,20,1,30,0,100.0,23,1010.0 -2015,5,20,2,0,0,100.0,23,1010.0 -2015,5,20,2,30,0,100.0,23,1010.0 -2015,5,20,3,0,0,100.0,23,1010.0 -2015,5,20,3,30,0,100.0,23,1010.0 -2015,5,20,4,0,0,100.0,23,1010.0 -2015,5,20,4,30,0,100.0,23,1010.0 -2015,5,20,5,0,0,100.0,23,1010.0 -2015,5,20,5,30,0,100.0,23,1010.0 -2015,5,20,6,0,27,99.65,24,1010.0 -2015,5,20,6,30,70,99.67,24,1010.0 -2015,5,20,7,0,168,96.8,25,1010.0 -2015,5,20,7,30,272,96.81,25,1010.0 -2015,5,20,8,0,340,91.77,26,1010.0 -2015,5,20,8,30,462,91.78,26,1010.0 -2015,5,20,9,0,543,86.32000000000001,27,1010.0 -2015,5,20,9,30,579,86.32000000000001,27,1010.0 -2015,5,20,10,0,640,81.15,28,1010.0 -2015,5,20,10,30,506,81.15,28,1010.0 -2015,5,20,11,0,455,76.78,29,1010.0 -2015,5,20,11,30,472,76.76,29,1010.0 -2015,5,20,12,0,671,76.95,29,1010.0 -2015,5,20,12,30,119,76.93,29,1010.0 -2015,5,20,13,0,249,76.93,29,1010.0 -2015,5,20,13,30,756,76.91,29,1010.0 -2015,5,20,14,0,239,76.42,29,1010.0 -2015,5,20,14,30,697,76.4,29,1010.0 -2015,5,20,15,0,720,76.2,29,1010.0 -2015,5,20,15,30,637,80.73,28,1010.0 -2015,5,20,16,0,553,81.75,28,1010.0 -2015,5,20,16,30,454,86.65,27,1010.0 -2015,5,20,17,0,354,87.84,27,1010.0 -2015,5,20,17,30,89,93.16,26,1010.0 -2015,5,20,18,0,153,94.31,26,1010.0 -2015,5,20,18,30,66,100.0,25,1010.0 -2015,5,20,19,0,6,97.61,25,1010.0 -2015,5,20,19,30,0,100.0,24,1010.0 -2015,5,20,20,0,0,100.0,24,1010.0 -2015,5,20,20,30,0,100.0,24,1010.0 -2015,5,20,21,0,0,100.0,24,1010.0 -2015,5,20,21,30,0,100.0,24,1010.0 -2015,5,20,22,0,0,100.0,24,1010.0 -2015,5,20,22,30,0,100.0,23,1010.0 -2015,5,20,23,0,0,100.0,23,1010.0 -2015,5,20,23,30,0,100.0,23,1010.0 -2015,5,21,0,0,0,100.0,23,1010.0 -2015,5,21,0,30,0,100.0,23,1010.0 -2015,5,21,1,0,0,100.0,23,1010.0 -2015,5,21,1,30,0,100.0,23,1010.0 -2015,5,21,2,0,0,100.0,23,1010.0 -2015,5,21,2,30,0,100.0,23,1010.0 -2015,5,21,3,0,0,100.0,23,1010.0 -2015,5,21,3,30,0,100.0,23,1010.0 -2015,5,21,4,0,0,100.0,23,1010.0 -2015,5,21,4,30,0,100.0,23,1010.0 -2015,5,21,5,0,0,100.0,23,1010.0 -2015,5,21,5,30,0,100.0,23,1010.0 -2015,5,21,6,0,49,100.0,23,1010.0 -2015,5,21,6,30,105,100.0,23,1010.0 -2015,5,21,7,0,216,100.0,24,1010.0 -2015,5,21,7,30,197,94.26,25,1010.0 -2015,5,21,8,0,326,87.36,26,1010.0 -2015,5,21,8,30,348,87.36,26,1010.0 -2015,5,21,9,0,511,77.17,27,1010.0 -2015,5,21,9,30,326,77.14,27,1010.0 -2015,5,21,10,0,639,72.06,28,1010.0 -2015,5,21,10,30,193,72.03,28,1010.0 -2015,5,21,11,0,387,72.82000000000001,28,1010.0 -2015,5,21,11,30,547,72.82000000000001,28,1010.0 -2015,5,21,12,0,854,73.85000000000001,28,1010.0 -2015,5,21,12,30,671,73.85000000000001,28,1010.0 -2015,5,21,13,0,623,74.14,28,1010.0 -2015,5,21,13,30,448,74.13,28,1010.0 -2015,5,21,14,0,439,75.32000000000001,28,1010.0 -2015,5,21,14,30,307,79.82000000000001,27,1010.0 -2015,5,21,15,0,264,79.64,27,1010.0 -2015,5,21,15,30,108,84.45,26,1010.0 -2015,5,21,16,0,122,84.96000000000001,26,1010.0 -2015,5,21,16,30,179,90.14,26,1010.0 -2015,5,21,17,0,157,90.44,26,1010.0 -2015,5,21,17,30,155,96.0,25,1010.0 -2015,5,21,18,0,90,96.05,24,1010.0 -2015,5,21,18,30,39,100.0,23,1010.0 -2015,5,21,19,0,4,99.76,23,1010.0 -2015,5,21,19,30,0,100.0,22,1010.0 -2015,5,21,20,0,0,100.0,22,1010.0 -2015,5,21,20,30,0,100.0,22,1010.0 -2015,5,21,21,0,0,100.0,22,1010.0 -2015,5,21,21,30,0,100.0,22,1010.0 -2015,5,21,22,0,0,100.0,22,1010.0 -2015,5,21,22,30,0,100.0,22,1010.0 -2015,5,21,23,0,0,99.94,22,1010.0 -2015,5,21,23,30,0,100.0,22,1010.0 -2015,5,22,0,0,0,100.0,22,1010.0 -2015,5,22,0,30,0,100.0,21,1010.0 -2015,5,22,1,0,0,100.0,21,1010.0 -2015,5,22,1,30,0,100.0,21,1010.0 -2015,5,22,2,0,0,100.0,21,1010.0 -2015,5,22,2,30,0,100.0,20,1010.0 -2015,5,22,3,0,0,100.0,20,1010.0 -2015,5,22,3,30,0,100.0,20,1010.0 -2015,5,22,4,0,0,100.0,20,1010.0 -2015,5,22,4,30,0,100.0,19,1010.0 -2015,5,22,5,0,0,100.0,19,1010.0 -2015,5,22,5,30,0,100.0,19,1010.0 -2015,5,22,6,0,28,99.9,19,1010.0 -2015,5,22,6,30,52,99.93,19,1010.0 -2015,5,22,7,0,87,99.93,19,1010.0 -2015,5,22,7,30,95,93.94,20,1010.0 -2015,5,22,8,0,129,91.33,21,1010.0 -2015,5,22,8,30,187,85.92,22,1010.0 -2015,5,22,9,0,229,84.76,23,1010.0 -2015,5,22,9,30,386,84.75,23,1010.0 -2015,5,22,10,0,615,84.13,24,1010.0 -2015,5,22,10,30,503,84.12,24,1010.0 -2015,5,22,11,0,530,82.19,25,1010.0 -2015,5,22,11,30,960,82.16,25,1010.0 -2015,5,22,12,0,972,79.18,26,1010.0 -2015,5,22,12,30,509,79.15,26,1010.0 -2015,5,22,13,0,501,80.25,26,1010.0 -2015,5,22,13,30,613,80.22,26,1010.0 -2015,5,22,14,0,882,80.58,26,1010.0 -2015,5,22,14,30,822,80.57000000000001,26,1010.0 -2015,5,22,15,0,522,80.44,26,1010.0 -2015,5,22,15,30,660,85.33,26,1010.0 -2015,5,22,16,0,230,85.09,26,1010.0 -2015,5,22,16,30,205,85.10000000000001,25,1010.0 -2015,5,22,17,0,236,85.86,25,1010.0 -2015,5,22,17,30,191,91.15,24,1010.0 -2015,5,22,18,0,117,92.7,24,1010.0 -2015,5,22,18,30,51,98.45,23,1010.0 -2015,5,22,19,0,6,98.36,23,1010.0 -2015,5,22,19,30,0,98.38,23,1010.0 -2015,5,22,20,0,0,98.5,23,1010.0 -2015,5,22,20,30,0,98.51,23,1010.0 -2015,5,22,21,0,0,98.67,23,1010.0 -2015,5,22,21,30,0,98.67,23,1010.0 -2015,5,22,22,0,0,98.95,23,1010.0 -2015,5,22,22,30,0,98.92,23,1010.0 -2015,5,22,23,0,0,99.59,23,1010.0 -2015,5,22,23,30,0,99.56,23,1010.0 -2015,5,23,0,0,0,100.0,23,1010.0 -2015,5,23,0,30,0,100.0,23,1010.0 -2015,5,23,1,0,0,100.0,23,1010.0 -2015,5,23,1,30,0,100.0,23,1010.0 -2015,5,23,2,0,0,100.0,23,1010.0 -2015,5,23,2,30,0,100.0,23,1010.0 -2015,5,23,3,0,0,100.0,23,1010.0 -2015,5,23,3,30,0,100.0,23,1010.0 -2015,5,23,4,0,0,100.0,23,1010.0 -2015,5,23,4,30,0,100.0,23,1010.0 -2015,5,23,5,0,0,100.0,23,1010.0 -2015,5,23,5,30,0,100.0,23,1010.0 -2015,5,23,6,0,40,97.86,24,1010.0 -2015,5,23,6,30,98,97.88,24,1010.0 -2015,5,23,7,0,202,100.0,24,1010.0 -2015,5,23,7,30,343,100.0,24,1010.0 -2015,5,23,8,0,448,96.93,25,1010.0 -2015,5,23,8,30,549,96.92,25,1010.0 -2015,5,23,9,0,646,92.64,26,1010.0 -2015,5,23,9,30,732,92.62,26,1010.0 -2015,5,23,10,0,808,91.69,26,1010.0 -2015,5,23,10,30,592,91.67,26,1010.0 -2015,5,23,11,0,429,85.52,27,1010.0 -2015,5,23,11,30,689,85.5,27,1010.0 -2015,5,23,12,0,590,84.75,27,1010.0 -2015,5,23,12,30,690,84.72,27,1010.0 -2015,5,23,13,0,744,84.2,27,1010.0 -2015,5,23,13,30,738,84.19,27,1010.0 -2015,5,23,14,0,773,84.04,27,1010.0 -2015,5,23,14,30,703,89.11,27,1010.0 -2015,5,23,15,0,609,89.29,27,1010.0 -2015,5,23,15,30,578,89.26,26,1010.0 -2015,5,23,16,0,575,89.94,26,1010.0 -2015,5,23,16,30,475,95.41,26,1010.0 -2015,5,23,17,0,320,95.68,26,1010.0 -2015,5,23,17,30,254,95.67,25,1010.0 -2015,5,23,18,0,159,95.03,25,1010.0 -2015,5,23,18,30,72,100.0,24,1010.0 -2015,5,23,19,0,11,99.57000000000001,24,1010.0 -2015,5,23,19,30,0,99.54,24,1010.0 -2015,5,23,20,0,0,99.0,24,1010.0 -2015,5,23,20,30,0,98.98,24,1010.0 -2015,5,23,21,0,0,98.32000000000001,24,1010.0 -2015,5,23,21,30,0,98.32000000000001,24,1010.0 -2015,5,23,22,0,0,97.39,24,1010.0 -2015,5,23,22,30,0,97.38,24,1010.0 -2015,5,23,23,0,0,96.63,24,1010.0 -2015,5,23,23,30,0,96.61,24,1010.0 -2015,5,24,0,0,0,95.72,24,1010.0 -2015,5,24,0,30,0,95.69,24,1010.0 -2015,5,24,1,0,0,95.05,24,1010.0 -2015,5,24,1,30,0,95.05,24,1010.0 -2015,5,24,2,0,0,94.97,24,1010.0 -2015,5,24,2,30,0,100.0,24,1010.0 -2015,5,24,3,0,0,100.0,24,1010.0 -2015,5,24,3,30,0,100.0,23,1010.0 -2015,5,24,4,0,0,100.0,23,1010.0 -2015,5,24,4,30,0,100.0,23,1010.0 -2015,5,24,5,0,0,100.0,23,1010.0 -2015,5,24,5,30,0,100.0,23,1010.0 -2015,5,24,6,0,25,100.0,23,1010.0 -2015,5,24,6,30,48,100.0,23,1010.0 -2015,5,24,7,0,77,99.76,24,1010.0 -2015,5,24,7,30,98,99.75,24,1010.0 -2015,5,24,8,0,124,100.0,24,1010.0 -2015,5,24,8,30,198,100.0,24,1010.0 -2015,5,24,9,0,71,100.0,25,1010.0 -2015,5,24,9,30,328,100.0,25,1010.0 -2015,5,24,10,0,411,96.58,25,1010.0 -2015,5,24,10,30,385,96.58,25,1010.0 -2015,5,24,11,0,377,94.3,25,1010.0 -2015,5,24,11,30,475,94.3,25,1010.0 -2015,5,24,12,0,564,91.2,25,1010.0 -2015,5,24,12,30,630,91.2,25,1010.0 -2015,5,24,13,0,670,89.23,26,1010.0 -2015,5,24,13,30,632,89.22,25,1010.0 -2015,5,24,14,0,576,88.46000000000001,25,1010.0 -2015,5,24,14,30,537,88.45,25,1010.0 -2015,5,24,15,0,469,88.65,25,1010.0 -2015,5,24,15,30,466,88.63,25,1010.0 -2015,5,24,16,0,333,89.63,25,1010.0 -2015,5,24,16,30,316,95.12,24,1010.0 -2015,5,24,17,0,312,95.94,24,1010.0 -2015,5,24,17,30,226,95.93,24,1010.0 -2015,5,24,18,0,108,95.4,24,1010.0 -2015,5,24,18,30,49,100.0,23,1010.0 -2015,5,24,19,0,11,98.7,23,1010.0 -2015,5,24,19,30,0,98.71000000000001,23,1010.0 -2015,5,24,20,0,0,97.58,23,1010.0 -2015,5,24,20,30,0,100.0,23,1010.0 -2015,5,24,21,0,0,100.0,23,1010.0 -2015,5,24,21,30,0,100.0,22,1010.0 -2015,5,24,22,0,0,100.0,22,1010.0 -2015,5,24,22,30,0,100.0,22,1010.0 -2015,5,24,23,0,0,100.0,22,1010.0 -2015,5,24,23,30,0,100.0,22,1010.0 -2015,5,25,0,0,0,100.0,22,1010.0 -2015,5,25,0,30,0,100.0,21,1010.0 -2015,5,25,1,0,0,100.0,21,1010.0 -2015,5,25,1,30,0,100.0,21,1010.0 -2015,5,25,2,0,0,100.0,21,1010.0 -2015,5,25,2,30,0,100.0,21,1010.0 -2015,5,25,3,0,0,100.0,21,1010.0 -2015,5,25,3,30,0,100.0,21,1010.0 -2015,5,25,4,0,0,100.0,22,1010.0 -2015,5,25,4,30,0,100.0,22,1010.0 -2015,5,25,5,0,0,100.0,22,1010.0 -2015,5,25,5,30,0,100.0,22,1010.0 -2015,5,25,6,0,59,100.0,23,1010.0 -2015,5,25,6,30,145,100.0,24,1010.0 -2015,5,25,7,0,245,100.0,25,1010.0 -2015,5,25,7,30,350,98.16,25,1010.0 -2015,5,25,8,0,455,95.98,26,1010.0 -2015,5,25,8,30,557,95.98,26,1010.0 -2015,5,25,9,0,653,94.76,27,1010.0 -2015,5,25,9,30,739,94.75,27,1010.0 -2015,5,25,10,0,814,86.32000000000001,27,1010.0 -2015,5,25,10,30,609,86.3,27,1010.0 -2015,5,25,11,0,921,86.35000000000001,27,1010.0 -2015,5,25,11,30,749,86.31,27,1010.0 -2015,5,25,12,0,820,87.81,27,1010.0 -2015,5,25,12,30,873,87.78,27,1010.0 -2015,5,25,13,0,737,89.22,27,1010.0 -2015,5,25,13,30,719,89.18,27,1010.0 -2015,5,25,14,0,620,90.28,27,1010.0 -2015,5,25,14,30,437,90.25,27,1010.0 -2015,5,25,15,0,377,91.23,27,1010.0 -2015,5,25,15,30,517,91.23,27,1010.0 -2015,5,25,16,0,279,92.53,27,1010.0 -2015,5,25,16,30,197,98.15,26,1010.0 -2015,5,25,17,0,134,98.39,26,1010.0 -2015,5,25,17,30,111,98.4,26,1010.0 -2015,5,25,18,0,34,97.71000000000001,26,1010.0 -2015,5,25,18,30,15,100.0,25,1010.0 -2015,5,25,19,0,1,100.0,25,1010.0 -2015,5,25,19,30,0,100.0,25,1010.0 -2015,5,25,20,0,0,100.0,25,1010.0 -2015,5,25,20,30,0,100.0,25,1010.0 -2015,5,25,21,0,0,100.0,25,1010.0 -2015,5,25,21,30,0,100.0,25,1010.0 -2015,5,25,22,0,0,100.0,25,1010.0 -2015,5,25,22,30,0,100.0,24,1010.0 -2015,5,25,23,0,0,100.0,24,1010.0 -2015,5,25,23,30,0,100.0,24,1010.0 -2015,5,26,0,0,0,100.0,24,1010.0 -2015,5,26,0,30,0,100.0,24,1010.0 -2015,5,26,1,0,0,100.0,24,1010.0 -2015,5,26,1,30,0,100.0,23,1010.0 -2015,5,26,2,0,0,100.0,23,1010.0 -2015,5,26,2,30,0,100.0,23,1010.0 -2015,5,26,3,0,0,100.0,23,1010.0 -2015,5,26,3,30,0,100.0,23,1010.0 -2015,5,26,4,0,0,100.0,23,1010.0 -2015,5,26,4,30,0,100.0,23,1010.0 -2015,5,26,5,0,0,100.0,23,1010.0 -2015,5,26,5,30,0,100.0,23,1010.0 -2015,5,26,6,0,41,100.0,23,1010.0 -2015,5,26,6,30,106,100.0,23,1010.0 -2015,5,26,7,0,166,100.0,24,1010.0 -2015,5,26,7,30,228,100.0,24,1010.0 -2015,5,26,8,0,440,97.68,25,1010.0 -2015,5,26,8,30,540,97.68,25,1010.0 -2015,5,26,9,0,625,93.31,26,1010.0 -2015,5,26,9,30,709,93.3,26,1010.0 -2015,5,26,10,0,788,88.4,27,1010.0 -2015,5,26,10,30,850,88.39,27,1010.0 -2015,5,26,11,0,903,88.58,27,1010.0 -2015,5,26,11,30,936,88.56,27,1010.0 -2015,5,26,12,0,417,82.95,28,1010.0 -2015,5,26,12,30,418,82.94,28,1010.0 -2015,5,26,13,0,307,82.38,28,1010.0 -2015,5,26,13,30,387,82.37,28,1010.0 -2015,5,26,14,0,218,82.23,28,1010.0 -2015,5,26,14,30,607,87.15,27,1010.0 -2015,5,26,15,0,560,87.3,27,1010.0 -2015,5,26,15,30,368,87.29,27,1010.0 -2015,5,26,16,0,454,87.85000000000001,27,1010.0 -2015,5,26,16,30,232,93.16,26,1010.0 -2015,5,26,17,0,212,94.28,26,1010.0 -2015,5,26,17,30,113,100.0,25,1010.0 -2015,5,26,18,0,152,100.0,25,1010.0 -2015,5,26,18,30,66,100.0,25,1010.0 -2015,5,26,19,0,5,98.81,25,1010.0 -2015,5,26,19,30,0,100.0,24,1010.0 -2015,5,26,20,0,0,100.0,24,1010.0 -2015,5,26,20,30,0,100.0,24,1010.0 -2015,5,26,21,0,0,100.0,24,1010.0 -2015,5,26,21,30,0,100.0,24,1010.0 -2015,5,26,22,0,0,100.0,24,1010.0 -2015,5,26,22,30,0,100.0,24,1010.0 -2015,5,26,23,0,0,100.0,24,1010.0 -2015,5,26,23,30,0,100.0,24,1010.0 -2015,5,27,0,0,0,100.0,24,1010.0 -2015,5,27,0,30,0,100.0,24,1010.0 -2015,5,27,1,0,0,100.0,24,1010.0 -2015,5,27,1,30,0,100.0,24,1010.0 -2015,5,27,2,0,0,100.0,24,1010.0 -2015,5,27,2,30,0,100.0,23,1010.0 -2015,5,27,3,0,0,100.0,23,1010.0 -2015,5,27,3,30,0,100.0,23,1010.0 -2015,5,27,4,0,0,100.0,23,1010.0 -2015,5,27,4,30,0,100.0,23,1010.0 -2015,5,27,5,0,0,100.0,23,1010.0 -2015,5,27,5,30,0,100.0,23,1010.0 -2015,5,27,6,0,3,100.0,24,1010.0 -2015,5,27,6,30,20,100.0,24,1010.0 -2015,5,27,7,0,5,100.0,24,1010.0 -2015,5,27,7,30,39,100.0,24,1010.0 -2015,5,27,8,0,32,100.0,24,1010.0 -2015,5,27,8,30,27,100.0,24,1010.0 -2015,5,27,9,0,60,99.87,24,1010.0 -2015,5,27,9,30,533,99.85000000000001,24,1010.0 -2015,5,27,10,0,633,95.71000000000001,25,1010.0 -2015,5,27,10,30,720,95.69,25,1010.0 -2015,5,27,11,0,836,91.56,26,1010.0 -2015,5,27,11,30,905,91.55,26,1010.0 -2015,5,27,12,0,939,91.76,26,1010.0 -2015,5,27,12,30,882,91.74,26,1010.0 -2015,5,27,13,0,873,91.32000000000001,26,1010.0 -2015,5,27,13,30,795,91.32000000000001,26,1010.0 -2015,5,27,14,0,745,90.83,26,1010.0 -2015,5,27,14,30,674,90.83,26,1010.0 -2015,5,27,15,0,619,91.05,26,1010.0 -2015,5,27,15,30,655,91.03,26,1010.0 -2015,5,27,16,0,569,91.97,26,1010.0 -2015,5,27,16,30,471,91.95,26,1010.0 -2015,5,27,17,0,372,93.24,26,1010.0 -2015,5,27,17,30,268,98.91,25,1010.0 -2015,5,27,18,0,169,99.32000000000001,25,1010.0 -2015,5,27,18,30,79,100.0,24,1010.0 -2015,5,27,19,0,13,100.0,24,1010.0 -2015,5,27,19,30,0,100.0,24,1010.0 -2015,5,27,20,0,0,100.0,24,1010.0 -2015,5,27,20,30,0,100.0,24,1010.0 -2015,5,27,21,0,0,100.0,24,1010.0 -2015,5,27,21,30,0,100.0,23,1010.0 -2015,5,27,22,0,0,100.0,23,1010.0 -2015,5,27,22,30,0,100.0,23,1010.0 -2015,5,27,23,0,0,100.0,23,1010.0 -2015,5,27,23,30,0,100.0,23,1010.0 -2015,5,28,0,0,0,100.0,23,1010.0 -2015,5,28,0,30,0,100.0,23,1010.0 -2015,5,28,1,0,0,100.0,23,1010.0 -2015,5,28,1,30,0,100.0,22,1010.0 -2015,5,28,2,0,0,100.0,22,1010.0 -2015,5,28,2,30,0,100.0,22,1010.0 -2015,5,28,3,0,0,100.0,22,1010.0 -2015,5,28,3,30,0,100.0,22,1010.0 -2015,5,28,4,0,0,100.0,22,1010.0 -2015,5,28,4,30,0,100.0,22,1010.0 -2015,5,28,5,0,0,100.0,22,1010.0 -2015,5,28,5,30,0,98.01,23,1010.0 -2015,5,28,6,0,61,100.0,24,1010.0 -2015,5,28,6,30,147,100.0,24,1010.0 -2015,5,28,7,0,247,99.17,25,1010.0 -2015,5,28,7,30,352,99.18,25,1010.0 -2015,5,28,8,0,458,93.78,26,1010.0 -2015,5,28,8,30,559,93.78,27,1010.0 -2015,5,28,9,0,658,86.76,28,1010.0 -2015,5,28,9,30,553,86.75,28,1010.0 -2015,5,28,10,0,610,80.76,28,1010.0 -2015,5,28,10,30,882,80.75,28,1010.0 -2015,5,28,11,0,931,75.5,29,1010.0 -2015,5,28,11,30,964,75.47,29,1010.0 -2015,5,28,12,0,705,74.60000000000001,29,1010.0 -2015,5,28,12,30,827,74.58,29,1010.0 -2015,5,28,13,0,872,74.27,29,1010.0 -2015,5,28,13,30,699,78.68,28,1010.0 -2015,5,28,14,0,578,79.05,28,1010.0 -2015,5,28,14,30,492,79.03,28,1010.0 -2015,5,28,15,0,636,80.36,28,1010.0 -2015,5,28,15,30,564,85.15,27,1010.0 -2015,5,28,16,0,531,86.44,27,1010.0 -2015,5,28,16,30,383,91.64,26,1010.0 -2015,5,28,17,0,350,93.60000000000001,26,1010.0 -2015,5,28,17,30,274,99.3,26,1010.0 -2015,5,28,18,0,173,99.64,26,1010.0 -2015,5,28,18,30,82,99.65,25,1010.0 -2015,5,28,19,0,15,97.71000000000001,25,1010.0 -2015,5,28,19,30,0,100.0,24,1010.0 -2015,5,28,20,0,0,100.0,24,1010.0 -2015,5,28,20,30,0,100.0,24,1010.0 -2015,5,28,21,0,0,100.0,24,1010.0 -2015,5,28,21,30,0,100.0,24,1010.0 -2015,5,28,22,0,0,100.0,24,1010.0 -2015,5,28,22,30,0,100.0,24,1010.0 -2015,5,28,23,0,0,100.0,24,1010.0 -2015,5,28,23,30,0,100.0,24,1010.0 -2015,5,29,0,0,0,100.0,24,1010.0 -2015,5,29,0,30,0,100.0,24,1010.0 -2015,5,29,1,0,0,99.29,24,1010.0 -2015,5,29,1,30,0,100.0,24,1010.0 -2015,5,29,2,0,0,100.0,24,1010.0 -2015,5,29,2,30,0,100.0,23,1010.0 -2015,5,29,3,0,0,100.0,23,1010.0 -2015,5,29,3,30,0,100.0,23,1010.0 -2015,5,29,4,0,0,100.0,23,1010.0 -2015,5,29,4,30,0,100.0,23,1010.0 -2015,5,29,5,0,0,100.0,23,1010.0 -2015,5,29,5,30,0,100.0,23,1010.0 -2015,5,29,6,0,19,98.84,24,1010.0 -2015,5,29,6,30,43,98.84,24,1010.0 -2015,5,29,7,0,125,100.0,24,1010.0 -2015,5,29,7,30,231,100.0,24,1010.0 -2015,5,29,8,0,216,98.78,25,1010.0 -2015,5,29,8,30,297,98.78,25,1010.0 -2015,5,29,9,0,312,94.05,26,1010.0 -2015,5,29,9,30,429,94.04,26,1010.0 -2015,5,29,10,0,184,94.78,27,1010.0 -2015,5,29,10,30,302,94.78,27,1010.0 -2015,5,29,11,0,790,89.25,27,1010.0 -2015,5,29,11,30,796,89.25,27,1010.0 -2015,5,29,12,0,659,89.22,27,1010.0 -2015,5,29,12,30,744,89.21000000000001,27,1010.0 -2015,5,29,13,0,776,83.91,28,1010.0 -2015,5,29,13,30,843,83.9,28,1010.0 -2015,5,29,14,0,783,83.54,28,1010.0 -2015,5,29,14,30,829,88.53,28,1010.0 -2015,5,29,15,0,769,89.15,28,1010.0 -2015,5,29,15,30,685,89.14,27,1010.0 -2015,5,29,16,0,593,89.68,27,1010.0 -2015,5,29,16,30,493,89.67,27,1010.0 -2015,5,29,17,0,390,89.19,27,1010.0 -2015,5,29,17,30,284,94.60000000000001,26,1010.0 -2015,5,29,18,0,180,95.07000000000001,26,1010.0 -2015,5,29,18,30,87,100.0,25,1010.0 -2015,5,29,19,0,17,97.04,25,1010.0 -2015,5,29,19,30,0,100.0,24,1010.0 -2015,5,29,20,0,0,100.0,24,1010.0 -2015,5,29,20,30,0,100.0,24,1010.0 -2015,5,29,21,0,0,100.0,24,1010.0 -2015,5,29,21,30,0,100.0,24,1010.0 -2015,5,29,22,0,0,100.0,24,1010.0 -2015,5,29,22,30,0,100.0,23,1010.0 -2015,5,29,23,0,0,100.0,23,1010.0 -2015,5,29,23,30,0,100.0,23,1010.0 -2015,5,30,0,0,0,100.0,23,1010.0 -2015,5,30,0,30,0,100.0,23,1010.0 -2015,5,30,1,0,0,100.0,23,1010.0 -2015,5,30,1,30,0,100.0,23,1010.0 -2015,5,30,2,0,0,100.0,23,1010.0 -2015,5,30,2,30,0,100.0,22,1010.0 -2015,5,30,3,0,0,100.0,22,1010.0 -2015,5,30,3,30,0,100.0,22,1010.0 -2015,5,30,4,0,0,100.0,22,1010.0 -2015,5,30,4,30,0,100.0,22,1010.0 -2015,5,30,5,0,0,100.0,22,1010.0 -2015,5,30,5,30,0,100.0,23,1010.0 -2015,5,30,6,0,53,100.0,24,1010.0 -2015,5,30,6,30,126,98.55,24,1010.0 -2015,5,30,7,0,196,96.01,25,1010.0 -2015,5,30,7,30,336,96.02,25,1010.0 -2015,5,30,8,0,361,90.08,26,1010.0 -2015,5,30,8,30,444,90.08,26,1010.0 -2015,5,30,9,0,350,81.86,27,1010.0 -2015,5,30,9,30,554,81.85000000000001,27,1010.0 -2015,5,30,10,0,567,75.59,28,1010.0 -2015,5,30,10,30,670,75.57000000000001,28,1010.0 -2015,5,30,11,0,932,74.9,29,1010.0 -2015,5,30,11,30,966,74.88,29,1010.0 -2015,5,30,12,0,985,71.04,29,1010.0 -2015,5,30,12,30,987,71.03,29,1010.0 -2015,5,30,13,0,971,71.45,29,1010.0 -2015,5,30,13,30,941,71.44,29,1010.0 -2015,5,30,14,0,895,72.23,29,1010.0 -2015,5,30,14,30,835,72.22,29,1010.0 -2015,5,30,15,0,591,74.11,29,1010.0 -2015,5,30,15,30,527,78.52,28,1010.0 -2015,5,30,16,0,104,78.98,28,1010.0 -2015,5,30,16,30,125,83.72,27,1010.0 -2015,5,30,17,0,18,84.52,27,1010.0 -2015,5,30,17,30,133,89.65,26,1010.0 -2015,5,30,18,0,28,90.86,26,1010.0 -2015,5,30,18,30,13,96.41,25,1010.0 -2015,5,30,19,0,2,94.82000000000001,25,1010.0 -2015,5,30,19,30,0,94.83,25,1010.0 -2015,5,30,20,0,0,94.0,25,1010.0 -2015,5,30,20,30,0,99.79,24,1010.0 -2015,5,30,21,0,0,98.4,24,1010.0 -2015,5,30,21,30,0,100.0,23,1010.0 -2015,5,30,22,0,0,100.0,23,1010.0 -2015,5,30,22,30,0,100.0,23,1010.0 -2015,5,30,23,0,0,100.0,23,1010.0 -2015,5,30,23,30,0,100.0,22,1010.0 -2015,5,31,0,0,0,100.0,22,1010.0 -2015,5,31,0,30,0,100.0,22,1010.0 -2015,5,31,1,0,0,100.0,22,1010.0 -2015,5,31,1,30,0,100.0,22,1010.0 -2015,5,31,2,0,0,100.0,22,1010.0 -2015,5,31,2,30,0,100.0,21,1010.0 -2015,5,31,3,0,0,100.0,21,1010.0 -2015,5,31,3,30,0,100.0,21,1010.0 -2015,5,31,4,0,0,100.0,21,1010.0 -2015,5,31,4,30,0,100.0,21,1010.0 -2015,5,31,5,0,0,100.0,21,1010.0 -2015,5,31,5,30,0,100.0,21,1010.0 -2015,5,31,6,0,28,100.0,22,1010.0 -2015,5,31,6,30,58,100.0,22,1010.0 -2015,5,31,7,0,184,98.81,22,1010.0 -2015,5,31,7,30,258,98.82000000000001,22,1010.0 -2015,5,31,8,0,315,92.37,23,1010.0 -2015,5,31,8,30,289,92.37,23,1010.0 -2015,5,31,9,0,463,86.53,24,1010.0 -2015,5,31,9,30,636,86.52,24,1010.0 -2015,5,31,10,0,574,82.06,25,1010.0 -2015,5,31,10,30,877,82.06,25,1010.0 -2015,5,31,11,0,925,77.91,26,1010.0 -2015,5,31,11,30,960,77.89,26,1010.0 -2015,5,31,12,0,974,73.26,27,1010.0 -2015,5,31,12,30,977,73.24,27,1010.0 -2015,5,31,13,0,962,72.65,28,1010.0 -2015,5,31,13,30,933,72.63,28,1010.0 -2015,5,31,14,0,891,67.99,28,1010.0 -2015,5,31,14,30,832,67.97,28,1010.0 -2015,5,31,15,0,762,67.42,28,1010.0 -2015,5,31,15,30,679,67.41,28,1010.0 -2015,5,31,16,0,441,67.45,28,1010.0 -2015,5,31,16,30,369,71.5,27,1010.0 -2015,5,31,17,0,389,72.98,27,1010.0 -2015,5,31,17,30,284,77.4,26,1010.0 -2015,5,31,18,0,145,78.69,26,1010.0 -2015,5,31,18,30,71,83.49,25,1010.0 -2015,5,31,19,0,18,87.45,24,1010.0 -2015,5,31,19,30,0,92.88,23,1010.0 -2015,5,31,20,0,0,89.53,23,1010.0 -2015,5,31,20,30,0,95.14,22,1010.0 -2015,5,31,21,0,0,92.89,22,1010.0 -2015,5,31,21,30,0,98.74000000000001,22,1010.0 -2015,5,31,22,0,0,96.38,22,1010.0 -2015,5,31,22,30,0,96.37,21,1010.0 -2015,5,31,23,0,0,94.32000000000001,21,1010.0 -2015,5,31,23,30,0,100.0,20,1010.0 -2015,6,1,0,0,0,98.42,20,1010.0 -2015,6,1,0,30,0,98.4,20,1010.0 -2015,6,1,1,0,0,96.73,20,1010.0 -2015,6,1,1,30,0,100.0,19,1010.0 -2015,6,1,2,0,0,100.0,19,1010.0 -2015,6,1,2,30,0,100.0,19,1010.0 -2015,6,1,3,0,0,99.7,19,1010.0 -2015,6,1,3,30,0,100.0,19,1010.0 -2015,6,1,4,0,0,100.0,19,1010.0 -2015,6,1,4,30,0,100.0,18,1010.0 -2015,6,1,5,0,0,100.0,18,1010.0 -2015,6,1,5,30,0,98.47,19,1010.0 -2015,6,1,6,0,72,96.19,20,1010.0 -2015,6,1,6,30,167,90.48,21,1010.0 -2015,6,1,7,0,273,89.02,22,1010.0 -2015,6,1,7,30,383,83.8,23,1010.0 -2015,6,1,8,0,492,79.02,24,1010.0 -2015,6,1,8,30,597,74.45,25,1010.0 -2015,6,1,9,0,694,68.94,26,1010.0 -2015,6,1,9,30,782,68.93,26,1010.0 -2015,6,1,10,0,858,64.23,27,1010.0 -2015,6,1,10,30,921,64.22,27,1010.0 -2015,6,1,11,0,970,60.53,28,1010.0 -2015,6,1,11,30,1003,60.52,28,1010.0 -2015,6,1,12,0,1020,60.77,29,1010.0 -2015,6,1,12,30,1021,60.74,29,1010.0 -2015,6,1,13,0,1006,57.69,29,1010.0 -2015,6,1,13,30,831,57.68,29,1010.0 -2015,6,1,14,0,791,57.96,29,1010.0 -2015,6,1,14,30,727,57.94,29,1010.0 -2015,6,1,15,0,795,58.13,29,1010.0 -2015,6,1,15,30,710,58.120000000000005,29,1010.0 -2015,6,1,16,0,616,58.53,29,1010.0 -2015,6,1,16,30,514,58.52,29,1010.0 -2015,6,1,17,0,209,58.89,29,1010.0 -2015,6,1,17,30,253,62.4,28,1010.0 -2015,6,1,18,0,164,66.46000000000001,27,1010.0 -2015,6,1,18,30,82,70.49,26,1010.0 -2015,6,1,19,0,18,68.64,26,1010.0 -2015,6,1,19,30,0,72.84,25,1010.0 -2015,6,1,20,0,0,72.3,25,1010.0 -2015,6,1,20,30,0,76.76,24,1010.0 -2015,6,1,21,0,0,76.32000000000001,24,1010.0 -2015,6,1,21,30,0,81.05,23,1010.0 -2015,6,1,22,0,0,81.01,23,1010.0 -2015,6,1,22,30,0,86.05,23,1010.0 -2015,6,1,23,0,0,86.85000000000001,23,1010.0 -2015,6,1,23,30,0,86.84,22,1010.0 -2015,6,2,0,0,0,87.62,22,1010.0 -2015,6,2,0,30,0,93.12,21,1010.0 -2015,6,2,1,0,0,94.06,21,1010.0 -2015,6,2,1,30,0,94.05,21,1010.0 -2015,6,2,2,0,0,94.57000000000001,21,1010.0 -2015,6,2,2,30,0,100.0,20,1010.0 -2015,6,2,3,0,0,100.0,20,1010.0 -2015,6,2,3,30,0,100.0,20,1010.0 -2015,6,2,4,0,0,100.0,20,1010.0 -2015,6,2,4,30,0,100.0,20,1010.0 -2015,6,2,5,0,0,100.0,20,1010.0 -2015,6,2,5,30,0,94.63,21,1010.0 -2015,6,2,6,0,70,95.3,22,1010.0 -2015,6,2,6,30,161,89.71000000000001,23,1010.0 -2015,6,2,7,0,264,85.96000000000001,24,1010.0 -2015,6,2,7,30,371,80.98,25,1010.0 -2015,6,2,8,0,478,75.60000000000001,26,1010.0 -2015,6,2,8,30,580,75.59,26,1010.0 -2015,6,2,9,0,676,70.59,27,1010.0 -2015,6,2,9,30,763,70.58,27,1010.0 -2015,6,2,10,0,837,66.21000000000001,28,1010.0 -2015,6,2,10,30,901,66.19,28,1010.0 -2015,6,2,11,0,948,62.26,29,1010.0 -2015,6,2,11,30,816,62.24,29,1010.0 -2015,6,2,12,0,998,61.9,29,1010.0 -2015,6,2,12,30,999,61.88,29,1010.0 -2015,6,2,13,0,984,58.07,30,1010.0 -2015,6,2,13,30,954,58.050000000000004,30,1010.0 -2015,6,2,14,0,908,57.51,30,1010.0 -2015,6,2,14,30,849,57.49,30,1010.0 -2015,6,2,15,0,771,57.04,30,1010.0 -2015,6,2,15,30,687,57.02,30,1010.0 -2015,6,2,16,0,594,57.09,30,1010.0 -2015,6,2,16,30,420,57.08,30,1010.0 -2015,6,2,17,0,219,58.53,30,1010.0 -2015,6,2,17,30,229,61.99,29,1010.0 -2015,6,2,18,0,118,66.87,28,1010.0 -2015,6,2,18,30,89,70.89,27,1010.0 -2015,6,2,19,0,18,77.24,26,1010.0 -2015,6,2,19,30,0,81.96000000000001,25,1010.0 -2015,6,2,20,0,0,86.66,25,1010.0 -2015,6,2,20,30,0,92.05,24,1010.0 -2015,6,2,21,0,0,91.89,24,1010.0 -2015,6,2,21,30,0,91.9,23,1010.0 -2015,6,2,22,0,0,91.94,23,1010.0 -2015,6,2,22,30,0,97.67,22,1010.0 -2015,6,2,23,0,0,97.78,22,1010.0 -2015,6,2,23,30,0,97.77,22,1010.0 -2015,6,3,0,0,0,97.52,22,1010.0 -2015,6,3,0,30,0,100.0,21,1010.0 -2015,6,3,1,0,0,100.0,21,1010.0 -2015,6,3,1,30,0,100.0,21,1010.0 -2015,6,3,2,0,0,100.0,21,1010.0 -2015,6,3,2,30,0,100.0,21,1010.0 -2015,6,3,3,0,0,99.93,21,1010.0 -2015,6,3,3,30,0,99.93,21,1010.0 -2015,6,3,4,0,0,98.45,21,1010.0 -2015,6,3,4,30,0,98.46000000000001,21,1010.0 -2015,6,3,5,0,0,97.75,21,1010.0 -2015,6,3,5,30,0,91.99,22,1010.0 -2015,6,3,6,0,67,91.98,23,1010.0 -2015,6,3,6,30,155,86.63,24,1010.0 -2015,6,3,7,0,256,80.36,25,1010.0 -2015,6,3,7,30,361,75.74,26,1010.0 -2015,6,3,8,0,466,67.66,27,1010.0 -2015,6,3,8,30,567,67.66,27,1010.0 -2015,6,3,9,0,662,63.870000000000005,28,1010.0 -2015,6,3,9,30,748,63.870000000000005,28,1010.0 -2015,6,3,10,0,823,61.230000000000004,29,1010.0 -2015,6,3,10,30,886,61.22,29,1010.0 -2015,6,3,11,0,936,62.25,29,1010.0 -2015,6,3,11,30,970,62.230000000000004,29,1010.0 -2015,6,3,12,0,989,59.56,30,1010.0 -2015,6,3,12,30,991,59.54,30,1010.0 -2015,6,3,13,0,975,60.120000000000005,30,1010.0 -2015,6,3,13,30,946,60.1,30,1010.0 -2015,6,3,14,0,900,60.27,30,1010.0 -2015,6,3,14,30,841,60.26,30,1010.0 -2015,6,3,15,0,766,60.620000000000005,30,1010.0 -2015,6,3,15,30,538,64.19,29,1010.0 -2015,6,3,16,0,589,65.82000000000001,29,1010.0 -2015,6,3,16,30,333,69.74,28,1010.0 -2015,6,3,17,0,288,71.66,28,1010.0 -2015,6,3,17,30,204,75.96000000000001,27,1010.0 -2015,6,3,18,0,52,77.8,27,1010.0 -2015,6,3,18,30,89,87.55,25,1010.0 -2015,6,3,19,0,19,91.32000000000001,24,1010.0 -2015,6,3,19,30,0,91.34,24,1010.0 -2015,6,3,20,0,0,88.45,24,1010.0 -2015,6,3,20,30,0,93.95,23,1010.0 -2015,6,3,21,0,0,92.95,23,1010.0 -2015,6,3,21,30,0,92.96000000000001,23,1010.0 -2015,6,3,22,0,0,92.29,23,1010.0 -2015,6,3,22,30,0,98.05,22,1010.0 -2015,6,3,23,0,0,96.93,22,1010.0 -2015,6,3,23,30,0,96.93,22,1010.0 -2015,6,4,0,0,0,95.35000000000001,22,1010.0 -2015,6,4,0,30,0,100.0,22,1010.0 -2015,6,4,1,0,0,99.44,22,1010.0 -2015,6,4,1,30,0,99.43,21,1010.0 -2015,6,4,2,0,0,97.77,21,1010.0 -2015,6,4,2,30,0,97.77,21,1010.0 -2015,6,4,3,0,0,96.67,22,1010.0 -2015,6,4,3,30,0,96.67,22,1010.0 -2015,6,4,4,0,0,90.4,22,1010.0 -2015,6,4,4,30,0,90.41,22,1010.0 -2015,6,4,5,0,0,90.60000000000001,22,1010.0 -2015,6,4,5,30,0,90.63,22,1010.0 -2015,6,4,6,0,70,92.09,23,1010.0 -2015,6,4,6,30,160,86.74,24,1010.0 -2015,6,4,7,0,263,78.69,25,1010.0 -2015,6,4,7,30,370,74.19,26,1010.0 -2015,6,4,8,0,477,68.68,27,1010.0 -2015,6,4,8,30,579,68.68,27,1010.0 -2015,6,4,9,0,668,65.1,28,1010.0 -2015,6,4,9,30,755,65.11,28,1010.0 -2015,6,4,10,0,830,62.300000000000004,29,1010.0 -2015,6,4,10,30,893,62.29,29,1010.0 -2015,6,4,11,0,941,63.39,30,1010.0 -2015,6,4,11,30,975,63.38,30,1010.0 -2015,6,4,12,0,993,60.870000000000005,30,1010.0 -2015,6,4,12,30,995,60.86,30,1010.0 -2015,6,4,13,0,578,61.71,30,1010.0 -2015,6,4,13,30,560,61.7,30,1010.0 -2015,6,4,14,0,906,62.28,30,1010.0 -2015,6,4,14,30,847,62.27,30,1010.0 -2015,6,4,15,0,777,62.620000000000005,30,1010.0 -2015,6,4,15,30,694,66.32000000000001,29,1010.0 -2015,6,4,16,0,600,67.13,29,1010.0 -2015,6,4,16,30,500,71.12,29,1010.0 -2015,6,4,17,0,395,73.41,29,1010.0 -2015,6,4,17,30,290,77.82000000000001,28,1010.0 -2015,6,4,18,0,187,80.16,27,1010.0 -2015,6,4,18,30,94,85.02,26,1010.0 -2015,6,4,19,0,21,87.64,25,1010.0 -2015,6,4,19,30,0,93.04,24,1010.0 -2015,6,4,20,0,0,90.15,24,1010.0 -2015,6,4,20,30,0,90.17,24,1010.0 -2015,6,4,21,0,0,89.02,24,1010.0 -2015,6,4,21,30,0,94.54,23,1010.0 -2015,6,4,22,0,0,93.74,23,1010.0 -2015,6,4,22,30,0,93.74,23,1010.0 -2015,6,4,23,0,0,93.02,23,1010.0 -2015,6,4,23,30,0,98.82000000000001,23,1010.0 -2015,6,5,0,0,0,98.03,23,1010.0 -2015,6,5,0,30,0,98.02,22,1010.0 -2015,6,5,1,0,0,97.15,22,1010.0 -2015,6,5,1,30,0,97.14,22,1010.0 -2015,6,5,2,0,0,96.49000000000001,22,1010.0 -2015,6,5,2,30,0,96.49000000000001,22,1010.0 -2015,6,5,3,0,0,96.04,22,1010.0 -2015,6,5,3,30,0,96.05,22,1010.0 -2015,6,5,4,0,0,95.97,22,1010.0 -2015,6,5,4,30,0,95.99000000000001,22,1010.0 -2015,6,5,5,0,0,96.8,22,1010.0 -2015,6,5,5,30,0,96.83,22,1010.0 -2015,6,5,6,0,67,97.62,23,1010.0 -2015,6,5,6,30,155,91.95,24,1010.0 -2015,6,5,7,0,255,88.98,25,1010.0 -2015,6,5,7,30,359,83.87,26,1010.0 -2015,6,5,8,0,464,76.73,27,1010.0 -2015,6,5,8,30,565,76.72,27,1010.0 -2015,6,5,9,0,660,70.74,28,1010.0 -2015,6,5,9,30,745,70.74,28,1010.0 -2015,6,5,10,0,630,66.6,29,1010.0 -2015,6,5,10,30,883,66.58,29,1010.0 -2015,6,5,11,0,624,63.08,30,1010.0 -2015,6,5,11,30,456,63.06,30,1010.0 -2015,6,5,12,0,559,63.160000000000004,30,1010.0 -2015,6,5,12,30,553,63.14,30,1010.0 -2015,6,5,13,0,286,63.300000000000004,30,1010.0 -2015,6,5,13,30,410,63.28,30,1010.0 -2015,6,5,14,0,679,63.4,30,1010.0 -2015,6,5,14,30,635,63.38,30,1010.0 -2015,6,5,15,0,574,63.57,30,1010.0 -2015,6,5,15,30,516,67.31,30,1010.0 -2015,6,5,16,0,447,68.47,30,1010.0 -2015,6,5,16,30,372,68.47,29,1010.0 -2015,6,5,17,0,382,70.35000000000001,29,1010.0 -2015,6,5,17,30,267,74.53,28,1010.0 -2015,6,5,18,0,147,75.99,28,1010.0 -2015,6,5,18,30,73,85.43,26,1010.0 -2015,6,5,19,0,21,90.59,25,1010.0 -2015,6,5,19,30,0,90.60000000000001,25,1010.0 -2015,6,5,20,0,0,87.09,25,1010.0 -2015,6,5,20,30,0,92.46000000000001,24,1010.0 -2015,6,5,21,0,0,90.64,24,1010.0 -2015,6,5,21,30,0,96.25,24,1010.0 -2015,6,5,22,0,0,95.21000000000001,24,1010.0 -2015,6,5,22,30,0,95.21000000000001,23,1010.0 -2015,6,5,23,0,0,94.35000000000001,23,1010.0 -2015,6,5,23,30,0,94.35000000000001,23,1010.0 -2015,6,6,0,0,0,93.48,23,1010.0 -2015,6,6,0,30,0,99.31,22,1010.0 -2015,6,6,1,0,0,98.37,22,1010.0 -2015,6,6,1,30,0,98.37,22,1010.0 -2015,6,6,2,0,0,97.44,22,1010.0 -2015,6,6,2,30,0,97.45,22,1010.0 -2015,6,6,3,0,0,97.08,22,1010.0 -2015,6,6,3,30,0,97.09,22,1010.0 -2015,6,6,4,0,0,96.65,22,1010.0 -2015,6,6,4,30,0,96.66,22,1010.0 -2015,6,6,5,0,0,96.64,22,1010.0 -2015,6,6,5,30,0,96.66,22,1010.0 -2015,6,6,6,0,69,96.06,23,1010.0 -2015,6,6,6,30,157,90.47,24,1010.0 -2015,6,6,7,0,259,87.04,25,1010.0 -2015,6,6,7,30,364,82.03,26,1010.0 -2015,6,6,8,0,470,76.01,27,1010.0 -2015,6,6,8,30,572,71.7,28,1010.0 -2015,6,6,9,0,667,67.31,29,1010.0 -2015,6,6,9,30,753,67.3,29,1010.0 -2015,6,6,10,0,827,64.16,30,1010.0 -2015,6,6,10,30,890,64.15,30,1010.0 -2015,6,6,11,0,938,61.14,31,1010.0 -2015,6,6,11,30,972,61.13,31,1010.0 -2015,6,6,12,0,981,61.4,31,1010.0 -2015,6,6,12,30,983,61.38,31,1010.0 -2015,6,6,13,0,632,61.550000000000004,31,1010.0 -2015,6,6,13,30,938,61.53,31,1010.0 -2015,6,6,14,0,587,61.75,31,1010.0 -2015,6,6,14,30,751,61.74,31,1010.0 -2015,6,6,15,0,620,62.13,31,1010.0 -2015,6,6,15,30,520,65.76,31,1010.0 -2015,6,6,16,0,441,66.83,31,1010.0 -2015,6,6,16,30,491,66.82000000000001,30,1010.0 -2015,6,6,17,0,390,68.43,30,1010.0 -2015,6,6,17,30,286,72.47,29,1010.0 -2015,6,6,18,0,186,73.43,29,1010.0 -2015,6,6,18,30,94,82.47,27,1010.0 -2015,6,6,19,0,22,88.11,26,1010.0 -2015,6,6,19,30,0,93.5,25,1010.0 -2015,6,6,20,0,0,89.5,25,1010.0 -2015,6,6,20,30,0,95.02,24,1010.0 -2015,6,6,21,0,0,92.65,24,1010.0 -2015,6,6,21,30,0,92.67,24,1010.0 -2015,6,6,22,0,0,90.92,24,1010.0 -2015,6,6,22,30,0,96.54,23,1010.0 -2015,6,6,23,0,0,95.02,23,1010.0 -2015,6,6,23,30,0,95.02,23,1010.0 -2015,6,7,0,0,0,93.83,23,1010.0 -2015,6,7,0,30,0,93.83,23,1010.0 -2015,6,7,1,0,0,92.76,23,1010.0 -2015,6,7,1,30,0,98.54,22,1010.0 -2015,6,7,2,0,0,97.38,22,1010.0 -2015,6,7,2,30,0,97.37,22,1010.0 -2015,6,7,3,0,0,96.37,22,1010.0 -2015,6,7,3,30,0,96.37,22,1010.0 -2015,6,7,4,0,0,95.73,22,1010.0 -2015,6,7,4,30,0,100.0,22,1010.0 -2015,6,7,5,0,0,100.0,22,1010.0 -2015,6,7,5,30,7,96.03,22,1010.0 -2015,6,7,6,0,68,95.59,23,1010.0 -2015,6,7,6,30,157,90.03,24,1010.0 -2015,6,7,7,0,260,87.47,25,1010.0 -2015,6,7,7,30,365,82.45,26,1010.0 -2015,6,7,8,0,472,75.94,27,1010.0 -2015,6,7,8,30,574,71.64,28,1010.0 -2015,6,7,9,0,670,66.58,29,1010.0 -2015,6,7,9,30,757,66.58,29,1010.0 -2015,6,7,10,0,833,63.28,30,1010.0 -2015,6,7,10,30,896,63.27,30,1010.0 -2015,6,7,11,0,946,60.53,31,1010.0 -2015,6,7,11,30,980,60.52,31,1010.0 -2015,6,7,12,0,1004,61.14,31,1010.0 -2015,6,7,12,30,1006,61.120000000000005,31,1010.0 -2015,6,7,13,0,993,61.43,31,1010.0 -2015,6,7,13,30,964,61.410000000000004,31,1010.0 -2015,6,7,14,0,919,61.45,31,1010.0 -2015,6,7,14,30,861,61.44,31,1010.0 -2015,6,7,15,0,786,61.17,31,1010.0 -2015,6,7,15,30,703,64.75,30,1010.0 -2015,6,7,16,0,610,65.06,30,1010.0 -2015,6,7,16,30,511,65.06,30,1010.0 -2015,6,7,17,0,407,66.92,30,1010.0 -2015,6,7,17,30,301,70.88,29,1010.0 -2015,6,7,18,0,198,77.13,28,1010.0 -2015,6,7,18,30,102,86.72,26,1010.0 -2015,6,7,19,0,26,89.66,25,1010.0 -2015,6,7,19,30,0,89.69,25,1010.0 -2015,6,7,20,0,0,86.83,25,1010.0 -2015,6,7,20,30,0,92.18,24,1010.0 -2015,6,7,21,0,0,91.06,24,1010.0 -2015,6,7,21,30,0,91.07000000000001,24,1010.0 -2015,6,7,22,0,0,90.78,24,1010.0 -2015,6,7,22,30,0,96.39,23,1010.0 -2015,6,7,23,0,0,96.17,23,1010.0 -2015,6,7,23,30,0,96.15,23,1010.0 -2015,6,8,0,0,0,95.3,23,1010.0 -2015,6,8,0,30,0,100.0,22,1010.0 -2015,6,8,1,0,0,100.0,22,1010.0 -2015,6,8,1,30,0,100.0,22,1010.0 -2015,6,8,2,0,0,99.61,22,1010.0 -2015,6,8,2,30,0,99.61,22,1010.0 -2015,6,8,3,0,0,99.27,22,1010.0 -2015,6,8,3,30,0,99.27,22,1010.0 -2015,6,8,4,0,0,98.95,22,1010.0 -2015,6,8,4,30,0,98.97,22,1010.0 -2015,6,8,5,0,0,99.17,23,1010.0 -2015,6,8,5,30,5,93.39,23,1010.0 -2015,6,8,6,0,41,93.07000000000001,24,1010.0 -2015,6,8,6,30,93,93.10000000000001,24,1010.0 -2015,6,8,7,0,161,88.36,25,1010.0 -2015,6,8,7,30,239,83.3,26,1010.0 -2015,6,8,8,0,361,77.87,27,1010.0 -2015,6,8,8,30,453,77.87,27,1010.0 -2015,6,8,9,0,585,72.8,28,1010.0 -2015,6,8,9,30,583,72.8,28,1010.0 -2015,6,8,10,0,832,68.07000000000001,29,1010.0 -2015,6,8,10,30,895,68.05,29,1010.0 -2015,6,8,11,0,944,63.88,30,1010.0 -2015,6,8,11,30,978,63.86,30,1010.0 -2015,6,8,12,0,993,60.28,31,1010.0 -2015,6,8,12,30,996,60.26,31,1010.0 -2015,6,8,13,0,983,60.33,31,1010.0 -2015,6,8,13,30,954,60.31,31,1010.0 -2015,6,8,14,0,910,60.410000000000004,31,1010.0 -2015,6,8,14,30,852,60.4,31,1010.0 -2015,6,8,15,0,780,60.480000000000004,31,1010.0 -2015,6,8,15,30,698,60.47,31,1010.0 -2015,6,8,16,0,605,61.33,31,1010.0 -2015,6,8,16,30,506,64.92,30,1010.0 -2015,6,8,17,0,402,66.12,30,1010.0 -2015,6,8,17,30,297,70.02,29,1010.0 -2015,6,8,18,0,194,72.41,29,1010.0 -2015,6,8,18,30,100,81.33,28,1010.0 -2015,6,8,19,0,26,88.65,27,1010.0 -2015,6,8,19,30,0,94.06,26,1010.0 -2015,6,8,20,0,0,91.2,26,1010.0 -2015,6,8,20,30,0,91.21000000000001,25,1010.0 -2015,6,8,21,0,0,90.38,25,1010.0 -2015,6,8,21,30,0,95.94,24,1010.0 -2015,6,8,22,0,0,95.75,24,1010.0 -2015,6,8,22,30,0,95.75,24,1010.0 -2015,6,8,23,0,0,95.72,24,1010.0 -2015,6,8,23,30,0,95.71000000000001,24,1010.0 -2015,6,9,0,0,0,95.55,24,1010.0 -2015,6,9,0,30,0,100.0,23,1010.0 -2015,6,9,1,0,0,100.0,23,1010.0 -2015,6,9,1,30,0,100.0,23,1010.0 -2015,6,9,2,0,0,100.0,23,1010.0 -2015,6,9,2,30,0,100.0,23,1010.0 -2015,6,9,3,0,0,100.0,23,1010.0 -2015,6,9,3,30,0,100.0,23,1010.0 -2015,6,9,4,0,0,100.0,23,1010.0 -2015,6,9,4,30,0,100.0,23,1010.0 -2015,6,9,5,0,0,100.0,23,1010.0 -2015,6,9,5,30,8,100.0,23,1010.0 -2015,6,9,6,0,67,98.24000000000001,24,1010.0 -2015,6,9,6,30,154,98.24000000000001,25,1010.0 -2015,6,9,7,0,252,94.9,26,1010.0 -2015,6,9,7,30,355,89.44,26,1010.0 -2015,6,9,8,0,458,84.27,27,1010.0 -2015,6,9,8,30,558,84.26,27,1010.0 -2015,6,9,9,0,651,79.06,28,1010.0 -2015,6,9,9,30,736,79.06,28,1010.0 -2015,6,9,10,0,810,73.14,29,1010.0 -2015,6,9,10,30,733,73.12,29,1010.0 -2015,6,9,11,0,783,68.60000000000001,30,1010.0 -2015,6,9,11,30,820,68.58,30,1010.0 -2015,6,9,12,0,754,68.98,30,1010.0 -2015,6,9,12,30,819,68.96000000000001,30,1010.0 -2015,6,9,13,0,737,65.68,31,1010.0 -2015,6,9,13,30,813,65.66,31,1010.0 -2015,6,9,14,0,777,65.96000000000001,31,1010.0 -2015,6,9,14,30,767,65.94,31,1010.0 -2015,6,9,15,0,569,65.53,31,1000.0 -2015,6,9,15,30,550,65.52,31,1000.0 -2015,6,9,16,0,480,65.28,31,1000.0 -2015,6,9,16,30,288,69.10000000000001,30,1000.0 -2015,6,9,17,0,78,70.78,30,1000.0 -2015,6,9,17,30,162,70.78,30,1000.0 -2015,6,9,18,0,3,69.37,30,1000.0 -2015,6,9,18,30,1,77.85000000000001,28,1000.0 -2015,6,9,19,0,0,85.94,27,1000.0 -2015,6,9,19,30,0,91.15,26,1000.0 -2015,6,9,20,0,0,88.3,26,1000.0 -2015,6,9,20,30,0,93.7,25,1010.0 -2015,6,9,21,0,0,92.59,25,1010.0 -2015,6,9,21,30,0,92.59,25,1010.0 -2015,6,9,22,0,0,91.49,25,1010.0 -2015,6,9,22,30,0,97.10000000000001,24,1010.0 -2015,6,9,23,0,0,96.45,24,1010.0 -2015,6,9,23,30,0,96.43,24,1000.0 -2015,6,10,0,0,0,96.14,24,1000.0 -2015,6,10,0,30,0,100.0,23,1000.0 -2015,6,10,1,0,0,100.0,23,1000.0 -2015,6,10,1,30,0,100.0,23,1000.0 -2015,6,10,2,0,0,100.0,23,1000.0 -2015,6,10,2,30,0,100.0,23,1000.0 -2015,6,10,3,0,0,100.0,23,1000.0 -2015,6,10,3,30,0,100.0,22,1000.0 -2015,6,10,4,0,0,100.0,22,1010.0 -2015,6,10,4,30,0,100.0,22,1010.0 -2015,6,10,5,0,0,100.0,22,1010.0 -2015,6,10,5,30,8,100.0,23,1010.0 -2015,6,10,6,0,69,99.67,24,1010.0 -2015,6,10,6,30,158,93.91,25,1010.0 -2015,6,10,7,0,258,90.83,26,1010.0 -2015,6,10,7,30,363,85.65,27,1010.0 -2015,6,10,8,0,467,81.24,28,1010.0 -2015,6,10,8,30,568,81.23,28,1010.0 -2015,6,10,9,0,662,75.93,29,1010.0 -2015,6,10,9,30,748,75.92,29,1010.0 -2015,6,10,10,0,822,70.44,30,1010.0 -2015,6,10,10,30,884,70.43,30,1010.0 -2015,6,10,11,0,932,66.03,31,1010.0 -2015,6,10,11,30,966,66.01,31,1010.0 -2015,6,10,12,0,983,65.66,31,1000.0 -2015,6,10,12,30,986,65.64,31,1000.0 -2015,6,10,13,0,972,61.75,32,1000.0 -2015,6,10,13,30,944,61.730000000000004,32,1000.0 -2015,6,10,14,0,899,61.33,32,1000.0 -2015,6,10,14,30,842,64.88,31,1000.0 -2015,6,10,15,0,767,64.6,31,1000.0 -2015,6,10,15,30,686,64.59,31,1000.0 -2015,6,10,16,0,597,65.04,31,1000.0 -2015,6,10,16,30,499,68.84,30,1000.0 -2015,6,10,17,0,399,71.05,30,1000.0 -2015,6,10,17,30,295,75.25,29,1000.0 -2015,6,10,18,0,194,76.65,29,1000.0 -2015,6,10,18,30,101,86.09,27,1000.0 -2015,6,10,19,0,27,90.25,26,1000.0 -2015,6,10,19,30,0,90.27,26,1000.0 -2015,6,10,20,0,0,87.31,26,1000.0 -2015,6,10,20,30,0,92.65,25,1000.0 -2015,6,10,21,0,0,91.94,25,1000.0 -2015,6,10,21,30,0,91.95,25,1000.0 -2015,6,10,22,0,0,92.37,25,1000.0 -2015,6,10,22,30,0,98.05,24,1000.0 -2015,6,10,23,0,0,98.58,24,1000.0 -2015,6,10,23,30,0,98.56,24,1000.0 -2015,6,11,0,0,0,98.86,24,1000.0 -2015,6,11,0,30,0,98.85000000000001,24,1000.0 -2015,6,11,1,0,0,98.87,24,1000.0 -2015,6,11,1,30,0,98.86,24,1000.0 -2015,6,11,2,0,0,98.54,24,1000.0 -2015,6,11,2,30,0,100.0,23,1000.0 -2015,6,11,3,0,0,100.0,23,1000.0 -2015,6,11,3,30,0,100.0,23,1000.0 -2015,6,11,4,0,0,100.0,23,1000.0 -2015,6,11,4,30,0,100.0,23,1000.0 -2015,6,11,5,0,0,100.0,23,1000.0 -2015,6,11,5,30,9,96.35000000000001,24,1000.0 -2015,6,11,6,0,70,97.5,26,1010.0 -2015,6,11,6,30,159,91.91,26,1010.0 -2015,6,11,7,0,260,85.86,27,1010.0 -2015,6,11,7,30,365,85.86,27,1010.0 -2015,6,11,8,0,468,79.91,28,1010.0 -2015,6,11,8,30,569,79.91,28,1010.0 -2015,6,11,9,0,217,75.21000000000001,29,1010.0 -2015,6,11,9,30,748,75.2,29,1010.0 -2015,6,11,10,0,823,70.69,30,1000.0 -2015,6,11,10,30,885,70.68,30,1000.0 -2015,6,11,11,0,934,66.5,31,1000.0 -2015,6,11,11,30,968,66.48,31,1000.0 -2015,6,11,12,0,984,66.38,31,1000.0 -2015,6,11,12,30,987,66.36,31,1000.0 -2015,6,11,13,0,973,66.46000000000001,31,1000.0 -2015,6,11,13,30,945,66.44,31,1000.0 -2015,6,11,14,0,791,66.69,31,1000.0 -2015,6,11,14,30,380,66.67,31,1000.0 -2015,6,11,15,0,771,66.99,31,1000.0 -2015,6,11,15,30,690,70.91,30,1000.0 -2015,6,11,16,0,600,71.66,30,1000.0 -2015,6,11,16,30,370,75.89,29,1000.0 -2015,6,11,17,0,401,77.25,29,1000.0 -2015,6,11,17,30,296,81.86,28,1000.0 -2015,6,11,18,0,195,83.53,28,1000.0 -2015,6,11,18,30,101,88.54,27,1000.0 -2015,6,11,19,0,27,92.8,26,1000.0 -2015,6,11,19,30,0,92.82000000000001,26,1000.0 -2015,6,11,20,0,0,91.91,26,1000.0 -2015,6,11,20,30,0,97.53,25,1000.0 -2015,6,11,21,0,0,97.05,25,1000.0 -2015,6,11,21,30,0,97.06,25,1000.0 -2015,6,11,22,0,0,96.61,25,1000.0 -2015,6,11,22,30,0,96.60000000000001,25,1000.0 -2015,6,11,23,0,0,96.15,25,1000.0 -2015,6,11,23,30,0,100.0,25,1000.0 -2015,6,12,0,0,0,100.0,25,1000.0 -2015,6,12,0,30,0,100.0,24,1000.0 -2015,6,12,1,0,0,100.0,24,1000.0 -2015,6,12,1,30,0,100.0,24,1000.0 -2015,6,12,2,0,0,100.0,24,1000.0 -2015,6,12,2,30,0,100.0,24,1000.0 -2015,6,12,3,0,0,100.0,24,1000.0 -2015,6,12,3,30,0,100.0,24,1000.0 -2015,6,12,4,0,0,100.0,24,1000.0 -2015,6,12,4,30,0,100.0,24,1000.0 -2015,6,12,5,0,0,100.0,24,1000.0 -2015,6,12,5,30,7,94.93,25,1000.0 -2015,6,12,6,0,65,94.46000000000001,26,1000.0 -2015,6,12,6,30,151,94.48,26,1000.0 -2015,6,12,7,0,251,88.56,27,1010.0 -2015,6,12,7,30,355,88.57000000000001,28,1010.0 -2015,6,12,8,0,459,82.16,29,1010.0 -2015,6,12,8,30,560,82.17,29,1010.0 -2015,6,12,9,0,655,77.05,30,1010.0 -2015,6,12,9,30,740,77.05,30,1010.0 -2015,6,12,10,0,816,72.57000000000001,30,1010.0 -2015,6,12,10,30,878,72.56,30,1010.0 -2015,6,12,11,0,927,68.67,31,1010.0 -2015,6,12,11,30,961,68.66,31,1010.0 -2015,6,12,12,0,984,69.01,31,1000.0 -2015,6,12,12,30,987,68.99,31,1000.0 -2015,6,12,13,0,972,69.37,31,1000.0 -2015,6,12,13,30,944,69.35000000000001,31,1000.0 -2015,6,12,14,0,898,69.86,31,1000.0 -2015,6,12,14,30,603,73.94,30,1000.0 -2015,6,12,15,0,581,74.54,30,1000.0 -2015,6,12,15,30,653,74.54,30,1000.0 -2015,6,12,16,0,595,75.48,30,1000.0 -2015,6,12,16,30,497,79.94,29,1000.0 -2015,6,12,17,0,395,81.66,29,1000.0 -2015,6,12,17,30,292,86.52,28,1000.0 -2015,6,12,18,0,191,88.23,28,1000.0 -2015,6,12,18,30,98,93.53,27,1000.0 -2015,6,12,19,0,26,92.66,27,1000.0 -2015,6,12,19,30,0,98.27,26,1000.0 -2015,6,12,20,0,0,97.36,26,1000.0 -2015,6,12,20,30,0,97.38,26,1000.0 -2015,6,12,21,0,0,96.67,26,1000.0 -2015,6,12,21,30,0,96.69,26,1000.0 -2015,6,12,22,0,0,96.05,26,1010.0 -2015,6,12,22,30,0,96.04,26,1010.0 -2015,6,12,23,0,0,95.22,26,1010.0 -2015,6,12,23,30,0,100.0,25,1000.0 -2015,6,13,0,0,0,100.0,25,1000.0 -2015,6,13,0,30,0,100.0,25,1000.0 -2015,6,13,1,0,0,99.43,25,1000.0 -2015,6,13,1,30,0,99.44,25,1000.0 -2015,6,13,2,0,0,98.73,25,1000.0 -2015,6,13,2,30,0,98.74000000000001,25,1010.0 -2015,6,13,3,0,0,97.98,25,1010.0 -2015,6,13,3,30,0,100.0,25,1010.0 -2015,6,13,4,0,0,100.0,25,1010.0 -2015,6,13,4,30,0,100.0,25,1010.0 -2015,6,13,5,0,0,98.05,25,1010.0 -2015,6,13,5,30,2,98.06,25,1010.0 -2015,6,13,6,0,43,100.0,25,1010.0 -2015,6,13,6,30,51,100.0,25,1010.0 -2015,6,13,7,0,190,98.24000000000001,26,1010.0 -2015,6,13,7,30,174,98.24000000000001,26,1010.0 -2015,6,13,8,0,42,93.07000000000001,27,1010.0 -2015,6,13,8,30,79,93.07000000000001,27,1010.0 -2015,6,13,9,0,165,86.83,28,1010.0 -2015,6,13,9,30,99,86.83,28,1010.0 -2015,6,13,10,0,79,86.05,28,1010.0 -2015,6,13,10,30,200,86.05,28,1010.0 -2015,6,13,11,0,526,85.83,28,1010.0 -2015,6,13,11,30,648,85.82000000000001,28,1010.0 -2015,6,13,12,0,832,86.19,28,1010.0 -2015,6,13,12,30,838,86.17,28,1010.0 -2015,6,13,13,0,840,87.08,28,1010.0 -2015,6,13,13,30,778,92.3,27,1010.0 -2015,6,13,14,0,801,93.21000000000001,27,1010.0 -2015,6,13,14,30,646,93.2,27,1010.0 -2015,6,13,15,0,683,93.66,27,1010.0 -2015,6,13,15,30,612,93.66,27,1010.0 -2015,6,13,16,0,537,93.71000000000001,27,1010.0 -2015,6,13,16,30,477,93.71000000000001,27,1010.0 -2015,6,13,17,0,383,93.05,27,1010.0 -2015,6,13,17,30,281,98.7,26,1010.0 -2015,6,13,18,0,184,97.69,26,1010.0 -2015,6,13,18,30,94,100.0,26,1010.0 -2015,6,13,19,0,24,100.0,26,1010.0 -2015,6,13,19,30,0,100.0,25,1010.0 -2015,6,13,20,0,0,100.0,25,1010.0 -2015,6,13,20,30,0,100.0,25,1010.0 -2015,6,13,21,0,0,100.0,25,1010.0 -2015,6,13,21,30,0,100.0,25,1010.0 -2015,6,13,22,0,0,100.0,25,1010.0 -2015,6,13,22,30,0,100.0,25,1010.0 -2015,6,13,23,0,0,100.0,25,1010.0 -2015,6,13,23,30,0,100.0,25,1010.0 -2015,6,14,0,0,0,100.0,25,1010.0 -2015,6,14,0,30,0,100.0,25,1010.0 -2015,6,14,1,0,0,99.82000000000001,25,1010.0 -2015,6,14,1,30,0,99.81,25,1010.0 -2015,6,14,2,0,0,98.8,25,1010.0 -2015,6,14,2,30,0,98.8,25,1010.0 -2015,6,14,3,0,0,97.63,25,1010.0 -2015,6,14,3,30,0,97.64,25,1010.0 -2015,6,14,4,0,0,96.91,25,1010.0 -2015,6,14,4,30,0,100.0,25,1010.0 -2015,6,14,5,0,0,100.0,25,1010.0 -2015,6,14,5,30,5,100.0,25,1010.0 -2015,6,14,6,0,61,100.0,25,1010.0 -2015,6,14,6,30,5,100.0,25,1010.0 -2015,6,14,7,0,240,96.59,26,1010.0 -2015,6,14,7,30,342,96.59,26,1010.0 -2015,6,14,8,0,444,91.58,27,1010.0 -2015,6,14,8,30,543,91.57000000000001,27,1010.0 -2015,6,14,9,0,188,85.61,28,1010.0 -2015,6,14,9,30,663,85.61,28,1010.0 -2015,6,14,10,0,428,79.38,29,1010.0 -2015,6,14,10,30,859,79.37,29,1010.0 -2015,6,14,11,0,628,78.23,29,1010.0 -2015,6,14,11,30,652,78.22,29,1010.0 -2015,6,14,12,0,960,77.74,29,1010.0 -2015,6,14,12,30,964,77.72,29,1010.0 -2015,6,14,13,0,953,73.35000000000001,30,1010.0 -2015,6,14,13,30,925,73.34,30,1010.0 -2015,6,14,14,0,884,73.27,30,1010.0 -2015,6,14,14,30,828,77.59,29,1010.0 -2015,6,14,15,0,440,77.43,29,1010.0 -2015,6,14,15,30,533,77.42,29,1010.0 -2015,6,14,16,0,595,77.41,29,1010.0 -2015,6,14,16,30,499,82.01,28,1010.0 -2015,6,14,17,0,398,83.36,28,1010.0 -2015,6,14,17,30,295,88.37,27,1010.0 -2015,6,14,18,0,195,90.31,27,1010.0 -2015,6,14,18,30,102,95.78,26,1010.0 -2015,6,14,19,0,29,94.49,26,1010.0 -2015,6,14,19,30,0,100.0,25,1010.0 -2015,6,14,20,0,0,99.23,25,1010.0 -2015,6,14,20,30,0,99.25,25,1010.0 -2015,6,14,21,0,0,98.9,25,1010.0 -2015,6,14,21,30,0,98.91,25,1010.0 -2015,6,14,22,0,0,98.74000000000001,25,1010.0 -2015,6,14,22,30,0,98.74000000000001,25,1010.0 -2015,6,14,23,0,0,98.49000000000001,25,1010.0 -2015,6,14,23,30,0,98.47,25,1010.0 -2015,6,15,0,0,0,97.88,25,1010.0 -2015,6,15,0,30,0,100.0,25,1010.0 -2015,6,15,1,0,0,100.0,25,1010.0 -2015,6,15,1,30,0,100.0,24,1010.0 -2015,6,15,2,0,0,100.0,24,1010.0 -2015,6,15,2,30,0,100.0,24,1010.0 -2015,6,15,3,0,0,100.0,24,1010.0 -2015,6,15,3,30,0,100.0,24,1010.0 -2015,6,15,4,0,0,100.0,24,1010.0 -2015,6,15,4,30,0,100.0,24,1010.0 -2015,6,15,5,0,0,100.0,24,1010.0 -2015,6,15,5,30,0,100.0,24,1010.0 -2015,6,15,6,0,63,100.0,25,1010.0 -2015,6,15,6,30,148,100.0,25,1010.0 -2015,6,15,7,0,162,97.27,26,1010.0 -2015,6,15,7,30,159,97.27,26,1010.0 -2015,6,15,8,0,179,91.27,27,1010.0 -2015,6,15,8,30,238,91.26,27,1010.0 -2015,6,15,9,0,446,84.93,28,1010.0 -2015,6,15,9,30,359,84.93,28,1010.0 -2015,6,15,10,0,524,80.32000000000001,29,1010.0 -2015,6,15,10,30,584,80.3,29,1010.0 -2015,6,15,11,0,641,80.38,29,1010.0 -2015,6,15,11,30,650,80.36,29,1010.0 -2015,6,15,12,0,726,80.42,29,1010.0 -2015,6,15,12,30,445,80.41,29,1010.0 -2015,6,15,13,0,796,80.52,29,1010.0 -2015,6,15,13,30,699,80.51,29,1010.0 -2015,6,15,14,0,496,80.55,29,1010.0 -2015,6,15,14,30,657,80.54,29,1010.0 -2015,6,15,15,0,562,81.3,29,1010.0 -2015,6,15,15,30,582,86.12,28,1010.0 -2015,6,15,16,0,500,87.91,28,1010.0 -2015,6,15,16,30,184,93.15,27,1000.0 -2015,6,15,17,0,290,94.93,27,1000.0 -2015,6,15,17,30,204,94.9,27,1000.0 -2015,6,15,18,0,167,95.14,27,1000.0 -2015,6,15,18,30,80,100.0,26,1000.0 -2015,6,15,19,0,7,100.0,26,1000.0 -2015,6,15,19,30,0,100.0,26,1000.0 -2015,6,15,20,0,0,99.98,26,1000.0 -2015,6,15,20,30,0,100.0,26,1000.0 -2015,6,15,21,0,0,99.85000000000001,26,1000.0 -2015,6,15,21,30,0,99.87,26,1000.0 -2015,6,15,22,0,0,99.38,26,1000.0 -2015,6,15,22,30,0,99.38,26,1000.0 -2015,6,15,23,0,0,98.64,26,1000.0 -2015,6,15,23,30,0,98.63,26,1000.0 -2015,6,16,0,0,0,97.3,26,1000.0 -2015,6,16,0,30,0,100.0,25,1000.0 -2015,6,16,1,0,0,100.0,25,1000.0 -2015,6,16,1,30,0,100.0,25,1000.0 -2015,6,16,2,0,0,99.98,25,1000.0 -2015,6,16,2,30,0,99.98,25,1000.0 -2015,6,16,3,0,0,99.24000000000001,25,1000.0 -2015,6,16,3,30,0,99.25,25,1000.0 -2015,6,16,4,0,0,99.37,25,1000.0 -2015,6,16,4,30,0,99.39,25,1000.0 -2015,6,16,5,0,0,100.0,25,1000.0 -2015,6,16,5,30,0,100.0,25,1000.0 -2015,6,16,6,0,10,100.0,25,1010.0 -2015,6,16,6,30,25,100.0,25,1010.0 -2015,6,16,7,0,76,97.77,26,1010.0 -2015,6,16,7,30,123,97.78,26,1010.0 -2015,6,16,8,0,62,98.35000000000001,26,1010.0 -2015,6,16,8,30,204,98.37,26,1010.0 -2015,6,16,9,0,287,96.9,26,1010.0 -2015,6,16,9,30,308,96.92,26,1010.0 -2015,6,16,10,0,410,96.25,27,1010.0 -2015,6,16,10,30,264,96.23,27,1010.0 -2015,6,16,11,0,312,90.44,27,1010.0 -2015,6,16,11,30,224,90.42,27,1010.0 -2015,6,16,12,0,234,89.7,27,1010.0 -2015,6,16,12,30,349,89.68,27,1010.0 -2015,6,16,13,0,360,89.47,27,1010.0 -2015,6,16,13,30,364,94.87,27,1010.0 -2015,6,16,14,0,361,95.21000000000001,27,1010.0 -2015,6,16,14,30,455,95.2,26,1000.0 -2015,6,16,15,0,401,94.64,26,1000.0 -2015,6,16,15,30,349,100.0,25,1000.0 -2015,6,16,16,0,225,98.74000000000001,25,1000.0 -2015,6,16,16,30,118,98.72,25,1000.0 -2015,6,16,17,0,88,97.38,25,1000.0 -2015,6,16,17,30,82,97.36,25,1000.0 -2015,6,16,18,0,92,96.21000000000001,25,1000.0 -2015,6,16,18,30,48,100.0,25,1000.0 -2015,6,16,19,0,12,100.0,25,1000.0 -2015,6,16,19,30,0,100.0,25,1000.0 -2015,6,16,20,0,0,94.95,25,1000.0 -2015,6,16,20,30,0,94.97,25,1000.0 -2015,6,16,21,0,0,95.36,25,1000.0 -2015,6,16,21,30,0,95.38,25,1000.0 -2015,6,16,22,0,0,96.34,25,1010.0 -2015,6,16,22,30,0,96.34,25,1010.0 -2015,6,16,23,0,0,98.42,25,1010.0 -2015,6,16,23,30,0,98.41,25,1010.0 -2015,6,17,0,0,0,100.0,25,1010.0 -2015,6,17,0,30,0,100.0,25,1000.0 -2015,6,17,1,0,0,96.13,26,1000.0 -2015,6,17,1,30,0,96.12,26,1000.0 -2015,6,17,2,0,0,96.82000000000001,26,1000.0 -2015,6,17,2,30,0,96.82000000000001,26,1000.0 -2015,6,17,3,0,0,97.32000000000001,26,1000.0 -2015,6,17,3,30,0,100.0,26,1000.0 -2015,6,17,4,0,0,100.0,26,1010.0 -2015,6,17,4,30,0,100.0,26,1010.0 -2015,6,17,5,0,0,100.0,26,1010.0 -2015,6,17,5,30,0,100.0,26,1010.0 -2015,6,17,6,0,2,98.3,26,1010.0 -2015,6,17,6,30,8,98.33,26,1010.0 -2015,6,17,7,0,7,99.35000000000001,26,1010.0 -2015,6,17,7,30,13,99.37,26,1010.0 -2015,6,17,8,0,20,100.0,26,1010.0 -2015,6,17,8,30,36,100.0,26,1010.0 -2015,6,17,9,0,69,100.0,27,1010.0 -2015,6,17,9,30,115,100.0,27,1010.0 -2015,6,17,10,0,149,96.59,27,1010.0 -2015,6,17,10,30,185,96.59,27,1010.0 -2015,6,17,11,0,163,96.41,27,1010.0 -2015,6,17,11,30,171,96.4,27,1010.0 -2015,6,17,12,0,192,96.03,27,1010.0 -2015,6,17,12,30,450,96.01,27,1010.0 -2015,6,17,13,0,583,95.51,27,1010.0 -2015,6,17,13,30,579,95.49,27,1010.0 -2015,6,17,14,0,606,94.62,27,1010.0 -2015,6,17,14,30,537,94.60000000000001,27,1010.0 -2015,6,17,15,0,483,93.57000000000001,27,1010.0 -2015,6,17,15,30,382,93.56,27,1010.0 -2015,6,17,16,0,295,92.55,27,1010.0 -2015,6,17,16,30,94,98.14,26,1010.0 -2015,6,17,17,0,235,98.03,26,1010.0 -2015,6,17,17,30,124,98.04,26,1010.0 -2015,6,17,18,0,102,98.01,26,1010.0 -2015,6,17,18,30,54,100.0,25,1010.0 -2015,6,17,19,0,15,100.0,25,1010.0 -2015,6,17,19,30,0,100.0,25,1010.0 -2015,6,17,20,0,0,100.0,25,1010.0 -2015,6,17,20,30,0,100.0,25,1010.0 -2015,6,17,21,0,0,100.0,25,1010.0 -2015,6,17,21,30,0,100.0,25,1010.0 -2015,6,17,22,0,0,100.0,25,1010.0 -2015,6,17,22,30,0,100.0,25,1010.0 -2015,6,17,23,0,0,100.0,25,1010.0 -2015,6,17,23,30,0,100.0,25,1010.0 -2015,6,18,0,0,0,100.0,25,1010.0 -2015,6,18,0,30,0,100.0,25,1010.0 -2015,6,18,1,0,0,100.0,25,1010.0 -2015,6,18,1,30,0,100.0,25,1010.0 -2015,6,18,2,0,0,100.0,25,1010.0 -2015,6,18,2,30,0,100.0,25,1010.0 -2015,6,18,3,0,0,99.91,25,1010.0 -2015,6,18,3,30,0,100.0,25,1010.0 -2015,6,18,4,0,0,100.0,25,1010.0 -2015,6,18,4,30,0,100.0,24,1010.0 -2015,6,18,5,0,0,100.0,24,1010.0 -2015,6,18,5,30,0,100.0,24,1010.0 -2015,6,18,6,0,26,100.0,25,1010.0 -2015,6,18,6,30,19,100.0,25,1010.0 -2015,6,18,7,0,60,99.42,26,1010.0 -2015,6,18,7,30,61,99.42,26,1010.0 -2015,6,18,8,0,67,100.0,26,1010.0 -2015,6,18,8,30,70,100.0,26,1010.0 -2015,6,18,9,0,179,97.10000000000001,27,1010.0 -2015,6,18,9,30,203,97.09,27,1010.0 -2015,6,18,10,0,338,96.11,28,1010.0 -2015,6,18,10,30,400,96.10000000000001,28,1010.0 -2015,6,18,11,0,682,88.67,28,1010.0 -2015,6,18,11,30,364,88.66,28,1010.0 -2015,6,18,12,0,799,81.93,29,1010.0 -2015,6,18,12,30,825,81.92,29,1010.0 -2015,6,18,13,0,863,80.59,29,1010.0 -2015,6,18,13,30,421,80.57000000000001,29,1010.0 -2015,6,18,14,0,533,79.96000000000001,29,1010.0 -2015,6,18,14,30,363,79.95,29,1010.0 -2015,6,18,15,0,376,80.65,29,1010.0 -2015,6,18,15,30,366,85.44,28,1010.0 -2015,6,18,16,0,437,85.88,28,1010.0 -2015,6,18,16,30,365,91.02,27,1010.0 -2015,6,18,17,0,289,92.3,27,1010.0 -2015,6,18,17,30,255,97.88,26,1010.0 -2015,6,18,18,0,166,98.09,26,1010.0 -2015,6,18,18,30,82,98.10000000000001,26,1010.0 -2015,6,18,19,0,17,96.99000000000001,26,1010.0 -2015,6,18,19,30,0,100.0,25,1010.0 -2015,6,18,20,0,0,100.0,25,1010.0 -2015,6,18,20,30,0,100.0,25,1010.0 -2015,6,18,21,0,0,100.0,25,1010.0 -2015,6,18,21,30,0,100.0,25,1010.0 -2015,6,18,22,0,0,100.0,25,1010.0 -2015,6,18,22,30,0,100.0,25,1010.0 -2015,6,18,23,0,0,100.0,25,1010.0 -2015,6,18,23,30,0,100.0,25,1010.0 -2015,6,19,0,0,0,100.0,25,1010.0 -2015,6,19,0,30,0,100.0,24,1010.0 -2015,6,19,1,0,0,100.0,24,1010.0 -2015,6,19,1,30,0,100.0,24,1010.0 -2015,6,19,2,0,0,100.0,24,1010.0 -2015,6,19,2,30,0,100.0,24,1010.0 -2015,6,19,3,0,0,100.0,24,1010.0 -2015,6,19,3,30,0,100.0,24,1010.0 -2015,6,19,4,0,0,100.0,24,1010.0 -2015,6,19,4,30,0,100.0,24,1010.0 -2015,6,19,5,0,0,100.0,24,1010.0 -2015,6,19,5,30,0,100.0,24,1010.0 -2015,6,19,6,0,13,100.0,25,1010.0 -2015,6,19,6,30,29,100.0,25,1010.0 -2015,6,19,7,0,77,99.41,26,1010.0 -2015,6,19,7,30,206,99.41,26,1010.0 -2015,6,19,8,0,321,94.67,27,1010.0 -2015,6,19,8,30,460,94.67,27,1010.0 -2015,6,19,9,0,453,93.2,28,1010.0 -2015,6,19,9,30,482,93.2,28,1010.0 -2015,6,19,10,0,526,85.8,28,1010.0 -2015,6,19,10,30,565,85.79,28,1010.0 -2015,6,19,11,0,503,79.34,29,1010.0 -2015,6,19,11,30,443,79.33,29,1010.0 -2015,6,19,12,0,452,77.73,29,1010.0 -2015,6,19,12,30,838,77.7,29,1010.0 -2015,6,19,13,0,883,76.45,29,1010.0 -2015,6,19,13,30,822,76.43,29,1010.0 -2015,6,19,14,0,663,76.52,29,1010.0 -2015,6,19,14,30,673,76.51,29,1010.0 -2015,6,19,15,0,671,77.94,29,1010.0 -2015,6,19,15,30,333,77.93,29,1010.0 -2015,6,19,16,0,554,80.24,29,1010.0 -2015,6,19,16,30,396,85.01,28,1010.0 -2015,6,19,17,0,269,85.7,28,1010.0 -2015,6,19,17,30,150,90.84,27,1010.0 -2015,6,19,18,0,66,93.82000000000001,27,1010.0 -2015,6,19,18,30,35,99.49000000000001,26,1010.0 -2015,6,19,19,0,10,97.17,26,1010.0 -2015,6,19,19,30,0,100.0,25,1010.0 -2015,6,19,20,0,0,100.0,25,1010.0 -2015,6,19,20,30,0,100.0,25,1010.0 -2015,6,19,21,0,0,100.0,25,1010.0 -2015,6,19,21,30,0,100.0,25,1010.0 -2015,6,19,22,0,0,100.0,25,1010.0 -2015,6,19,22,30,0,100.0,25,1010.0 -2015,6,19,23,0,0,100.0,25,1010.0 -2015,6,19,23,30,0,100.0,25,1010.0 -2015,6,20,0,0,0,100.0,25,1010.0 -2015,6,20,0,30,0,100.0,24,1010.0 -2015,6,20,1,0,0,100.0,24,1010.0 -2015,6,20,1,30,0,100.0,24,1010.0 -2015,6,20,2,0,0,100.0,24,1010.0 -2015,6,20,2,30,0,100.0,24,1010.0 -2015,6,20,3,0,0,100.0,24,1010.0 -2015,6,20,3,30,0,100.0,24,1010.0 -2015,6,20,4,0,0,100.0,24,1010.0 -2015,6,20,4,30,0,100.0,24,1010.0 -2015,6,20,5,0,0,100.0,24,1010.0 -2015,6,20,5,30,0,100.0,24,1010.0 -2015,6,20,6,0,63,100.0,25,1010.0 -2015,6,20,6,30,122,100.0,25,1010.0 -2015,6,20,7,0,172,98.24000000000001,26,1010.0 -2015,6,20,7,30,228,98.26,26,1010.0 -2015,6,20,8,0,379,93.64,27,1010.0 -2015,6,20,8,30,461,93.65,27,1010.0 -2015,6,20,9,0,526,86.63,28,1010.0 -2015,6,20,9,30,573,86.63,28,1010.0 -2015,6,20,10,0,647,85.06,28,1010.0 -2015,6,20,10,30,711,85.06,28,1010.0 -2015,6,20,11,0,733,79.45,29,1010.0 -2015,6,20,11,30,700,79.43,29,1010.0 -2015,6,20,12,0,668,79.23,29,1010.0 -2015,6,20,12,30,671,79.21000000000001,29,1010.0 -2015,6,20,13,0,962,79.59,29,1010.0 -2015,6,20,13,30,935,79.57000000000001,29,1010.0 -2015,6,20,14,0,798,80.46000000000001,29,1010.0 -2015,6,20,14,30,672,80.44,29,1010.0 -2015,6,20,15,0,612,81.36,29,1010.0 -2015,6,20,15,30,680,86.19,28,1010.0 -2015,6,20,16,0,587,87.4,28,1010.0 -2015,6,20,16,30,491,92.63,27,1010.0 -2015,6,20,17,0,387,94.29,27,1010.0 -2015,6,20,17,30,285,100.0,26,1010.0 -2015,6,20,18,0,184,99.52,26,1010.0 -2015,6,20,18,30,95,99.52,26,1010.0 -2015,6,20,19,0,23,97.62,26,1010.0 -2015,6,20,19,30,0,97.64,26,1010.0 -2015,6,20,20,0,0,96.97,26,1010.0 -2015,6,20,20,30,0,100.0,25,1010.0 -2015,6,20,21,0,0,100.0,25,1010.0 -2015,6,20,21,30,0,100.0,25,1010.0 -2015,6,20,22,0,0,100.0,25,1010.0 -2015,6,20,22,30,0,100.0,25,1010.0 -2015,6,20,23,0,0,100.0,25,1010.0 -2015,6,20,23,30,0,100.0,25,1010.0 -2015,6,21,0,0,0,99.38,25,1010.0 -2015,6,21,0,30,0,100.0,25,1010.0 -2015,6,21,1,0,0,100.0,25,1010.0 -2015,6,21,1,30,0,100.0,24,1010.0 -2015,6,21,2,0,0,100.0,24,1010.0 -2015,6,21,2,30,0,100.0,24,1010.0 -2015,6,21,3,0,0,100.0,24,1010.0 -2015,6,21,3,30,0,100.0,24,1010.0 -2015,6,21,4,0,0,100.0,24,1010.0 -2015,6,21,4,30,0,100.0,24,1010.0 -2015,6,21,5,0,0,100.0,24,1010.0 -2015,6,21,5,30,0,100.0,24,1010.0 -2015,6,21,6,0,21,99.85000000000001,25,1010.0 -2015,6,21,6,30,64,99.87,25,1010.0 -2015,6,21,7,0,73,97.97,26,1010.0 -2015,6,21,7,30,82,97.99000000000001,26,1010.0 -2015,6,21,8,0,123,93.32000000000001,27,1010.0 -2015,6,21,8,30,232,93.33,27,1010.0 -2015,6,21,9,0,309,93.10000000000001,27,1010.0 -2015,6,21,9,30,509,93.10000000000001,27,1010.0 -2015,6,21,10,0,592,86.16,28,1010.0 -2015,6,21,10,30,652,86.15,28,1010.0 -2015,6,21,11,0,694,84.26,28,1010.0 -2015,6,21,11,30,722,84.24,28,1010.0 -2015,6,21,12,0,781,82.76,29,1010.0 -2015,6,21,12,30,784,82.74,29,1010.0 -2015,6,21,13,0,777,77.63,29,1010.0 -2015,6,21,13,30,834,82.23,28,1010.0 -2015,6,21,14,0,768,82.35000000000001,28,1010.0 -2015,6,21,14,30,758,82.32000000000001,28,1010.0 -2015,6,21,15,0,699,83.17,28,1010.0 -2015,6,21,15,30,597,83.16,28,1010.0 -2015,6,21,16,0,502,84.71000000000001,28,1010.0 -2015,6,21,16,30,462,89.79,27,1010.0 -2015,6,21,17,0,251,91.47,27,1010.0 -2015,6,21,17,30,215,97.01,26,1010.0 -2015,6,21,18,0,175,97.06,26,1010.0 -2015,6,21,18,30,87,97.08,26,1010.0 -2015,6,21,19,0,18,95.33,26,1010.0 -2015,6,21,19,30,0,100.0,26,1010.0 -2015,6,21,20,0,0,100.0,26,1010.0 -2015,6,21,20,30,0,100.0,25,1010.0 -2015,6,21,21,0,0,100.0,25,1010.0 -2015,6,21,21,30,0,100.0,25,1010.0 -2015,6,21,22,0,0,99.56,25,1010.0 -2015,6,21,22,30,0,99.55,25,1010.0 -2015,6,21,23,0,0,98.79,25,1010.0 -2015,6,21,23,30,0,98.77,25,1010.0 -2015,6,22,0,0,0,98.08,25,1010.0 -2015,6,22,0,30,0,100.0,24,1010.0 -2015,6,22,1,0,0,100.0,24,1010.0 -2015,6,22,1,30,0,100.0,24,1010.0 -2015,6,22,2,0,0,100.0,24,1010.0 -2015,6,22,2,30,0,100.0,24,1010.0 -2015,6,22,3,0,0,100.0,24,1010.0 -2015,6,22,3,30,0,100.0,24,1010.0 -2015,6,22,4,0,0,100.0,24,1010.0 -2015,6,22,4,30,0,100.0,24,1010.0 -2015,6,22,5,0,0,100.0,24,1010.0 -2015,6,22,5,30,0,100.0,24,1010.0 -2015,6,22,6,0,49,99.66,25,1010.0 -2015,6,22,6,30,125,99.68,25,1010.0 -2015,6,22,7,0,214,96.73,26,1010.0 -2015,6,22,7,30,249,96.74000000000001,26,1010.0 -2015,6,22,8,0,268,91.28,27,1010.0 -2015,6,22,8,30,306,91.28,27,1010.0 -2015,6,22,9,0,417,84.78,28,1010.0 -2015,6,22,9,30,507,84.78,28,1010.0 -2015,6,22,10,0,559,83.2,28,1010.0 -2015,6,22,10,30,531,83.19,28,1010.0 -2015,6,22,11,0,659,76.92,29,1010.0 -2015,6,22,11,30,662,76.91,29,1010.0 -2015,6,22,12,0,710,75.24,29,1010.0 -2015,6,22,12,30,694,75.22,29,1010.0 -2015,6,22,13,0,664,73.75,29,1010.0 -2015,6,22,13,30,828,73.73,29,1010.0 -2015,6,22,14,0,728,72.43,29,1010.0 -2015,6,22,14,30,607,72.41,29,1010.0 -2015,6,22,15,0,638,72.07000000000001,29,1010.0 -2015,6,22,15,30,537,72.06,29,1010.0 -2015,6,22,16,0,426,73.57000000000001,29,1010.0 -2015,6,22,16,30,294,77.94,28,1010.0 -2015,6,22,17,0,263,79.01,28,1010.0 -2015,6,22,17,30,212,83.75,27,1010.0 -2015,6,22,18,0,137,86.95,27,1010.0 -2015,6,22,18,30,70,92.21000000000001,26,1010.0 -2015,6,22,19,0,16,95.75,25,1010.0 -2015,6,22,19,30,0,95.76,25,1010.0 -2015,6,22,20,0,0,94.33,25,1010.0 -2015,6,22,20,30,0,100.0,25,1010.0 -2015,6,22,21,0,0,99.84,25,1010.0 -2015,6,22,21,30,0,99.85000000000001,24,1010.0 -2015,6,22,22,0,0,99.73,24,1010.0 -2015,6,22,22,30,0,99.73,24,1010.0 -2015,6,22,23,0,0,99.81,24,1010.0 -2015,6,22,23,30,0,99.81,24,1010.0 -2015,6,23,0,0,0,99.86,24,1010.0 -2015,6,23,0,30,0,99.86,24,1010.0 -2015,6,23,1,0,0,99.84,24,1010.0 -2015,6,23,1,30,0,99.84,24,1010.0 -2015,6,23,2,0,0,99.52,24,1010.0 -2015,6,23,2,30,0,99.53,24,1010.0 -2015,6,23,3,0,0,99.2,24,1010.0 -2015,6,23,3,30,0,99.22,24,1010.0 -2015,6,23,4,0,0,99.11,24,1010.0 -2015,6,23,4,30,0,99.13,24,1010.0 -2015,6,23,5,0,0,93.69,25,1010.0 -2015,6,23,5,30,0,93.71000000000001,25,1010.0 -2015,6,23,6,0,53,98.63,25,1010.0 -2015,6,23,6,30,132,98.65,25,1010.0 -2015,6,23,7,0,232,97.41,26,1010.0 -2015,6,23,7,30,320,97.42,26,1010.0 -2015,6,23,8,0,404,89.94,27,1010.0 -2015,6,23,8,30,537,84.85000000000001,28,1010.0 -2015,6,23,9,0,530,77.46000000000001,29,1010.0 -2015,6,23,9,30,601,77.45,29,1010.0 -2015,6,23,10,0,425,74.4,29,1010.0 -2015,6,23,10,30,785,74.38,29,1010.0 -2015,6,23,11,0,832,68.71000000000001,30,1010.0 -2015,6,23,11,30,802,68.69,30,1010.0 -2015,6,23,12,0,829,68.45,30,1010.0 -2015,6,23,12,30,868,68.43,30,1010.0 -2015,6,23,13,0,778,68.23,30,1010.0 -2015,6,23,13,30,721,68.21000000000001,30,1010.0 -2015,6,23,14,0,508,68.68,30,1010.0 -2015,6,23,14,30,432,68.67,30,1010.0 -2015,6,23,15,0,509,70.21000000000001,30,1010.0 -2015,6,23,15,30,511,74.35000000000001,29,1010.0 -2015,6,23,16,0,420,75.21000000000001,29,1010.0 -2015,6,23,16,30,240,75.2,29,1010.0 -2015,6,23,17,0,261,76.04,29,1010.0 -2015,6,23,17,30,286,80.57000000000001,28,1010.0 -2015,6,23,18,0,191,89.29,27,1010.0 -2015,6,23,18,30,103,94.7,26,1010.0 -2015,6,23,19,0,31,91.7,26,1010.0 -2015,6,23,19,30,0,97.3,25,1010.0 -2015,6,23,20,0,0,95.19,25,1010.0 -2015,6,23,20,30,0,95.2,25,1010.0 -2015,6,23,21,0,0,94.08,25,1010.0 -2015,6,23,21,30,0,99.86,24,1010.0 -2015,6,23,22,0,0,98.99000000000001,24,1010.0 -2015,6,23,22,30,0,98.99000000000001,24,1010.0 -2015,6,23,23,0,0,98.2,24,1010.0 -2015,6,23,23,30,0,98.19,24,1010.0 -2015,6,24,0,0,0,97.43,24,1010.0 -2015,6,24,0,30,0,97.41,24,1010.0 -2015,6,24,1,0,0,96.68,24,1010.0 -2015,6,24,1,30,0,96.67,24,1010.0 -2015,6,24,2,0,0,96.02,24,1010.0 -2015,6,24,2,30,0,96.01,24,1010.0 -2015,6,24,3,0,0,95.7,24,1010.0 -2015,6,24,3,30,0,95.7,24,1010.0 -2015,6,24,4,0,0,95.63,24,1010.0 -2015,6,24,4,30,0,95.65,24,1010.0 -2015,6,24,5,0,0,95.49,24,1010.0 -2015,6,24,5,30,0,95.52,24,1010.0 -2015,6,24,6,0,63,96.25,25,1010.0 -2015,6,24,6,30,149,96.26,25,1010.0 -2015,6,24,7,0,248,92.18,26,1010.0 -2015,6,24,7,30,352,86.93,27,1010.0 -2015,6,24,8,0,456,80.44,28,1010.0 -2015,6,24,8,30,557,80.44,28,1010.0 -2015,6,24,9,0,651,78.3,28,1010.0 -2015,6,24,9,30,737,78.3,28,1010.0 -2015,6,24,10,0,813,72.53,29,1010.0 -2015,6,24,10,30,877,72.52,29,1010.0 -2015,6,24,11,0,927,67.64,30,1010.0 -2015,6,24,11,30,962,67.62,30,1010.0 -2015,6,24,12,0,985,63.74,31,1010.0 -2015,6,24,12,30,990,63.72,31,1010.0 -2015,6,24,13,0,978,63.76,31,1010.0 -2015,6,24,13,30,952,63.75,31,1010.0 -2015,6,24,14,0,910,63.88,31,1010.0 -2015,6,24,14,30,854,63.86,31,1010.0 -2015,6,24,15,0,785,64.39,31,1010.0 -2015,6,24,15,30,705,68.14,31,1010.0 -2015,6,24,16,0,615,69.71000000000001,31,1010.0 -2015,6,24,16,30,517,69.7,30,1010.0 -2015,6,24,17,0,415,72.23,30,1010.0 -2015,6,24,17,30,310,76.49,29,1010.0 -2015,6,24,18,0,208,78.69,29,1010.0 -2015,6,24,18,30,113,88.37,27,1010.0 -2015,6,24,19,0,35,93.2,26,1010.0 -2015,6,24,19,30,0,93.2,26,1010.0 -2015,6,24,20,0,0,90.83,26,1010.0 -2015,6,24,20,30,0,96.38,25,1010.0 -2015,6,24,21,0,0,95.55,25,1010.0 -2015,6,24,21,30,0,95.55,25,1010.0 -2015,6,24,22,0,0,94.96000000000001,25,1010.0 -2015,6,24,22,30,0,94.96000000000001,25,1010.0 -2015,6,24,23,0,0,94.44,25,1010.0 -2015,6,24,23,30,0,100.0,24,1010.0 -2015,6,25,0,0,0,99.75,24,1010.0 -2015,6,25,0,30,0,99.73,24,1010.0 -2015,6,25,1,0,0,99.42,24,1010.0 -2015,6,25,1,30,0,99.41,24,1010.0 -2015,6,25,2,0,0,99.13,24,1010.0 -2015,6,25,2,30,0,100.0,23,1010.0 -2015,6,25,3,0,0,100.0,23,1010.0 -2015,6,25,3,30,0,100.0,23,1010.0 -2015,6,25,4,0,0,100.0,23,1010.0 -2015,6,25,4,30,0,100.0,23,1010.0 -2015,6,25,5,0,0,100.0,23,1010.0 -2015,6,25,5,30,0,98.44,24,1010.0 -2015,6,25,6,0,65,98.23,25,1010.0 -2015,6,25,6,30,154,98.25,25,1010.0 -2015,6,25,7,0,255,94.08,26,1010.0 -2015,6,25,7,30,360,88.72,27,1010.0 -2015,6,25,8,0,465,82.73,28,1010.0 -2015,6,25,8,30,566,82.73,28,1010.0 -2015,6,25,9,0,662,75.74,29,1010.0 -2015,6,25,9,30,747,75.74,29,1010.0 -2015,6,25,10,0,823,69.67,30,1010.0 -2015,6,25,10,30,886,69.65,30,1010.0 -2015,6,25,11,0,935,64.91,31,1010.0 -2015,6,25,11,30,970,64.89,31,1010.0 -2015,6,25,12,0,990,64.85,31,1010.0 -2015,6,25,12,30,994,64.82000000000001,31,1010.0 -2015,6,25,13,0,868,65.13,32,1010.0 -2015,6,25,13,30,777,65.11,31,1010.0 -2015,6,25,14,0,912,65.46000000000001,31,1010.0 -2015,6,25,14,30,856,65.44,31,1010.0 -2015,6,25,15,0,784,65.9,31,1010.0 -2015,6,25,15,30,704,69.74,30,1010.0 -2015,6,25,16,0,613,71.62,30,1010.0 -2015,6,25,16,30,516,71.62,30,1010.0 -2015,6,25,17,0,414,74.53,30,1010.0 -2015,6,25,17,30,294,78.93,29,1010.0 -2015,6,25,18,0,208,85.84,28,1010.0 -2015,6,25,18,30,113,90.99,27,1010.0 -2015,6,25,19,0,35,95.44,27,1010.0 -2015,6,25,19,30,0,95.45,26,1010.0 -2015,6,25,20,0,0,94.72,26,1010.0 -2015,6,25,20,30,0,94.73,26,1010.0 -2015,6,25,21,0,0,95.28,26,1010.0 -2015,6,25,21,30,0,100.0,25,1010.0 -2015,6,25,22,0,0,100.0,25,1010.0 -2015,6,25,22,30,0,100.0,25,1010.0 -2015,6,25,23,0,0,100.0,25,1010.0 -2015,6,25,23,30,0,100.0,25,1010.0 -2015,6,26,0,0,0,100.0,25,1010.0 -2015,6,26,0,30,0,100.0,25,1010.0 -2015,6,26,1,0,0,100.0,25,1010.0 -2015,6,26,1,30,0,100.0,25,1010.0 -2015,6,26,2,0,0,100.0,25,1010.0 -2015,6,26,2,30,0,100.0,24,1010.0 -2015,6,26,3,0,0,100.0,24,1010.0 -2015,6,26,3,30,0,100.0,24,1010.0 -2015,6,26,4,0,0,100.0,24,1010.0 -2015,6,26,4,30,0,100.0,24,1010.0 -2015,6,26,5,0,0,100.0,24,1010.0 -2015,6,26,5,30,0,99.28,25,1010.0 -2015,6,26,6,0,60,99.44,26,1010.0 -2015,6,26,6,30,145,99.45,26,1010.0 -2015,6,26,7,0,243,95.93,27,1010.0 -2015,6,26,7,30,345,95.94,27,1010.0 -2015,6,26,8,0,448,89.61,28,1010.0 -2015,6,26,8,30,548,89.61,28,1010.0 -2015,6,26,9,0,180,83.04,29,1010.0 -2015,6,26,9,30,555,83.03,29,1010.0 -2015,6,26,10,0,686,82.13,30,1010.0 -2015,6,26,10,30,768,82.11,30,1010.0 -2015,6,26,11,0,917,76.98,30,1010.0 -2015,6,26,11,30,845,76.95,30,1010.0 -2015,6,26,12,0,746,76.46000000000001,31,1010.0 -2015,6,26,12,30,980,76.44,31,1010.0 -2015,6,26,13,0,969,71.75,31,1010.0 -2015,6,26,13,30,842,71.72,31,1010.0 -2015,6,26,14,0,669,71.74,31,1010.0 -2015,6,26,14,30,647,75.92,30,1010.0 -2015,6,26,15,0,661,76.57000000000001,30,1010.0 -2015,6,26,15,30,605,76.55,30,1010.0 -2015,6,26,16,0,588,77.79,30,1010.0 -2015,6,26,16,30,508,82.38,29,1010.0 -2015,6,26,17,0,407,83.26,29,1010.0 -2015,6,26,17,30,304,88.21000000000001,28,1010.0 -2015,6,26,18,0,203,90.53,28,1010.0 -2015,6,26,18,30,109,95.97,27,1010.0 -2015,6,26,19,0,34,93.67,27,1010.0 -2015,6,26,19,30,0,99.35000000000001,26,1010.0 -2015,6,26,20,0,0,98.5,26,1010.0 -2015,6,26,20,30,0,98.53,26,1010.0 -2015,6,26,21,0,0,98.45,26,1010.0 -2015,6,26,21,30,0,98.46000000000001,26,1010.0 -2015,6,26,22,0,0,98.39,26,1010.0 -2015,6,26,22,30,0,98.39,26,1010.0 -2015,6,26,23,0,0,98.3,26,1010.0 -2015,6,26,23,30,0,100.0,25,1010.0 -2015,6,27,0,0,0,100.0,25,1010.0 -2015,6,27,0,30,0,100.0,25,1010.0 -2015,6,27,1,0,0,100.0,25,1010.0 -2015,6,27,1,30,0,100.0,25,1010.0 -2015,6,27,2,0,0,100.0,25,1010.0 -2015,6,27,2,30,0,100.0,25,1010.0 -2015,6,27,3,0,0,100.0,25,1010.0 -2015,6,27,3,30,0,100.0,25,1010.0 -2015,6,27,4,0,0,100.0,25,1010.0 -2015,6,27,4,30,0,100.0,25,1010.0 -2015,6,27,5,0,0,100.0,25,1010.0 -2015,6,27,5,30,0,100.0,25,1010.0 -2015,6,27,6,0,59,97.53,26,1010.0 -2015,6,27,6,30,110,97.57000000000001,26,1010.0 -2015,6,27,7,0,184,100.0,26,1010.0 -2015,6,27,7,30,320,100.0,26,1010.0 -2015,6,27,8,0,417,94.62,27,1010.0 -2015,6,27,8,30,465,94.61,27,1010.0 -2015,6,27,9,0,546,87.99,28,1010.0 -2015,6,27,9,30,614,87.98,28,1010.0 -2015,6,27,10,0,672,87.14,28,1010.0 -2015,6,27,10,30,761,87.13,28,1010.0 -2015,6,27,11,0,788,81.75,29,1010.0 -2015,6,27,11,30,785,81.73,29,1010.0 -2015,6,27,12,0,848,81.59,29,1010.0 -2015,6,27,12,30,838,81.57000000000001,29,1010.0 -2015,6,27,13,0,865,76.82000000000001,30,1010.0 -2015,6,27,13,30,943,76.8,30,1010.0 -2015,6,27,14,0,901,76.36,30,1010.0 -2015,6,27,14,30,846,76.34,30,1010.0 -2015,6,27,15,0,767,77.0,30,1010.0 -2015,6,27,15,30,688,81.53,29,1010.0 -2015,6,27,16,0,598,83.45,29,1010.0 -2015,6,27,16,30,502,83.44,29,1010.0 -2015,6,27,17,0,401,82.56,29,1010.0 -2015,6,27,17,30,299,87.49,28,1010.0 -2015,6,27,18,0,188,95.38,28,1010.0 -2015,6,27,18,30,100,100.0,27,1010.0 -2015,6,27,19,0,30,97.4,26,1010.0 -2015,6,27,19,30,0,97.41,26,1010.0 -2015,6,27,20,0,0,96.18,26,1010.0 -2015,6,27,20,30,0,96.2,26,1010.0 -2015,6,27,21,0,0,96.02,26,1010.0 -2015,6,27,21,30,0,100.0,25,1010.0 -2015,6,27,22,0,0,100.0,25,1010.0 -2015,6,27,22,30,0,100.0,25,1010.0 -2015,6,27,23,0,0,100.0,25,1010.0 -2015,6,27,23,30,0,100.0,25,1010.0 -2015,6,28,0,0,0,100.0,25,1010.0 -2015,6,28,0,30,0,100.0,25,1010.0 -2015,6,28,1,0,0,100.0,25,1010.0 -2015,6,28,1,30,0,100.0,25,1010.0 -2015,6,28,2,0,0,100.0,25,1010.0 -2015,6,28,2,30,0,100.0,24,1010.0 -2015,6,28,3,0,0,100.0,24,1010.0 -2015,6,28,3,30,0,100.0,24,1010.0 -2015,6,28,4,0,0,100.0,24,1010.0 -2015,6,28,4,30,0,100.0,24,1010.0 -2015,6,28,5,0,0,100.0,24,1010.0 -2015,6,28,5,30,0,100.0,24,1010.0 -2015,6,28,6,0,24,100.0,25,1010.0 -2015,6,28,6,30,32,100.0,25,1010.0 -2015,6,28,7,0,10,100.0,25,1010.0 -2015,6,28,7,30,35,100.0,25,1010.0 -2015,6,28,8,0,28,99.64,26,1010.0 -2015,6,28,8,30,117,99.64,26,1010.0 -2015,6,28,9,0,332,93.15,27,1010.0 -2015,6,28,9,30,509,93.14,27,1010.0 -2015,6,28,10,0,572,91.67,27,1010.0 -2015,6,28,10,30,713,91.66,27,1010.0 -2015,6,28,11,0,786,85.26,28,1010.0 -2015,6,28,11,30,829,85.23,28,1010.0 -2015,6,28,12,0,842,83.7,28,1010.0 -2015,6,28,12,30,836,83.68,28,1010.0 -2015,6,28,13,0,785,83.25,28,1010.0 -2015,6,28,13,30,493,83.23,28,1010.0 -2015,6,28,14,0,657,83.2,28,1010.0 -2015,6,28,14,30,618,83.18,28,1010.0 -2015,6,28,15,0,610,84.07000000000001,28,1010.0 -2015,6,28,15,30,620,84.05,28,1010.0 -2015,6,28,16,0,465,85.92,28,1010.0 -2015,6,28,16,30,313,91.07000000000001,28,1010.0 -2015,6,28,17,0,337,91.35000000000001,28,1010.0 -2015,6,28,17,30,224,96.87,27,1010.0 -2015,6,28,18,0,172,98.19,27,1010.0 -2015,6,28,18,30,92,100.0,26,1010.0 -2015,6,28,19,0,28,100.0,25,1010.0 -2015,6,28,19,30,0,100.0,25,1010.0 -2015,6,28,20,0,0,99.74000000000001,25,1010.0 -2015,6,28,20,30,0,99.76,25,1010.0 -2015,6,28,21,0,0,99.3,25,1010.0 -2015,6,28,21,30,0,99.31,25,1010.0 -2015,6,28,22,0,0,99.17,25,1010.0 -2015,6,28,22,30,0,100.0,24,1010.0 -2015,6,28,23,0,0,100.0,24,1010.0 -2015,6,28,23,30,0,100.0,24,1010.0 -2015,6,29,0,0,0,100.0,24,1010.0 -2015,6,29,0,30,0,100.0,24,1010.0 -2015,6,29,1,0,0,100.0,24,1010.0 -2015,6,29,1,30,0,100.0,24,1010.0 -2015,6,29,2,0,0,100.0,24,1010.0 -2015,6,29,2,30,0,100.0,24,1010.0 -2015,6,29,3,0,0,100.0,24,1010.0 -2015,6,29,3,30,0,100.0,24,1010.0 -2015,6,29,4,0,0,100.0,24,1010.0 -2015,6,29,4,30,0,100.0,24,1010.0 -2015,6,29,5,0,0,100.0,24,1010.0 -2015,6,29,5,30,0,100.0,24,1010.0 -2015,6,29,6,0,25,100.0,25,1010.0 -2015,6,29,6,30,70,100.0,25,1010.0 -2015,6,29,7,0,195,98.94,26,1010.0 -2015,6,29,7,30,318,98.95,26,1010.0 -2015,6,29,8,0,421,95.08,27,1010.0 -2015,6,29,8,30,436,95.08,27,1010.0 -2015,6,29,9,0,514,88.74,28,1010.0 -2015,6,29,9,30,593,88.73,28,1010.0 -2015,6,29,10,0,417,86.51,28,1010.0 -2015,6,29,10,30,451,86.5,28,1010.0 -2015,6,29,11,0,758,80.28,29,1010.0 -2015,6,29,11,30,234,80.26,29,1010.0 -2015,6,29,12,0,160,79.81,29,1010.0 -2015,6,29,12,30,164,79.79,29,1010.0 -2015,6,29,13,0,411,79.75,29,1010.0 -2015,6,29,13,30,763,79.74,29,1010.0 -2015,6,29,14,0,841,79.91,29,1010.0 -2015,6,29,14,30,765,79.9,29,1010.0 -2015,6,29,15,0,654,80.47,29,1010.0 -2015,6,29,15,30,315,80.46000000000001,29,1010.0 -2015,6,29,16,0,410,81.37,29,1010.0 -2015,6,29,16,30,406,86.21000000000001,28,1010.0 -2015,6,29,17,0,290,86.45,28,1010.0 -2015,6,29,17,30,264,91.65,27,1010.0 -2015,6,29,18,0,33,93.28,27,1010.0 -2015,6,29,18,30,98,98.92,26,1010.0 -2015,6,29,19,0,26,94.89,26,1010.0 -2015,6,29,19,30,0,100.0,25,1010.0 -2015,6,29,20,0,0,99.17,25,1010.0 -2015,6,29,20,30,0,99.2,25,1010.0 -2015,6,29,21,0,0,98.64,25,1010.0 -2015,6,29,21,30,0,98.65,25,1010.0 -2015,6,29,22,0,0,98.22,25,1010.0 -2015,6,29,22,30,0,98.22,25,1010.0 -2015,6,29,23,0,0,97.72,25,1010.0 -2015,6,29,23,30,0,100.0,24,1010.0 -2015,6,30,0,0,0,100.0,24,1010.0 -2015,6,30,0,30,0,100.0,24,1010.0 -2015,6,30,1,0,0,100.0,24,1010.0 -2015,6,30,1,30,0,100.0,24,1010.0 -2015,6,30,2,0,0,100.0,24,1010.0 -2015,6,30,2,30,0,100.0,24,1010.0 -2015,6,30,3,0,0,100.0,24,1010.0 -2015,6,30,3,30,0,100.0,24,1010.0 -2015,6,30,4,0,0,100.0,24,1010.0 -2015,6,30,4,30,0,100.0,24,1010.0 -2015,6,30,5,0,0,100.0,24,1010.0 -2015,6,30,5,30,0,100.0,24,1010.0 -2015,6,30,6,0,28,100.0,25,1010.0 -2015,6,30,6,30,108,100.0,25,1010.0 -2015,6,30,7,0,213,99.51,26,1010.0 -2015,6,30,7,30,284,99.51,26,1010.0 -2015,6,30,8,0,372,94.5,27,1010.0 -2015,6,30,8,30,267,94.49,27,1010.0 -2015,6,30,9,0,314,86.83,28,1010.0 -2015,6,30,9,30,517,86.83,28,1010.0 -2015,6,30,10,0,700,79.18,29,1010.0 -2015,6,30,10,30,757,79.18,29,1010.0 -2015,6,30,11,0,787,74.08,30,1010.0 -2015,6,30,11,30,818,74.07000000000001,30,1010.0 -2015,6,30,12,0,755,73.98,30,1010.0 -2015,6,30,12,30,388,73.96000000000001,30,1010.0 -2015,6,30,13,0,137,73.86,30,1010.0 -2015,6,30,13,30,180,73.85000000000001,30,1010.0 -2015,6,30,14,0,117,75.11,30,1010.0 -2015,6,30,14,30,162,79.53,29,1010.0 -2015,6,30,15,0,78,79.45,29,1010.0 -2015,6,30,15,30,46,84.18,28,1010.0 -2015,6,30,16,0,85,84.87,28,1010.0 -2015,6,30,16,30,64,89.96000000000001,27,1010.0 -2015,6,30,17,0,38,91.57000000000001,27,1010.0 -2015,6,30,17,30,124,97.10000000000001,26,1010.0 -2015,6,30,18,0,8,97.88,26,1010.0 -2015,6,30,18,30,4,100.0,25,1010.0 -2015,6,30,19,0,1,100.0,25,1010.0 -2015,6,30,19,30,0,100.0,25,1010.0 -2015,6,30,20,0,0,100.0,25,1010.0 -2015,6,30,20,30,0,100.0,24,1010.0 -2015,6,30,21,0,0,100.0,24,1010.0 -2015,6,30,21,30,0,100.0,24,1010.0 -2015,6,30,22,0,0,98.59,24,1010.0 -2015,6,30,22,30,0,100.0,23,1010.0 -2015,6,30,23,0,0,97.67,23,1010.0 -2015,6,30,23,30,0,100.0,22,1010.0 -2015,7,1,0,0,0,94.82000000000001,22,1010.0 -2015,7,1,0,30,0,100.0,21,1010.0 -2015,7,1,1,0,0,93.33,21,1010.0 -2015,7,1,1,30,0,93.3,21,1010.0 -2015,7,1,2,0,0,89.14,21,1010.0 -2015,7,1,2,30,0,89.08,21,1010.0 -2015,7,1,3,0,0,88.23,21,1010.0 -2015,7,1,3,30,0,88.24,21,1010.0 -2015,7,1,4,0,0,89.60000000000001,22,1010.0 -2015,7,1,4,30,0,89.64,22,1010.0 -2015,7,1,5,0,0,88.74,22,1010.0 -2015,7,1,5,30,0,88.77,22,1010.0 -2015,7,1,6,0,58,93.94,23,1010.0 -2015,7,1,6,30,144,88.49,24,1010.0 -2015,7,1,7,0,241,90.26,25,1010.0 -2015,7,1,7,30,345,85.09,26,1010.0 -2015,7,1,8,0,446,88.47,27,1010.0 -2015,7,1,8,30,546,83.46000000000001,28,1010.0 -2015,7,1,9,0,639,82.95,29,1010.0 -2015,7,1,9,30,216,82.95,29,1010.0 -2015,7,1,10,0,230,78.4,30,1010.0 -2015,7,1,10,30,237,78.39,30,1010.0 -2015,7,1,11,0,89,78.12,30,1010.0 -2015,7,1,11,30,81,78.10000000000001,30,1010.0 -2015,7,1,12,0,195,77.60000000000001,30,1010.0 -2015,7,1,12,30,154,77.58,30,1010.0 -2015,7,1,13,0,134,76.82000000000001,30,1010.0 -2015,7,1,13,30,175,76.81,30,1010.0 -2015,7,1,14,0,316,75.94,30,1010.0 -2015,7,1,14,30,480,80.41,30,1010.0 -2015,7,1,15,0,102,79.97,30,1010.0 -2015,7,1,15,30,62,79.97,29,1010.0 -2015,7,1,16,0,46,80.3,29,1010.0 -2015,7,1,16,30,69,85.07000000000001,28,1010.0 -2015,7,1,17,0,63,86.14,28,1010.0 -2015,7,1,17,30,23,91.31,27,1010.0 -2015,7,1,18,0,34,92.92,27,1010.0 -2015,7,1,18,30,17,98.53,26,1010.0 -2015,7,1,19,0,4,100.0,25,1010.0 -2015,7,1,19,30,0,100.0,24,1010.0 -2015,7,1,20,0,0,100.0,24,1010.0 -2015,7,1,20,30,0,100.0,24,1010.0 -2015,7,1,21,0,0,100.0,24,1010.0 -2015,7,1,21,30,0,100.0,24,1010.0 -2015,7,1,22,0,0,100.0,24,1010.0 -2015,7,1,22,30,0,100.0,24,1010.0 -2015,7,1,23,0,0,100.0,24,1010.0 -2015,7,1,23,30,0,100.0,24,1010.0 -2015,7,2,0,0,0,100.0,24,1010.0 -2015,7,2,0,30,0,100.0,23,1010.0 -2015,7,2,1,0,0,100.0,23,1010.0 -2015,7,2,1,30,0,100.0,23,1010.0 -2015,7,2,2,0,0,100.0,23,1010.0 -2015,7,2,2,30,0,100.0,23,1010.0 -2015,7,2,3,0,0,100.0,23,1010.0 -2015,7,2,3,30,0,100.0,23,1010.0 -2015,7,2,4,0,0,100.0,23,1010.0 -2015,7,2,4,30,0,100.0,23,1010.0 -2015,7,2,5,0,0,100.0,23,1010.0 -2015,7,2,5,30,0,98.28,24,1010.0 -2015,7,2,6,0,43,100.0,25,1010.0 -2015,7,2,6,30,123,100.0,25,1010.0 -2015,7,2,7,0,216,99.29,26,1010.0 -2015,7,2,7,30,282,99.29,26,1010.0 -2015,7,2,8,0,364,93.83,27,1010.0 -2015,7,2,8,30,469,88.52,28,1010.0 -2015,7,2,9,0,577,81.51,29,1010.0 -2015,7,2,9,30,631,81.5,29,1010.0 -2015,7,2,10,0,698,75.11,30,1010.0 -2015,7,2,10,30,717,75.10000000000001,30,1010.0 -2015,7,2,11,0,761,73.66,30,1010.0 -2015,7,2,11,30,866,73.64,30,1010.0 -2015,7,2,12,0,875,68.75,31,1010.0 -2015,7,2,12,30,824,68.73,31,1010.0 -2015,7,2,13,0,757,67.94,31,1010.0 -2015,7,2,13,30,792,67.93,31,1010.0 -2015,7,2,14,0,759,67.56,31,1010.0 -2015,7,2,14,30,769,71.51,30,1010.0 -2015,7,2,15,0,670,71.58,30,1010.0 -2015,7,2,15,30,575,71.58,30,1010.0 -2015,7,2,16,0,557,72.21000000000001,30,1010.0 -2015,7,2,16,30,438,76.47,29,1010.0 -2015,7,2,17,0,367,78.21000000000001,29,1010.0 -2015,7,2,17,30,269,82.86,28,1010.0 -2015,7,2,18,0,177,90.54,27,1010.0 -2015,7,2,18,30,90,96.03,26,1010.0 -2015,7,2,19,0,22,95.3,26,1010.0 -2015,7,2,19,30,0,100.0,25,1010.0 -2015,7,2,20,0,0,100.0,25,1010.0 -2015,7,2,20,30,0,100.0,25,1010.0 -2015,7,2,21,0,0,100.0,25,1010.0 -2015,7,2,21,30,0,100.0,25,1010.0 -2015,7,2,22,0,0,100.0,25,1010.0 -2015,7,2,22,30,0,100.0,25,1010.0 -2015,7,2,23,0,0,99.44,25,1010.0 -2015,7,2,23,30,0,100.0,24,1010.0 -2015,7,3,0,0,0,100.0,24,1010.0 -2015,7,3,0,30,0,100.0,24,1010.0 -2015,7,3,1,0,0,100.0,24,1010.0 -2015,7,3,1,30,0,100.0,24,1010.0 -2015,7,3,2,0,0,100.0,24,1010.0 -2015,7,3,2,30,0,100.0,24,1010.0 -2015,7,3,3,0,0,100.0,24,1010.0 -2015,7,3,3,30,0,100.0,24,1010.0 -2015,7,3,4,0,0,100.0,24,1010.0 -2015,7,3,4,30,0,100.0,24,1010.0 -2015,7,3,5,0,0,100.0,24,1010.0 -2015,7,3,5,30,0,100.0,24,1010.0 -2015,7,3,6,0,53,100.0,25,1010.0 -2015,7,3,6,30,136,96.78,26,1010.0 -2015,7,3,7,0,234,93.29,27,1010.0 -2015,7,3,7,30,338,93.3,27,1010.0 -2015,7,3,8,0,442,86.85000000000001,28,1010.0 -2015,7,3,8,30,543,86.85000000000001,28,1010.0 -2015,7,3,9,0,639,81.24,29,1010.0 -2015,7,3,9,30,726,81.24,29,1010.0 -2015,7,3,10,0,803,75.67,30,1010.0 -2015,7,3,10,30,867,75.66,30,1010.0 -2015,7,3,11,0,799,70.8,31,1010.0 -2015,7,3,11,30,830,70.78,31,1010.0 -2015,7,3,12,0,832,70.15,31,1010.0 -2015,7,3,12,30,794,70.13,31,1010.0 -2015,7,3,13,0,816,69.71000000000001,31,1010.0 -2015,7,3,13,30,832,69.7,31,1010.0 -2015,7,3,14,0,482,69.71000000000001,31,1010.0 -2015,7,3,14,30,599,73.79,31,1010.0 -2015,7,3,15,0,679,74.36,31,1010.0 -2015,7,3,15,30,671,74.34,30,1010.0 -2015,7,3,16,0,506,75.27,30,1010.0 -2015,7,3,16,30,429,79.71000000000001,29,1010.0 -2015,7,3,17,0,277,81.49,29,1010.0 -2015,7,3,17,30,216,86.34,28,1010.0 -2015,7,3,18,0,138,88.09,28,1010.0 -2015,7,3,18,30,73,93.39,27,1010.0 -2015,7,3,19,0,22,98.17,26,1010.0 -2015,7,3,19,30,0,98.19,26,1010.0 -2015,7,3,20,0,0,97.96000000000001,26,1010.0 -2015,7,3,20,30,0,97.99000000000001,26,1010.0 -2015,7,3,21,0,0,97.85000000000001,26,1010.0 -2015,7,3,21,30,0,100.0,26,1010.0 -2015,7,3,22,0,0,100.0,26,1010.0 -2015,7,3,22,30,0,100.0,25,1010.0 -2015,7,3,23,0,0,100.0,25,1010.0 -2015,7,3,23,30,0,100.0,25,1010.0 -2015,7,4,0,0,0,100.0,25,1010.0 -2015,7,4,0,30,0,100.0,25,1010.0 -2015,7,4,1,0,0,100.0,25,1010.0 -2015,7,4,1,30,0,100.0,25,1010.0 -2015,7,4,2,0,0,100.0,25,1010.0 -2015,7,4,2,30,0,100.0,24,1010.0 -2015,7,4,3,0,0,100.0,24,1010.0 -2015,7,4,3,30,0,100.0,24,1010.0 -2015,7,4,4,0,0,100.0,24,1010.0 -2015,7,4,4,30,0,100.0,24,1010.0 -2015,7,4,5,0,0,100.0,24,1010.0 -2015,7,4,5,30,0,100.0,24,1010.0 -2015,7,4,6,0,46,100.0,25,1010.0 -2015,7,4,6,30,138,100.0,26,1010.0 -2015,7,4,7,0,236,100.0,27,1010.0 -2015,7,4,7,30,339,100.0,27,1010.0 -2015,7,4,8,0,442,95.23,28,1010.0 -2015,7,4,8,30,425,95.23,28,1010.0 -2015,7,4,9,0,498,88.76,28,1010.0 -2015,7,4,9,30,625,88.76,28,1010.0 -2015,7,4,10,0,695,82.83,29,1010.0 -2015,7,4,10,30,755,82.82000000000001,29,1010.0 -2015,7,4,11,0,753,82.15,29,1010.0 -2015,7,4,11,30,810,82.13,29,1010.0 -2015,7,4,12,0,832,77.23,30,1010.0 -2015,7,4,12,30,837,77.22,30,1010.0 -2015,7,4,13,0,639,77.10000000000001,30,1010.0 -2015,7,4,13,30,622,77.09,30,1010.0 -2015,7,4,14,0,807,77.36,30,1010.0 -2015,7,4,14,30,620,81.91,29,1010.0 -2015,7,4,15,0,214,82.54,29,1010.0 -2015,7,4,15,30,334,82.53,29,1010.0 -2015,7,4,16,0,272,84.33,29,1010.0 -2015,7,4,16,30,375,89.34,28,1010.0 -2015,7,4,17,0,351,91.41,28,1010.0 -2015,7,4,17,30,260,96.9,27,1010.0 -2015,7,4,18,0,186,97.07000000000001,27,1010.0 -2015,7,4,18,30,102,100.0,26,1010.0 -2015,7,4,19,0,29,100.0,26,1010.0 -2015,7,4,19,30,0,100.0,26,1010.0 -2015,7,4,20,0,0,99.72,26,1010.0 -2015,7,4,20,30,0,99.74000000000001,26,1010.0 -2015,7,4,21,0,0,98.84,26,1010.0 -2015,7,4,21,30,0,100.0,25,1010.0 -2015,7,4,22,0,0,100.0,25,1010.0 -2015,7,4,22,30,0,100.0,25,1010.0 -2015,7,4,23,0,0,100.0,25,1010.0 -2015,7,4,23,30,0,100.0,25,1010.0 -2015,7,5,0,0,0,100.0,25,1010.0 -2015,7,5,0,30,0,100.0,25,1010.0 -2015,7,5,1,0,0,100.0,25,1010.0 -2015,7,5,1,30,0,100.0,24,1010.0 -2015,7,5,2,0,0,100.0,24,1010.0 -2015,7,5,2,30,0,100.0,24,1010.0 -2015,7,5,3,0,0,100.0,24,1010.0 -2015,7,5,3,30,0,100.0,24,1010.0 -2015,7,5,4,0,0,100.0,24,1010.0 -2015,7,5,4,30,0,100.0,24,1010.0 -2015,7,5,5,0,0,100.0,24,1010.0 -2015,7,5,5,30,0,100.0,24,1010.0 -2015,7,5,6,0,32,100.0,25,1010.0 -2015,7,5,6,30,99,97.4,26,1010.0 -2015,7,5,7,0,209,94.96000000000001,27,1010.0 -2015,7,5,7,30,307,94.98,27,1010.0 -2015,7,5,8,0,410,89.38,28,1010.0 -2015,7,5,8,30,509,89.39,28,1010.0 -2015,7,5,9,0,605,81.67,29,1010.0 -2015,7,5,9,30,691,81.67,29,1010.0 -2015,7,5,10,0,767,80.48,30,1010.0 -2015,7,5,10,30,831,80.47,30,1010.0 -2015,7,5,11,0,882,75.78,30,1010.0 -2015,7,5,11,30,918,75.75,30,1010.0 -2015,7,5,12,0,934,75.73,30,1010.0 -2015,7,5,12,30,940,75.7,30,1010.0 -2015,7,5,13,0,927,75.78,30,1010.0 -2015,7,5,13,30,902,75.75,30,1010.0 -2015,7,5,14,0,858,75.97,30,1010.0 -2015,7,5,14,30,804,75.94,30,1010.0 -2015,7,5,15,0,748,76.48,30,1010.0 -2015,7,5,15,30,670,80.99,29,1010.0 -2015,7,5,16,0,581,81.99,29,1010.0 -2015,7,5,16,30,487,81.99,29,1010.0 -2015,7,5,17,0,387,83.35000000000001,29,1010.0 -2015,7,5,17,30,286,88.32000000000001,28,1010.0 -2015,7,5,18,0,188,93.62,28,1010.0 -2015,7,5,18,30,98,99.29,27,1010.0 -2015,7,5,19,0,25,97.91,26,1010.0 -2015,7,5,19,30,0,97.93,26,1010.0 -2015,7,5,20,0,0,97.38,26,1010.0 -2015,7,5,20,30,0,97.4,26,1010.0 -2015,7,5,21,0,0,97.18,26,1010.0 -2015,7,5,21,30,0,100.0,26,1010.0 -2015,7,5,22,0,0,100.0,26,1010.0 -2015,7,5,22,30,0,100.0,25,1010.0 -2015,7,5,23,0,0,100.0,25,1010.0 -2015,7,5,23,30,0,100.0,25,1010.0 -2015,7,6,0,0,0,100.0,26,1010.0 -2015,7,6,0,30,0,100.0,25,1010.0 -2015,7,6,1,0,0,100.0,25,1010.0 -2015,7,6,1,30,0,100.0,25,1010.0 -2015,7,6,2,0,0,100.0,25,1010.0 -2015,7,6,2,30,0,100.0,25,1010.0 -2015,7,6,3,0,0,100.0,25,1010.0 -2015,7,6,3,30,0,100.0,25,1010.0 -2015,7,6,4,0,0,100.0,25,1010.0 -2015,7,6,4,30,0,100.0,25,1010.0 -2015,7,6,5,0,0,100.0,25,1010.0 -2015,7,6,5,30,0,100.0,25,1010.0 -2015,7,6,6,0,37,97.93,26,1010.0 -2015,7,6,6,30,110,97.95,26,1010.0 -2015,7,6,7,0,157,94.28,27,1010.0 -2015,7,6,7,30,253,94.3,27,1010.0 -2015,7,6,8,0,353,89.23,28,1010.0 -2015,7,6,8,30,438,89.23,28,1010.0 -2015,7,6,9,0,599,82.01,29,1010.0 -2015,7,6,9,30,685,82.01,29,1010.0 -2015,7,6,10,0,634,80.03,29,1010.0 -2015,7,6,10,30,826,80.02,29,1010.0 -2015,7,6,11,0,761,78.96000000000001,29,1010.0 -2015,7,6,11,30,812,78.94,29,1010.0 -2015,7,6,12,0,821,73.76,30,1010.0 -2015,7,6,12,30,838,73.73,30,1010.0 -2015,7,6,13,0,804,73.5,30,1010.0 -2015,7,6,13,30,858,73.48,30,1010.0 -2015,7,6,14,0,763,73.58,30,1010.0 -2015,7,6,14,30,714,73.56,30,1010.0 -2015,7,6,15,0,731,73.86,30,1010.0 -2015,7,6,15,30,653,78.2,29,1010.0 -2015,7,6,16,0,581,79.23,29,1010.0 -2015,7,6,16,30,485,83.94,28,1010.0 -2015,7,6,17,0,333,85.99,28,1010.0 -2015,7,6,17,30,246,91.15,27,1010.0 -2015,7,6,18,0,162,92.88,27,1010.0 -2015,7,6,18,30,84,98.5,26,1010.0 -2015,7,6,19,0,22,98.13,26,1010.0 -2015,7,6,19,30,0,98.14,26,1010.0 -2015,7,6,20,0,0,98.23,26,1010.0 -2015,7,6,20,30,0,98.25,26,1010.0 -2015,7,6,21,0,0,98.43,26,1010.0 -2015,7,6,21,30,0,98.44,26,1010.0 -2015,7,6,22,0,0,98.35000000000001,26,1010.0 -2015,7,6,22,30,0,98.33,26,1010.0 -2015,7,6,23,0,0,98.01,26,1010.0 -2015,7,6,23,30,0,100.0,25,1010.0 -2015,7,7,0,0,0,100.0,25,1010.0 -2015,7,7,0,30,0,100.0,25,1010.0 -2015,7,7,1,0,0,100.0,25,1010.0 -2015,7,7,1,30,0,100.0,25,1010.0 -2015,7,7,2,0,0,100.0,25,1010.0 -2015,7,7,2,30,0,100.0,25,1010.0 -2015,7,7,3,0,0,100.0,25,1010.0 -2015,7,7,3,30,0,100.0,25,1010.0 -2015,7,7,4,0,0,99.81,25,1010.0 -2015,7,7,4,30,0,99.81,25,1010.0 -2015,7,7,5,0,0,99.5,25,1010.0 -2015,7,7,5,30,0,99.5,25,1010.0 -2015,7,7,6,0,28,96.0,26,1010.0 -2015,7,7,6,30,83,96.01,26,1010.0 -2015,7,7,7,0,214,93.04,27,1010.0 -2015,7,7,7,30,237,93.05,27,1010.0 -2015,7,7,8,0,322,88.39,28,1010.0 -2015,7,7,8,30,454,88.39,28,1010.0 -2015,7,7,9,0,459,81.77,29,1010.0 -2015,7,7,9,30,570,81.77,29,1010.0 -2015,7,7,10,0,508,80.59,30,1010.0 -2015,7,7,10,30,399,80.58,30,1010.0 -2015,7,7,11,0,424,75.25,30,1010.0 -2015,7,7,11,30,442,75.24,30,1010.0 -2015,7,7,12,0,812,74.94,30,1010.0 -2015,7,7,12,30,816,74.93,30,1010.0 -2015,7,7,13,0,810,75.02,31,1010.0 -2015,7,7,13,30,915,75.01,31,1010.0 -2015,7,7,14,0,876,75.22,31,1010.0 -2015,7,7,14,30,821,75.21000000000001,30,1010.0 -2015,7,7,15,0,757,75.41,30,1010.0 -2015,7,7,15,30,659,75.4,30,1010.0 -2015,7,7,16,0,574,75.79,30,1010.0 -2015,7,7,16,30,422,80.27,29,1010.0 -2015,7,7,17,0,337,81.48,29,1010.0 -2015,7,7,17,30,255,86.33,28,1010.0 -2015,7,7,18,0,169,87.75,28,1010.0 -2015,7,7,18,30,89,93.02,27,1010.0 -2015,7,7,19,0,25,98.19,27,1010.0 -2015,7,7,19,30,0,98.2,26,1010.0 -2015,7,7,20,0,0,98.17,26,1010.0 -2015,7,7,20,30,0,98.18,26,1010.0 -2015,7,7,21,0,0,98.34,26,1010.0 -2015,7,7,21,30,0,98.35000000000001,26,1010.0 -2015,7,7,22,0,0,98.49000000000001,26,1010.0 -2015,7,7,22,30,0,98.48,26,1010.0 -2015,7,7,23,0,0,98.76,26,1010.0 -2015,7,7,23,30,0,98.75,26,1010.0 -2015,7,8,0,0,0,99.05,26,1010.0 -2015,7,8,0,30,0,99.04,26,1010.0 -2015,7,8,1,0,0,99.10000000000001,26,1010.0 -2015,7,8,1,30,0,100.0,26,1010.0 -2015,7,8,2,0,0,100.0,26,1010.0 -2015,7,8,2,30,0,100.0,25,1010.0 -2015,7,8,3,0,0,100.0,25,1010.0 -2015,7,8,3,30,0,100.0,25,1010.0 -2015,7,8,4,0,0,100.0,25,1010.0 -2015,7,8,4,30,0,100.0,24,1010.0 -2015,7,8,5,0,0,100.0,24,1010.0 -2015,7,8,5,30,0,99.69,25,1010.0 -2015,7,8,6,0,35,95.7,26,1010.0 -2015,7,8,6,30,102,95.72,26,1010.0 -2015,7,8,7,0,219,90.51,27,1010.0 -2015,7,8,7,30,301,90.53,27,1010.0 -2015,7,8,8,0,401,81.82000000000001,28,1010.0 -2015,7,8,8,30,464,81.83,28,1010.0 -2015,7,8,9,0,549,74.73,29,1010.0 -2015,7,8,9,30,714,74.73,29,1010.0 -2015,7,8,10,0,792,69.52,30,1010.0 -2015,7,8,10,30,857,69.52,30,1010.0 -2015,7,8,11,0,738,69.2,31,1010.0 -2015,7,8,11,30,768,69.18,31,1010.0 -2015,7,8,12,0,948,65.15,31,1010.0 -2015,7,8,12,30,954,65.13,31,1010.0 -2015,7,8,13,0,943,65.26,31,1010.0 -2015,7,8,13,30,916,65.25,31,1010.0 -2015,7,8,14,0,876,65.45,31,1010.0 -2015,7,8,14,30,821,69.27,31,1010.0 -2015,7,8,15,0,755,69.63,31,1010.0 -2015,7,8,15,30,675,69.62,30,1010.0 -2015,7,8,16,0,589,70.42,30,1010.0 -2015,7,8,16,30,444,74.57000000000001,29,1010.0 -2015,7,8,17,0,355,76.66,29,1010.0 -2015,7,8,17,30,291,81.23,28,1010.0 -2015,7,8,18,0,193,88.92,28,1010.0 -2015,7,8,18,30,101,94.32000000000001,27,1010.0 -2015,7,8,19,0,27,93.08,26,1010.0 -2015,7,8,19,30,0,98.77,26,1010.0 -2015,7,8,20,0,0,98.28,26,1010.0 -2015,7,8,20,30,0,98.31,25,1010.0 -2015,7,8,21,0,0,98.02,25,1010.0 -2015,7,8,21,30,0,98.02,25,1010.0 -2015,7,8,22,0,0,97.47,25,1010.0 -2015,7,8,22,30,0,97.46000000000001,25,1010.0 -2015,7,8,23,0,0,96.62,25,1010.0 -2015,7,8,23,30,0,100.0,24,1010.0 -2015,7,9,0,0,0,100.0,24,1010.0 -2015,7,9,0,30,0,100.0,24,1010.0 -2015,7,9,1,0,0,100.0,24,1010.0 -2015,7,9,1,30,0,100.0,24,1010.0 -2015,7,9,2,0,0,100.0,24,1010.0 -2015,7,9,2,30,0,100.0,23,1010.0 -2015,7,9,3,0,0,100.0,23,1010.0 -2015,7,9,3,30,0,100.0,23,1010.0 -2015,7,9,4,0,0,100.0,23,1010.0 -2015,7,9,4,30,0,100.0,23,1010.0 -2015,7,9,5,0,0,100.0,23,1010.0 -2015,7,9,5,30,0,96.5,24,1010.0 -2015,7,9,6,0,47,97.93,25,1010.0 -2015,7,9,6,30,130,92.33,26,1010.0 -2015,7,9,7,0,227,87.26,27,1010.0 -2015,7,9,7,30,331,87.27,27,1010.0 -2015,7,9,8,0,436,81.7,28,1010.0 -2015,7,9,8,30,537,81.7,28,1010.0 -2015,7,9,9,0,633,77.12,29,1010.0 -2015,7,9,9,30,721,77.12,29,1010.0 -2015,7,9,10,0,798,73.59,30,1010.0 -2015,7,9,10,30,863,73.58,30,1010.0 -2015,7,9,11,0,913,70.16,31,1010.0 -2015,7,9,11,30,950,70.14,31,1010.0 -2015,7,9,12,0,967,70.48,32,1010.0 -2015,7,9,12,30,973,70.46000000000001,32,1010.0 -2015,7,9,13,0,962,66.5,32,1010.0 -2015,7,9,13,30,936,70.35000000000001,32,1010.0 -2015,7,9,14,0,894,69.98,32,1010.0 -2015,7,9,14,30,839,69.96000000000001,31,1010.0 -2015,7,9,15,0,773,69.60000000000001,31,1010.0 -2015,7,9,15,30,694,73.67,30,1010.0 -2015,7,9,16,0,605,73.73,30,1010.0 -2015,7,9,16,30,508,78.08,29,1010.0 -2015,7,9,17,0,406,79.51,29,1010.0 -2015,7,9,17,30,302,84.26,28,1010.0 -2015,7,9,18,0,201,86.19,28,1010.0 -2015,7,9,18,30,107,91.37,27,1010.0 -2015,7,9,19,0,31,94.72,26,1010.0 -2015,7,9,19,30,0,94.73,26,1010.0 -2015,7,9,20,0,0,93.16,26,1010.0 -2015,7,9,20,30,0,98.85000000000001,25,1010.0 -2015,7,9,21,0,0,97.75,25,1010.0 -2015,7,9,21,30,0,97.76,25,1010.0 -2015,7,9,22,0,0,96.67,25,1010.0 -2015,7,9,22,30,0,100.0,24,1010.0 -2015,7,9,23,0,0,100.0,24,1010.0 -2015,7,9,23,30,0,100.0,24,1010.0 -2015,7,10,0,0,0,100.0,24,1010.0 -2015,7,10,0,30,0,100.0,24,1010.0 -2015,7,10,1,0,0,98.96000000000001,24,1010.0 -2015,7,10,1,30,0,100.0,24,1010.0 -2015,7,10,2,0,0,100.0,24,1010.0 -2015,7,10,2,30,0,100.0,24,1010.0 -2015,7,10,3,0,0,96.4,24,1010.0 -2015,7,10,3,30,0,96.41,24,1010.0 -2015,7,10,4,0,0,95.71000000000001,24,1010.0 -2015,7,10,4,30,0,95.73,24,1010.0 -2015,7,10,5,0,0,95.55,24,1010.0 -2015,7,10,5,30,0,90.05,25,1010.0 -2015,7,10,6,0,44,91.39,26,1010.0 -2015,7,10,6,30,125,91.4,27,1010.0 -2015,7,10,7,0,223,85.01,28,1010.0 -2015,7,10,7,30,326,80.21000000000001,28,1010.0 -2015,7,10,8,0,430,73.60000000000001,29,1010.0 -2015,7,10,8,30,532,73.60000000000001,29,1010.0 -2015,7,10,9,0,628,73.73,30,1010.0 -2015,7,10,9,30,715,73.72,30,1010.0 -2015,7,10,10,0,793,69.67,31,1010.0 -2015,7,10,10,30,857,69.66,31,1010.0 -2015,7,10,11,0,909,65.72,31,1010.0 -2015,7,10,11,30,945,65.7,31,1010.0 -2015,7,10,12,0,970,62.2,32,1010.0 -2015,7,10,12,30,975,62.18,32,1010.0 -2015,7,10,13,0,964,62.440000000000005,32,1010.0 -2015,7,10,13,30,938,62.42,32,1010.0 -2015,7,10,14,0,896,62.800000000000004,32,1010.0 -2015,7,10,14,30,841,66.44,31,1010.0 -2015,7,10,15,0,772,67.07000000000001,31,1010.0 -2015,7,10,15,30,692,67.06,31,1010.0 -2015,7,10,16,0,603,67.88,31,1010.0 -2015,7,10,16,30,506,71.86,30,1010.0 -2015,7,10,17,0,405,74.23,30,1010.0 -2015,7,10,17,30,301,78.62,29,1010.0 -2015,7,10,18,0,200,86.58,28,1010.0 -2015,7,10,18,30,107,91.78,27,1010.0 -2015,7,10,19,0,31,90.52,27,1010.0 -2015,7,10,19,30,0,96.01,26,1010.0 -2015,7,10,20,0,0,95.05,26,1010.0 -2015,7,10,20,30,0,95.07000000000001,26,1010.0 -2015,7,10,21,0,0,94.66,26,1010.0 -2015,7,10,21,30,0,100.0,25,1010.0 -2015,7,10,22,0,0,99.61,25,1010.0 -2015,7,10,22,30,0,99.61,25,1010.0 -2015,7,10,23,0,0,98.53,25,1010.0 -2015,7,10,23,30,0,100.0,25,1010.0 -2015,7,11,0,0,0,100.0,25,1010.0 -2015,7,11,0,30,0,100.0,24,1010.0 -2015,7,11,1,0,0,100.0,24,1010.0 -2015,7,11,1,30,0,100.0,24,1010.0 -2015,7,11,2,0,0,100.0,24,1010.0 -2015,7,11,2,30,0,100.0,24,1010.0 -2015,7,11,3,0,0,99.61,24,1010.0 -2015,7,11,3,30,0,99.62,24,1010.0 -2015,7,11,4,0,0,98.8,25,1010.0 -2015,7,11,4,30,0,98.82000000000001,25,1010.0 -2015,7,11,5,0,0,93.25,25,1010.0 -2015,7,11,5,30,0,93.26,25,1010.0 -2015,7,11,6,0,44,93.8,26,1010.0 -2015,7,11,6,30,124,88.46000000000001,27,1010.0 -2015,7,11,7,0,222,83.91,28,1010.0 -2015,7,11,7,30,325,83.91,28,1010.0 -2015,7,11,8,0,431,75.81,29,1010.0 -2015,7,11,8,30,532,75.81,29,1010.0 -2015,7,11,9,0,628,75.28,30,1010.0 -2015,7,11,9,30,716,75.28,30,1010.0 -2015,7,11,10,0,793,71.97,30,1010.0 -2015,7,11,10,30,858,71.96000000000001,30,1010.0 -2015,7,11,11,0,911,68.67,31,1010.0 -2015,7,11,11,30,700,68.66,31,1010.0 -2015,7,11,12,0,969,65.19,32,1010.0 -2015,7,11,12,30,975,65.17,32,1010.0 -2015,7,11,13,0,966,65.05,32,1010.0 -2015,7,11,13,30,940,65.03,32,1010.0 -2015,7,11,14,0,900,64.8,32,1010.0 -2015,7,11,14,30,845,68.56,31,1010.0 -2015,7,11,15,0,778,68.9,31,1010.0 -2015,7,11,15,30,699,68.9,31,1010.0 -2015,7,11,16,0,610,69.93,31,1010.0 -2015,7,11,16,30,514,74.03,30,1010.0 -2015,7,11,17,0,414,76.24,30,1010.0 -2015,7,11,17,30,309,80.75,29,1010.0 -2015,7,11,18,0,208,88.51,29,1010.0 -2015,7,11,18,30,112,93.83,28,1010.0 -2015,7,11,19,0,34,92.60000000000001,27,1010.0 -2015,7,11,19,30,0,98.21000000000001,26,1010.0 -2015,7,11,20,0,0,96.99000000000001,26,1010.0 -2015,7,11,20,30,0,97.01,26,1010.0 -2015,7,11,21,0,0,96.43,26,1010.0 -2015,7,11,21,30,0,100.0,26,1010.0 -2015,7,11,22,0,0,100.0,26,1010.0 -2015,7,11,22,30,0,100.0,25,1010.0 -2015,7,11,23,0,0,100.0,25,1010.0 -2015,7,11,23,30,0,100.0,25,1010.0 -2015,7,12,0,0,0,99.49000000000001,25,1010.0 -2015,7,12,0,30,0,100.0,24,1010.0 -2015,7,12,1,0,0,100.0,24,1010.0 -2015,7,12,1,30,0,100.0,24,1010.0 -2015,7,12,2,0,0,100.0,24,1010.0 -2015,7,12,2,30,0,100.0,24,1010.0 -2015,7,12,3,0,0,100.0,24,1010.0 -2015,7,12,3,30,0,100.0,24,1010.0 -2015,7,12,4,0,0,100.0,24,1010.0 -2015,7,12,4,30,0,100.0,24,1010.0 -2015,7,12,5,0,0,100.0,24,1010.0 -2015,7,12,5,30,0,100.0,24,1010.0 -2015,7,12,6,0,48,99.63,25,1010.0 -2015,7,12,6,30,132,93.92,26,1010.0 -2015,7,12,7,0,231,89.5,27,1010.0 -2015,7,12,7,30,336,89.5,27,1010.0 -2015,7,12,8,0,442,84.15,28,1010.0 -2015,7,12,8,30,545,84.14,29,1010.0 -2015,7,12,9,0,643,78.96000000000001,30,1010.0 -2015,7,12,9,30,732,74.54,30,1010.0 -2015,7,12,10,0,812,69.77,31,1010.0 -2015,7,12,10,30,878,69.75,31,1010.0 -2015,7,12,11,0,931,68.81,32,1010.0 -2015,7,12,11,30,968,68.79,32,1010.0 -2015,7,12,12,0,988,64.46000000000001,32,1010.0 -2015,7,12,12,30,994,64.44,32,1010.0 -2015,7,12,13,0,983,64.11,32,1010.0 -2015,7,12,13,30,957,64.09,32,1010.0 -2015,7,12,14,0,915,63.77,32,1010.0 -2015,7,12,14,30,859,63.75,32,1010.0 -2015,7,12,15,0,787,63.550000000000004,32,1010.0 -2015,7,12,15,30,707,67.23,31,1010.0 -2015,7,12,16,0,616,68.0,31,1010.0 -2015,7,12,16,30,519,68.0,31,1010.0 -2015,7,12,17,0,417,70.31,31,1010.0 -2015,7,12,17,30,311,74.44,30,1010.0 -2015,7,12,18,0,208,81.31,29,1010.0 -2015,7,12,18,30,112,86.15,28,1010.0 -2015,7,12,19,0,34,89.9,27,1010.0 -2015,7,12,19,30,0,95.34,26,1010.0 -2015,7,12,20,0,0,92.83,26,1010.0 -2015,7,12,20,30,0,92.84,26,1010.0 -2015,7,12,21,0,0,92.37,26,1010.0 -2015,7,12,21,30,0,98.0,26,1010.0 -2015,7,12,22,0,0,98.45,26,1010.0 -2015,7,12,22,30,0,98.43,25,1010.0 -2015,7,12,23,0,0,98.81,25,1010.0 -2015,7,12,23,30,0,98.79,25,1010.0 -2015,7,13,0,0,0,98.74000000000001,25,1010.0 -2015,7,13,0,30,0,100.0,24,1010.0 -2015,7,13,1,0,0,100.0,24,1010.0 -2015,7,13,1,30,0,100.0,24,1010.0 -2015,7,13,2,0,0,100.0,24,1010.0 -2015,7,13,2,30,0,100.0,23,1010.0 -2015,7,13,3,0,0,100.0,23,1010.0 -2015,7,13,3,30,0,100.0,23,1010.0 -2015,7,13,4,0,0,100.0,23,1010.0 -2015,7,13,4,30,0,100.0,23,1010.0 -2015,7,13,5,0,0,100.0,23,1010.0 -2015,7,13,5,30,0,100.0,24,1010.0 -2015,7,13,6,0,47,99.61,25,1010.0 -2015,7,13,6,30,131,93.9,26,1010.0 -2015,7,13,7,0,231,89.66,27,1010.0 -2015,7,13,7,30,337,89.65,27,1010.0 -2015,7,13,8,0,444,83.33,28,1010.0 -2015,7,13,8,30,548,83.32000000000001,28,1010.0 -2015,7,13,9,0,643,77.93,29,1010.0 -2015,7,13,9,30,732,77.92,29,1010.0 -2015,7,13,10,0,812,72.46000000000001,30,1010.0 -2015,7,13,10,30,878,72.44,30,1010.0 -2015,7,13,11,0,930,67.27,31,1010.0 -2015,7,13,11,30,968,67.24,31,1010.0 -2015,7,13,12,0,993,62.9,32,1010.0 -2015,7,13,12,30,999,62.88,32,1010.0 -2015,7,13,13,0,988,62.6,32,1010.0 -2015,7,13,13,30,962,62.58,32,1010.0 -2015,7,13,14,0,921,62.440000000000005,32,1010.0 -2015,7,13,14,30,865,62.42,32,1010.0 -2015,7,13,15,0,793,62.39,32,1010.0 -2015,7,13,15,30,713,62.38,32,1010.0 -2015,7,13,16,0,623,62.64,32,1010.0 -2015,7,13,16,30,390,66.27,31,1010.0 -2015,7,13,17,0,421,68.5,31,1010.0 -2015,7,13,17,30,218,72.51,30,1010.0 -2015,7,13,18,0,210,79.57000000000001,29,1010.0 -2015,7,13,18,30,113,89.36,28,1010.0 -2015,7,13,19,0,33,91.32000000000001,27,1010.0 -2015,7,13,19,30,0,91.33,26,1010.0 -2015,7,13,20,0,0,89.13,26,1010.0 -2015,7,13,20,30,0,94.57000000000001,25,1010.0 -2015,7,13,21,0,0,94.73,25,1010.0 -2015,7,13,21,30,0,94.73,25,1010.0 -2015,7,13,22,0,0,95.61,25,1010.0 -2015,7,13,22,30,0,100.0,24,1010.0 -2015,7,13,23,0,0,100.0,24,1010.0 -2015,7,13,23,30,0,100.0,24,1010.0 -2015,7,14,0,0,0,100.0,24,1010.0 -2015,7,14,0,30,0,100.0,23,1010.0 -2015,7,14,1,0,0,100.0,23,1010.0 -2015,7,14,1,30,0,100.0,23,1010.0 -2015,7,14,2,0,0,100.0,23,1010.0 -2015,7,14,2,30,0,100.0,23,1010.0 -2015,7,14,3,0,0,100.0,23,1010.0 -2015,7,14,3,30,0,100.0,23,1010.0 -2015,7,14,4,0,0,100.0,23,1010.0 -2015,7,14,4,30,0,100.0,23,1010.0 -2015,7,14,5,0,0,100.0,23,1010.0 -2015,7,14,5,30,0,98.72,24,1010.0 -2015,7,14,6,0,45,97.04,25,1010.0 -2015,7,14,6,30,128,91.48,26,1010.0 -2015,7,14,7,0,228,87.49,27,1010.0 -2015,7,14,7,30,333,87.5,27,1010.0 -2015,7,14,8,0,441,82.17,28,1010.0 -2015,7,14,8,30,545,82.17,28,1010.0 -2015,7,14,9,0,645,77.53,29,1010.0 -2015,7,14,9,30,735,73.2,30,1010.0 -2015,7,14,10,0,817,68.98,31,1010.0 -2015,7,14,10,30,884,68.97,31,1010.0 -2015,7,14,11,0,939,68.34,32,1010.0 -2015,7,14,11,30,977,68.32000000000001,32,1010.0 -2015,7,14,12,0,1001,63.72,32,1010.0 -2015,7,14,12,30,1008,63.690000000000005,32,1010.0 -2015,7,14,13,0,998,62.690000000000005,33,1010.0 -2015,7,14,13,30,973,62.660000000000004,33,1010.0 -2015,7,14,14,0,932,61.75,33,1010.0 -2015,7,14,14,30,876,61.74,32,1000.0 -2015,7,14,15,0,807,61.33,32,1000.0 -2015,7,14,15,30,726,61.32,32,1000.0 -2015,7,14,16,0,635,61.620000000000005,32,1000.0 -2015,7,14,16,30,536,65.2,31,1000.0 -2015,7,14,17,0,431,71.64,30,1000.0 -2015,7,14,17,30,323,75.88,29,1000.0 -2015,7,14,18,0,217,83.56,29,1000.0 -2015,7,14,18,30,117,88.59,27,1000.0 -2015,7,14,19,0,35,90.83,26,1000.0 -2015,7,14,19,30,0,90.86,26,1010.0 -2015,7,14,20,0,0,89.53,26,1010.0 -2015,7,14,20,30,0,95.02,25,1010.0 -2015,7,14,21,0,0,94.87,25,1010.0 -2015,7,14,21,30,0,94.89,25,1010.0 -2015,7,14,22,0,0,94.81,25,1010.0 -2015,7,14,22,30,0,100.0,24,1010.0 -2015,7,14,23,0,0,100.0,24,1010.0 -2015,7,14,23,30,0,100.0,24,1010.0 -2015,7,15,0,0,0,100.0,24,1010.0 -2015,7,15,0,30,0,100.0,23,1010.0 -2015,7,15,1,0,0,100.0,23,1010.0 -2015,7,15,1,30,0,100.0,23,1010.0 -2015,7,15,2,0,0,100.0,23,1010.0 -2015,7,15,2,30,0,100.0,23,1010.0 -2015,7,15,3,0,0,100.0,23,1010.0 -2015,7,15,3,30,0,100.0,23,1010.0 -2015,7,15,4,0,0,100.0,23,1010.0 -2015,7,15,4,30,0,100.0,23,1010.0 -2015,7,15,5,0,0,100.0,23,1010.0 -2015,7,15,5,30,0,98.97,24,1010.0 -2015,7,15,6,0,46,98.27,25,1010.0 -2015,7,15,6,30,131,92.65,26,1010.0 -2015,7,15,7,0,232,87.05,27,1010.0 -2015,7,15,7,30,338,82.13,28,1010.0 -2015,7,15,8,0,445,76.43,29,1010.0 -2015,7,15,8,30,549,76.43,29,1010.0 -2015,7,15,9,0,647,71.81,30,1010.0 -2015,7,15,9,30,736,71.8,30,1010.0 -2015,7,15,10,0,816,67.56,31,1010.0 -2015,7,15,10,30,882,67.55,31,1010.0 -2015,7,15,11,0,935,63.5,32,1010.0 -2015,7,15,11,30,973,63.480000000000004,32,1010.0 -2015,7,15,12,0,990,63.25,32,1010.0 -2015,7,15,12,30,996,63.230000000000004,32,1010.0 -2015,7,15,13,0,986,59.410000000000004,33,1010.0 -2015,7,15,13,30,961,59.39,33,1010.0 -2015,7,15,14,0,919,59.09,33,1010.0 -2015,7,15,14,30,864,62.49,32,1010.0 -2015,7,15,15,0,795,62.5,32,1010.0 -2015,7,15,15,30,715,66.13,31,1010.0 -2015,7,15,16,0,624,66.48,31,1010.0 -2015,7,15,16,30,526,70.37,30,1010.0 -2015,7,15,17,0,422,72.41,30,1010.0 -2015,7,15,17,30,316,76.7,29,1010.0 -2015,7,15,18,0,211,79.86,29,1010.0 -2015,7,15,18,30,113,84.63,28,1010.0 -2015,7,15,19,0,34,88.11,27,1010.0 -2015,7,15,19,30,0,93.47,26,1010.0 -2015,7,15,20,0,0,92.88,26,1010.0 -2015,7,15,20,30,0,92.91,26,1010.0 -2015,7,15,21,0,0,93.26,26,1010.0 -2015,7,15,21,30,0,98.96000000000001,25,1010.0 -2015,7,15,22,0,0,99.19,25,1010.0 -2015,7,15,22,30,0,99.2,25,1010.0 -2015,7,15,23,0,0,99.26,25,1010.0 -2015,7,15,23,30,0,100.0,25,1010.0 -2015,7,16,0,0,0,100.0,25,1010.0 -2015,7,16,0,30,0,100.0,24,1010.0 -2015,7,16,1,0,0,100.0,24,1010.0 -2015,7,16,1,30,0,100.0,24,1010.0 -2015,7,16,2,0,0,100.0,24,1010.0 -2015,7,16,2,30,0,100.0,24,1010.0 -2015,7,16,3,0,0,100.0,24,1010.0 -2015,7,16,3,30,0,100.0,24,1010.0 -2015,7,16,4,0,0,100.0,24,1010.0 -2015,7,16,4,30,0,100.0,24,1010.0 -2015,7,16,5,0,0,100.0,24,1010.0 -2015,7,16,5,30,0,96.65,25,1010.0 -2015,7,16,6,0,43,96.27,26,1010.0 -2015,7,16,6,30,126,90.81,27,1010.0 -2015,7,16,7,0,224,85.18,28,1010.0 -2015,7,16,7,30,329,85.19,28,1010.0 -2015,7,16,8,0,434,79.81,29,1010.0 -2015,7,16,8,30,536,79.81,29,1010.0 -2015,7,16,9,0,634,74.94,30,1010.0 -2015,7,16,9,30,723,74.93,30,1010.0 -2015,7,16,10,0,804,70.27,31,1010.0 -2015,7,16,10,30,870,70.26,31,1010.0 -2015,7,16,11,0,924,65.6,32,1010.0 -2015,7,16,11,30,962,65.58,32,1010.0 -2015,7,16,12,0,986,61.09,33,1010.0 -2015,7,16,12,30,992,61.07,33,1010.0 -2015,7,16,13,0,983,60.47,33,1010.0 -2015,7,16,13,30,957,60.45,33,1010.0 -2015,7,16,14,0,916,60.14,33,1010.0 -2015,7,16,14,30,861,63.6,32,1010.0 -2015,7,16,15,0,790,63.84,32,1010.0 -2015,7,16,15,30,710,63.84,32,1010.0 -2015,7,16,16,0,619,64.34,32,1010.0 -2015,7,16,16,30,521,68.07000000000001,31,1010.0 -2015,7,16,17,0,418,74.21000000000001,30,1010.0 -2015,7,16,17,30,312,78.60000000000001,29,1010.0 -2015,7,16,18,0,209,81.74,29,1010.0 -2015,7,16,18,30,111,86.61,28,1010.0 -2015,7,16,19,0,32,91.38,27,1010.0 -2015,7,16,19,30,0,96.93,26,1010.0 -2015,7,16,20,0,0,96.78,26,1010.0 -2015,7,16,20,30,0,96.8,26,1010.0 -2015,7,16,21,0,0,96.85000000000001,26,1010.0 -2015,7,16,21,30,0,96.86,26,1010.0 -2015,7,16,22,0,0,96.57000000000001,26,1010.0 -2015,7,16,22,30,0,100.0,25,1010.0 -2015,7,16,23,0,0,100.0,25,1010.0 -2015,7,16,23,30,0,100.0,25,1010.0 -2015,7,17,0,0,0,100.0,25,1010.0 -2015,7,17,0,30,0,100.0,25,1010.0 -2015,7,17,1,0,0,100.0,25,1010.0 -2015,7,17,1,30,0,100.0,24,1010.0 -2015,7,17,2,0,0,100.0,24,1010.0 -2015,7,17,2,30,0,100.0,24,1010.0 -2015,7,17,3,0,0,100.0,24,1010.0 -2015,7,17,3,30,0,100.0,24,1010.0 -2015,7,17,4,0,0,100.0,24,1010.0 -2015,7,17,4,30,0,100.0,24,1010.0 -2015,7,17,5,0,0,100.0,24,1010.0 -2015,7,17,5,30,0,99.02,25,1010.0 -2015,7,17,6,0,41,98.45,26,1010.0 -2015,7,17,6,30,122,92.86,27,1010.0 -2015,7,17,7,0,218,88.01,28,1010.0 -2015,7,17,7,30,322,88.02,28,1010.0 -2015,7,17,8,0,427,83.0,29,1010.0 -2015,7,17,8,30,529,83.0,29,1010.0 -2015,7,17,9,0,624,77.62,30,1010.0 -2015,7,17,9,30,712,77.62,30,1010.0 -2015,7,17,10,0,790,72.69,31,1010.0 -2015,7,17,10,30,855,72.68,31,1010.0 -2015,7,17,11,0,597,68.2,32,1010.0 -2015,7,17,11,30,621,68.18,32,1010.0 -2015,7,17,12,0,634,67.9,32,1010.0 -2015,7,17,12,30,733,67.87,32,1010.0 -2015,7,17,13,0,724,67.72,32,1010.0 -2015,7,17,13,30,850,67.7,32,1010.0 -2015,7,17,14,0,813,67.75,32,1010.0 -2015,7,17,14,30,837,67.73,32,1010.0 -2015,7,17,15,0,769,67.7,32,1010.0 -2015,7,17,15,30,690,71.63,31,1010.0 -2015,7,17,16,0,602,72.02,31,1010.0 -2015,7,17,16,30,505,76.24,30,1010.0 -2015,7,17,17,0,404,78.16,30,1010.0 -2015,7,17,17,30,300,82.78,29,1010.0 -2015,7,17,18,0,199,84.91,29,1010.0 -2015,7,17,18,30,105,89.97,28,1010.0 -2015,7,17,19,0,29,92.96000000000001,28,1010.0 -2015,7,17,19,30,0,92.98,27,1010.0 -2015,7,17,20,0,0,92.0,27,1010.0 -2015,7,17,20,30,0,97.59,27,1010.0 -2015,7,17,21,0,0,97.55,27,1010.0 -2015,7,17,21,30,0,97.56,26,1010.0 -2015,7,17,22,0,0,97.74000000000001,26,1010.0 -2015,7,17,22,30,0,97.74000000000001,26,1010.0 -2015,7,17,23,0,0,97.55,26,1010.0 -2015,7,17,23,30,0,100.0,25,1010.0 -2015,7,18,0,0,0,100.0,25,1010.0 -2015,7,18,0,30,0,100.0,25,1010.0 -2015,7,18,1,0,0,100.0,25,1010.0 -2015,7,18,1,30,0,100.0,25,1010.0 -2015,7,18,2,0,0,100.0,25,1010.0 -2015,7,18,2,30,0,100.0,25,1010.0 -2015,7,18,3,0,0,100.0,25,1010.0 -2015,7,18,3,30,0,100.0,25,1010.0 -2015,7,18,4,0,0,100.0,25,1010.0 -2015,7,18,4,30,0,100.0,25,1010.0 -2015,7,18,5,0,0,100.0,25,1010.0 -2015,7,18,5,30,0,100.0,25,1010.0 -2015,7,18,6,0,36,99.79,26,1010.0 -2015,7,18,6,30,114,94.13,27,1010.0 -2015,7,18,7,0,208,89.98,28,1010.0 -2015,7,18,7,30,311,90.0,28,1010.0 -2015,7,18,8,0,414,84.74,29,1010.0 -2015,7,18,8,30,515,84.75,29,1010.0 -2015,7,18,9,0,614,79.03,30,1010.0 -2015,7,18,9,30,701,79.04,30,1010.0 -2015,7,18,10,0,782,73.66,31,1010.0 -2015,7,18,10,30,847,73.65,31,1010.0 -2015,7,18,11,0,901,68.08,32,1010.0 -2015,7,18,11,30,938,68.06,32,1010.0 -2015,7,18,12,0,960,62.910000000000004,33,1010.0 -2015,7,18,12,30,966,62.88,33,1010.0 -2015,7,18,13,0,957,61.660000000000004,33,1010.0 -2015,7,18,13,30,932,61.64,33,1010.0 -2015,7,18,14,0,892,60.76,33,1010.0 -2015,7,18,14,30,837,60.75,33,1010.0 -2015,7,18,15,0,772,60.4,33,1010.0 -2015,7,18,15,30,693,63.88,32,1010.0 -2015,7,18,16,0,605,64.19,32,1010.0 -2015,7,18,16,30,507,67.92,31,1010.0 -2015,7,18,17,0,399,70.66,31,1010.0 -2015,7,18,17,30,266,74.81,30,1010.0 -2015,7,18,18,0,193,82.46000000000001,29,1010.0 -2015,7,18,18,30,101,87.38,28,1010.0 -2015,7,18,19,0,29,90.05,27,1010.0 -2015,7,18,19,30,0,90.06,27,1010.0 -2015,7,18,20,0,0,89.42,27,1010.0 -2015,7,18,20,30,0,94.85000000000001,26,1010.0 -2015,7,18,21,0,0,95.23,26,1010.0 -2015,7,18,21,30,0,95.23,26,1010.0 -2015,7,18,22,0,0,95.45,26,1010.0 -2015,7,18,22,30,0,100.0,25,1010.0 -2015,7,18,23,0,0,100.0,25,1010.0 -2015,7,18,23,30,0,100.0,25,1010.0 -2015,7,19,0,0,0,100.0,25,1010.0 -2015,7,19,0,30,0,100.0,25,1010.0 -2015,7,19,1,0,0,100.0,25,1010.0 -2015,7,19,1,30,0,100.0,24,1010.0 -2015,7,19,2,0,0,100.0,24,1010.0 -2015,7,19,2,30,0,100.0,24,1010.0 -2015,7,19,3,0,0,100.0,24,1010.0 -2015,7,19,3,30,0,100.0,24,1010.0 -2015,7,19,4,0,0,100.0,24,1010.0 -2015,7,19,4,30,0,100.0,24,1010.0 -2015,7,19,5,0,0,100.0,24,1010.0 -2015,7,19,5,30,0,98.43,25,1010.0 -2015,7,19,6,0,38,97.12,26,1010.0 -2015,7,19,6,30,117,97.14,26,1010.0 -2015,7,19,7,0,214,92.88,27,1010.0 -2015,7,19,7,30,317,87.63,28,1010.0 -2015,7,19,8,0,423,81.58,29,1010.0 -2015,7,19,8,30,525,81.58,29,1010.0 -2015,7,19,9,0,624,75.02,30,1010.0 -2015,7,19,9,30,713,75.02,30,1010.0 -2015,7,19,10,0,793,68.39,31,1010.0 -2015,7,19,10,30,860,68.37,31,1010.0 -2015,7,19,11,0,914,62.52,32,1010.0 -2015,7,19,11,30,952,62.51,32,1010.0 -2015,7,19,12,0,976,57.92,33,1010.0 -2015,7,19,12,30,983,57.9,33,1010.0 -2015,7,19,13,0,974,57.09,33,1010.0 -2015,7,19,13,30,949,57.08,33,1010.0 -2015,7,19,14,0,909,56.660000000000004,33,1010.0 -2015,7,19,14,30,854,56.64,33,1010.0 -2015,7,19,15,0,785,56.96,33,1010.0 -2015,7,19,15,30,705,60.230000000000004,32,1010.0 -2015,7,19,16,0,393,61.15,32,1010.0 -2015,7,19,16,30,517,64.69,31,1010.0 -2015,7,19,17,0,413,68.2,31,1010.0 -2015,7,19,17,30,307,72.19,30,1010.0 -2015,7,19,18,0,204,80.81,29,1010.0 -2015,7,19,18,30,107,85.62,28,1010.0 -2015,7,19,19,0,29,89.3,27,1010.0 -2015,7,19,19,30,0,89.32000000000001,27,1010.0 -2015,7,19,20,0,0,89.73,27,1010.0 -2015,7,19,20,30,0,95.17,26,1010.0 -2015,7,19,21,0,0,96.84,26,1010.0 -2015,7,19,21,30,0,96.84,26,1010.0 -2015,7,19,22,0,0,97.97,26,1010.0 -2015,7,19,22,30,0,100.0,26,1010.0 -2015,7,19,23,0,0,100.0,26,1010.0 -2015,7,19,23,30,0,100.0,25,1010.0 -2015,7,20,0,0,0,100.0,25,1010.0 -2015,7,20,0,30,0,100.0,25,1010.0 -2015,7,20,1,0,0,100.0,25,1010.0 -2015,7,20,1,30,0,100.0,24,1010.0 -2015,7,20,2,0,0,100.0,24,1010.0 -2015,7,20,2,30,0,100.0,24,1010.0 -2015,7,20,3,0,0,100.0,24,1010.0 -2015,7,20,3,30,0,100.0,24,1010.0 -2015,7,20,4,0,0,100.0,24,1010.0 -2015,7,20,4,30,0,100.0,24,1010.0 -2015,7,20,5,0,0,100.0,24,1010.0 -2015,7,20,5,30,0,100.0,25,1010.0 -2015,7,20,6,0,39,99.16,26,1010.0 -2015,7,20,6,30,122,99.17,26,1010.0 -2015,7,20,7,0,221,93.62,27,1010.0 -2015,7,20,7,30,327,93.62,27,1010.0 -2015,7,20,8,0,435,85.28,28,1010.0 -2015,7,20,8,30,539,80.49,29,1010.0 -2015,7,20,9,0,638,73.28,30,1010.0 -2015,7,20,9,30,728,73.27,30,1010.0 -2015,7,20,10,0,808,66.29,31,1010.0 -2015,7,20,10,30,875,66.28,31,1010.0 -2015,7,20,11,0,928,60.49,32,1010.0 -2015,7,20,11,30,966,60.46,32,1010.0 -2015,7,20,12,0,568,59.26,33,1010.0 -2015,7,20,12,30,572,59.230000000000004,33,1010.0 -2015,7,20,13,0,566,55.38,33,1010.0 -2015,7,20,13,30,551,55.36,33,1010.0 -2015,7,20,14,0,527,55.07,33,1010.0 -2015,7,20,14,30,806,55.06,33,1010.0 -2015,7,20,15,0,734,55.25,33,1010.0 -2015,7,20,15,30,658,58.43,32,1010.0 -2015,7,20,16,0,574,59.32,32,1010.0 -2015,7,20,16,30,459,62.76,31,1010.0 -2015,7,20,17,0,397,66.22,31,1010.0 -2015,7,20,17,30,287,70.10000000000001,30,1010.0 -2015,7,20,18,0,194,79.04,29,1010.0 -2015,7,20,18,30,100,83.75,28,1010.0 -2015,7,20,19,0,26,87.11,27,1010.0 -2015,7,20,19,30,0,87.12,27,1010.0 -2015,7,20,20,0,0,87.38,27,1010.0 -2015,7,20,20,30,0,92.68,26,1010.0 -2015,7,20,21,0,0,94.16,26,1010.0 -2015,7,20,21,30,0,94.17,26,1010.0 -2015,7,20,22,0,0,95.48,26,1010.0 -2015,7,20,22,30,0,100.0,25,1010.0 -2015,7,20,23,0,0,100.0,25,1010.0 -2015,7,20,23,30,0,100.0,25,1010.0 -2015,7,21,0,0,0,100.0,25,1010.0 -2015,7,21,0,30,0,100.0,25,1010.0 -2015,7,21,1,0,0,100.0,25,1010.0 -2015,7,21,1,30,0,100.0,24,1010.0 -2015,7,21,2,0,0,100.0,24,1010.0 -2015,7,21,2,30,0,100.0,24,1010.0 -2015,7,21,3,0,0,100.0,24,1010.0 -2015,7,21,3,30,0,100.0,24,1010.0 -2015,7,21,4,0,0,100.0,24,1010.0 -2015,7,21,4,30,0,100.0,24,1010.0 -2015,7,21,5,0,0,100.0,24,1010.0 -2015,7,21,5,30,0,100.0,25,1010.0 -2015,7,21,6,0,32,98.75,26,1010.0 -2015,7,21,6,30,110,93.14,27,1010.0 -2015,7,21,7,0,204,87.07000000000001,28,1010.0 -2015,7,21,7,30,306,87.07000000000001,28,1010.0 -2015,7,21,8,0,412,80.10000000000001,29,1010.0 -2015,7,21,8,30,513,80.10000000000001,29,1010.0 -2015,7,21,9,0,612,74.12,30,1010.0 -2015,7,21,9,30,700,74.11,30,1010.0 -2015,7,21,10,0,780,68.38,31,1010.0 -2015,7,21,10,30,846,68.36,31,1010.0 -2015,7,21,11,0,899,63.38,32,1010.0 -2015,7,21,11,30,936,63.36,32,1010.0 -2015,7,21,12,0,807,59.2,33,1010.0 -2015,7,21,12,30,339,59.18,33,1010.0 -2015,7,21,13,0,958,58.75,33,1010.0 -2015,7,21,13,30,933,58.730000000000004,33,1010.0 -2015,7,21,14,0,675,58.56,33,1010.0 -2015,7,21,14,30,633,58.550000000000004,33,1000.0 -2015,7,21,15,0,723,58.88,33,1000.0 -2015,7,21,15,30,648,62.26,32,1000.0 -2015,7,21,16,0,490,63.11,32,1000.0 -2015,7,21,16,30,483,66.78,31,1000.0 -2015,7,21,17,0,404,69.23,31,1000.0 -2015,7,21,17,30,299,73.3,30,1000.0 -2015,7,21,18,0,198,81.55,29,1000.0 -2015,7,21,18,30,102,86.42,28,1000.0 -2015,7,21,19,0,27,86.31,28,1000.0 -2015,7,21,19,30,0,91.51,27,1010.0 -2015,7,21,20,0,0,91.46000000000001,27,1010.0 -2015,7,21,20,30,0,91.49,27,1010.0 -2015,7,21,21,0,0,92.07000000000001,27,1010.0 -2015,7,21,21,30,0,97.65,26,1010.0 -2015,7,21,22,0,0,98.0,26,1010.0 -2015,7,21,22,30,0,98.0,26,1010.0 -2015,7,21,23,0,0,98.2,26,1010.0 -2015,7,21,23,30,0,98.2,26,1010.0 -2015,7,22,0,0,0,98.25,26,1010.0 -2015,7,22,0,30,0,100.0,25,1010.0 -2015,7,22,1,0,0,100.0,25,1010.0 -2015,7,22,1,30,0,100.0,25,1010.0 -2015,7,22,2,0,0,100.0,25,1010.0 -2015,7,22,2,30,0,100.0,25,1010.0 -2015,7,22,3,0,0,100.0,25,1010.0 -2015,7,22,3,30,0,100.0,25,1010.0 -2015,7,22,4,0,0,100.0,25,1010.0 -2015,7,22,4,30,0,100.0,25,1010.0 -2015,7,22,5,0,0,100.0,25,1010.0 -2015,7,22,5,30,0,100.0,25,1010.0 -2015,7,22,6,0,34,99.42,26,1010.0 -2015,7,22,6,30,112,99.44,27,1010.0 -2015,7,22,7,0,208,94.12,28,1010.0 -2015,7,22,7,30,312,88.8,28,1010.0 -2015,7,22,8,0,415,81.64,29,1010.0 -2015,7,22,8,30,518,81.64,29,1010.0 -2015,7,22,9,0,617,75.79,30,1010.0 -2015,7,22,9,30,706,75.79,30,1010.0 -2015,7,22,10,0,784,70.79,31,1010.0 -2015,7,22,10,30,850,70.78,31,1010.0 -2015,7,22,11,0,903,66.25,32,1010.0 -2015,7,22,11,30,679,66.23,32,1010.0 -2015,7,22,12,0,551,65.4,32,1010.0 -2015,7,22,12,30,554,65.38,32,1010.0 -2015,7,22,13,0,549,60.980000000000004,33,1010.0 -2015,7,22,13,30,702,64.48,33,1010.0 -2015,7,22,14,0,672,63.84,33,1010.0 -2015,7,22,14,30,568,63.83,32,1010.0 -2015,7,22,15,0,608,63.77,32,1010.0 -2015,7,22,15,30,577,67.47,31,1010.0 -2015,7,22,16,0,595,68.85000000000001,31,1010.0 -2015,7,22,16,30,497,72.89,30,1010.0 -2015,7,22,17,0,397,75.45,30,1010.0 -2015,7,22,17,30,293,79.91,29,1010.0 -2015,7,22,18,0,192,81.53,29,1010.0 -2015,7,22,18,30,98,86.4,28,1010.0 -2015,7,22,19,0,24,90.83,27,1010.0 -2015,7,22,19,30,0,90.86,27,1010.0 -2015,7,22,20,0,0,90.96000000000001,27,1010.0 -2015,7,22,20,30,0,96.49000000000001,27,1010.0 -2015,7,22,21,0,0,96.97,27,1010.0 -2015,7,22,21,30,0,96.99000000000001,26,1010.0 -2015,7,22,22,0,0,97.37,26,1010.0 -2015,7,22,22,30,0,97.37,26,1010.0 -2015,7,22,23,0,0,97.47,26,1010.0 -2015,7,22,23,30,0,100.0,25,1010.0 -2015,7,23,0,0,0,100.0,25,1010.0 -2015,7,23,0,30,0,100.0,25,1010.0 -2015,7,23,1,0,0,100.0,25,1010.0 -2015,7,23,1,30,0,100.0,25,1010.0 -2015,7,23,2,0,0,100.0,25,1010.0 -2015,7,23,2,30,0,100.0,25,1010.0 -2015,7,23,3,0,0,100.0,25,1010.0 -2015,7,23,3,30,0,100.0,24,1010.0 -2015,7,23,4,0,0,100.0,24,1010.0 -2015,7,23,4,30,0,100.0,24,1010.0 -2015,7,23,5,0,0,100.0,24,1010.0 -2015,7,23,5,30,0,100.0,25,1010.0 -2015,7,23,6,0,30,99.68,26,1010.0 -2015,7,23,6,30,107,94.03,27,1010.0 -2015,7,23,7,0,202,90.19,28,1010.0 -2015,7,23,7,30,305,90.2,28,1010.0 -2015,7,23,8,0,411,84.44,29,1010.0 -2015,7,23,8,30,514,84.45,29,1010.0 -2015,7,23,9,0,614,78.57000000000001,30,1010.0 -2015,7,23,9,30,703,78.57000000000001,30,1010.0 -2015,7,23,10,0,784,72.94,31,1010.0 -2015,7,23,10,30,850,72.93,31,1010.0 -2015,7,23,11,0,905,67.26,32,1010.0 -2015,7,23,11,30,944,67.24,32,1010.0 -2015,7,23,12,0,967,61.67,33,1010.0 -2015,7,23,12,30,974,61.65,33,1010.0 -2015,7,23,13,0,965,59.93,33,1010.0 -2015,7,23,13,30,940,59.910000000000004,33,1010.0 -2015,7,23,14,0,900,58.68,33,1010.0 -2015,7,23,14,30,845,58.67,33,1010.0 -2015,7,23,15,0,777,58.01,33,1010.0 -2015,7,23,15,30,696,61.36,32,1010.0 -2015,7,23,16,0,607,61.92,32,1010.0 -2015,7,23,16,30,508,65.52,31,1010.0 -2015,7,23,17,0,405,68.76,31,1010.0 -2015,7,23,17,30,299,72.79,30,1010.0 -2015,7,23,18,0,196,80.42,29,1010.0 -2015,7,23,18,30,100,85.22,28,1010.0 -2015,7,23,19,0,25,89.06,27,1010.0 -2015,7,23,19,30,0,89.09,27,1010.0 -2015,7,23,20,0,0,89.42,27,1010.0 -2015,7,23,20,30,0,94.84,26,1010.0 -2015,7,23,21,0,0,95.60000000000001,26,1010.0 -2015,7,23,21,30,0,100.0,26,1010.0 -2015,7,23,22,0,0,100.0,26,1010.0 -2015,7,23,22,30,0,100.0,25,1010.0 -2015,7,23,23,0,0,100.0,25,1010.0 -2015,7,23,23,30,0,100.0,25,1010.0 -2015,7,24,0,0,0,100.0,25,1010.0 -2015,7,24,0,30,0,100.0,24,1010.0 -2015,7,24,1,0,0,100.0,24,1010.0 -2015,7,24,1,30,0,100.0,24,1010.0 -2015,7,24,2,0,0,100.0,24,1010.0 -2015,7,24,2,30,0,100.0,24,1010.0 -2015,7,24,3,0,0,100.0,24,1010.0 -2015,7,24,3,30,0,100.0,24,1010.0 -2015,7,24,4,0,0,100.0,24,1010.0 -2015,7,24,4,30,0,100.0,24,1010.0 -2015,7,24,5,0,0,100.0,24,1010.0 -2015,7,24,5,30,0,100.0,25,1010.0 -2015,7,24,6,0,33,96.68,26,1010.0 -2015,7,24,6,30,112,91.18,27,1010.0 -2015,7,24,7,0,210,86.66,28,1010.0 -2015,7,24,7,30,315,86.67,28,1010.0 -2015,7,24,8,0,422,81.04,29,1010.0 -2015,7,24,8,30,525,81.04,30,1010.0 -2015,7,24,9,0,624,75.14,31,1010.0 -2015,7,24,9,30,714,70.98,31,1010.0 -2015,7,24,10,0,794,65.83,32,1010.0 -2015,7,24,10,30,861,65.82000000000001,32,1010.0 -2015,7,24,11,0,914,61.2,33,1010.0 -2015,7,24,11,30,953,61.18,33,1010.0 -2015,7,24,12,0,971,60.13,33,1010.0 -2015,7,24,12,30,978,60.11,33,1010.0 -2015,7,24,13,0,969,55.84,34,1010.0 -2015,7,24,13,30,944,55.82,34,1010.0 -2015,7,24,14,0,903,55.0,34,1010.0 -2015,7,24,14,30,848,58.14,33,1010.0 -2015,7,24,15,0,779,57.94,33,1010.0 -2015,7,24,15,30,698,57.94,33,1010.0 -2015,7,24,16,0,608,58.44,33,1010.0 -2015,7,24,16,30,509,61.81,32,1010.0 -2015,7,24,17,0,406,64.86,32,1010.0 -2015,7,24,17,30,300,68.64,31,1010.0 -2015,7,24,18,0,197,77.5,30,1010.0 -2015,7,24,18,30,100,82.08,29,1010.0 -2015,7,24,19,0,25,85.65,28,1010.0 -2015,7,24,19,30,0,90.79,27,1010.0 -2015,7,24,20,0,0,90.86,27,1010.0 -2015,7,24,20,30,0,90.88,27,1010.0 -2015,7,24,21,0,0,91.79,27,1010.0 -2015,7,24,21,30,0,97.34,26,1010.0 -2015,7,24,22,0,0,97.81,26,1010.0 -2015,7,24,22,30,0,100.0,26,1010.0 -2015,7,24,23,0,0,100.0,26,1010.0 -2015,7,24,23,30,0,100.0,25,1010.0 -2015,7,25,0,0,0,100.0,25,1010.0 -2015,7,25,0,30,0,100.0,25,1010.0 -2015,7,25,1,0,0,100.0,25,1010.0 -2015,7,25,1,30,0,100.0,24,1010.0 -2015,7,25,2,0,0,100.0,24,1010.0 -2015,7,25,2,30,0,100.0,24,1010.0 -2015,7,25,3,0,0,100.0,24,1010.0 -2015,7,25,3,30,0,100.0,24,1010.0 -2015,7,25,4,0,0,100.0,24,1010.0 -2015,7,25,4,30,0,100.0,24,1010.0 -2015,7,25,5,0,0,100.0,24,1010.0 -2015,7,25,5,30,0,100.0,25,1010.0 -2015,7,25,6,0,32,97.73,26,1010.0 -2015,7,25,6,30,111,97.74000000000001,27,1010.0 -2015,7,25,7,0,211,91.74,28,1010.0 -2015,7,25,7,30,317,86.56,28,1010.0 -2015,7,25,8,0,429,78.9,29,1010.0 -2015,7,25,8,30,533,78.89,30,1010.0 -2015,7,25,9,0,635,70.23,31,1010.0 -2015,7,25,9,30,725,66.33,31,1010.0 -2015,7,25,10,0,805,59.69,32,1010.0 -2015,7,25,10,30,690,59.67,32,1010.0 -2015,7,25,11,0,733,55.45,33,1010.0 -2015,7,25,11,30,964,55.43,33,1010.0 -2015,7,25,12,0,983,52.17,34,1010.0 -2015,7,25,12,30,989,52.15,34,1010.0 -2015,7,25,13,0,979,52.230000000000004,34,1010.0 -2015,7,25,13,30,953,52.21,34,1010.0 -2015,7,25,14,0,910,52.42,34,1010.0 -2015,7,25,14,30,854,52.410000000000004,34,1010.0 -2015,7,25,15,0,602,52.77,34,1010.0 -2015,7,25,15,30,460,55.78,33,1010.0 -2015,7,25,16,0,467,56.370000000000005,33,1010.0 -2015,7,25,16,30,205,59.620000000000005,32,1010.0 -2015,7,25,17,0,409,62.690000000000005,32,1010.0 -2015,7,25,17,30,302,66.35,31,1010.0 -2015,7,25,18,0,144,75.65,30,1010.0 -2015,7,25,18,30,100,80.13,29,1010.0 -2015,7,25,19,0,24,85.41,28,1010.0 -2015,7,25,19,30,0,90.54,27,1010.0 -2015,7,25,20,0,0,92.10000000000001,27,1010.0 -2015,7,25,20,30,0,92.11,27,1010.0 -2015,7,25,21,0,0,94.01,27,1010.0 -2015,7,25,21,30,0,99.68,26,1010.0 -2015,7,25,22,0,0,100.0,26,1010.0 -2015,7,25,22,30,0,100.0,26,1010.0 -2015,7,25,23,0,0,100.0,26,1010.0 -2015,7,25,23,30,0,100.0,25,1010.0 -2015,7,26,0,0,0,100.0,25,1010.0 -2015,7,26,0,30,0,100.0,25,1010.0 -2015,7,26,1,0,0,100.0,25,1010.0 -2015,7,26,1,30,0,100.0,25,1010.0 -2015,7,26,2,0,0,100.0,25,1010.0 -2015,7,26,2,30,0,100.0,25,1010.0 -2015,7,26,3,0,0,100.0,25,1010.0 -2015,7,26,3,30,0,100.0,24,1010.0 -2015,7,26,4,0,0,100.0,24,1010.0 -2015,7,26,4,30,0,100.0,24,1010.0 -2015,7,26,5,0,0,100.0,24,1010.0 -2015,7,26,5,30,0,100.0,25,1010.0 -2015,7,26,6,0,17,99.48,26,1010.0 -2015,7,26,6,30,63,99.5,26,1010.0 -2015,7,26,7,0,122,92.39,27,1010.0 -2015,7,26,7,30,304,87.17,28,1010.0 -2015,7,26,8,0,412,78.53,29,1010.0 -2015,7,26,8,30,515,78.54,29,1010.0 -2015,7,26,9,0,615,70.02,30,1010.0 -2015,7,26,9,30,704,66.14,31,1010.0 -2015,7,26,10,0,784,59.54,32,1010.0 -2015,7,26,10,30,850,59.53,32,1010.0 -2015,7,26,11,0,904,54.7,33,1010.0 -2015,7,26,11,30,942,54.68,33,1010.0 -2015,7,26,12,0,969,50.94,34,1010.0 -2015,7,26,12,30,976,50.92,34,1010.0 -2015,7,26,13,0,967,50.49,34,1010.0 -2015,7,26,13,30,942,50.47,34,1010.0 -2015,7,26,14,0,902,47.550000000000004,35,1010.0 -2015,7,26,14,30,846,50.24,34,1010.0 -2015,7,26,15,0,777,50.43,34,1000.0 -2015,7,26,15,30,697,50.42,34,1000.0 -2015,7,26,16,0,605,50.97,34,1000.0 -2015,7,26,16,30,506,53.89,33,1000.0 -2015,7,26,17,0,402,60.17,33,1000.0 -2015,7,26,17,30,295,63.68,31,1000.0 -2015,7,26,18,0,168,73.22,30,1000.0 -2015,7,26,18,30,84,77.56,29,1000.0 -2015,7,26,19,0,19,83.24,28,1010.0 -2015,7,26,19,30,0,88.25,28,1010.0 -2015,7,26,20,0,0,89.95,28,1010.0 -2015,7,26,20,30,0,89.96000000000001,27,1010.0 -2015,7,26,21,0,0,92.61,27,1010.0 -2015,7,26,21,30,0,92.61,27,1010.0 -2015,7,26,22,0,0,94.44,27,1010.0 -2015,7,26,22,30,0,100.0,26,1010.0 -2015,7,26,23,0,0,100.0,26,1010.0 -2015,7,26,23,30,0,100.0,26,1010.0 -2015,7,27,0,0,0,100.0,26,1010.0 -2015,7,27,0,30,0,100.0,26,1010.0 -2015,7,27,1,0,0,100.0,26,1010.0 -2015,7,27,1,30,0,100.0,25,1010.0 -2015,7,27,2,0,0,100.0,25,1010.0 -2015,7,27,2,30,0,100.0,25,1010.0 -2015,7,27,3,0,0,100.0,25,1010.0 -2015,7,27,3,30,0,100.0,25,1010.0 -2015,7,27,4,0,0,100.0,25,1010.0 -2015,7,27,4,30,0,100.0,25,1010.0 -2015,7,27,5,0,0,100.0,25,1010.0 -2015,7,27,5,30,0,100.0,25,1010.0 -2015,7,27,6,0,14,100.0,26,1010.0 -2015,7,27,6,30,55,95.45,27,1010.0 -2015,7,27,7,0,120,88.53,28,1010.0 -2015,7,27,7,30,135,88.54,28,1010.0 -2015,7,27,8,0,227,79.57000000000001,29,1010.0 -2015,7,27,8,30,336,75.14,30,1010.0 -2015,7,27,9,0,402,64.55,31,1010.0 -2015,7,27,9,30,460,64.54,32,1010.0 -2015,7,27,10,0,782,56.550000000000004,33,1010.0 -2015,7,27,10,30,849,53.45,33,1010.0 -2015,7,27,11,0,903,49.45,34,1010.0 -2015,7,27,11,30,823,49.43,34,1010.0 -2015,7,27,12,0,838,48.980000000000004,34,1010.0 -2015,7,27,12,30,840,48.96,34,1010.0 -2015,7,27,13,0,875,46.06,35,1010.0 -2015,7,27,13,30,839,48.660000000000004,35,1010.0 -2015,7,27,14,0,809,48.57,35,1010.0 -2015,7,27,14,30,835,48.56,34,1010.0 -2015,7,27,15,0,768,48.83,34,1010.0 -2015,7,27,15,30,687,51.620000000000005,33,1010.0 -2015,7,27,16,0,597,52.42,33,1010.0 -2015,7,27,16,30,499,55.44,32,1010.0 -2015,7,27,17,0,396,57.730000000000004,32,1010.0 -2015,7,27,17,30,290,61.09,31,1010.0 -2015,7,27,18,0,188,69.04,30,1010.0 -2015,7,27,18,30,93,73.13,29,1010.0 -2015,7,27,19,0,21,79.57000000000001,28,1010.0 -2015,7,27,19,30,0,84.37,27,1010.0 -2015,7,27,20,0,0,86.10000000000001,27,1010.0 -2015,7,27,20,30,0,91.33,27,1010.0 -2015,7,27,21,0,0,93.31,27,1010.0 -2015,7,27,21,30,0,93.33,26,1010.0 -2015,7,27,22,0,0,94.47,26,1010.0 -2015,7,27,22,30,0,94.47,26,1010.0 -2015,7,27,23,0,0,95.07000000000001,26,1010.0 -2015,7,27,23,30,0,100.0,25,1010.0 -2015,7,28,0,0,0,100.0,25,1010.0 -2015,7,28,0,30,0,100.0,25,1010.0 -2015,7,28,1,0,0,100.0,25,1010.0 -2015,7,28,1,30,0,100.0,25,1010.0 -2015,7,28,2,0,0,100.0,25,1010.0 -2015,7,28,2,30,0,100.0,25,1010.0 -2015,7,28,3,0,0,100.0,25,1010.0 -2015,7,28,3,30,0,100.0,24,1010.0 -2015,7,28,4,0,0,100.0,24,1010.0 -2015,7,28,4,30,0,100.0,24,1010.0 -2015,7,28,5,0,0,100.0,24,1010.0 -2015,7,28,5,30,0,100.0,25,1010.0 -2015,7,28,6,0,28,99.03,26,1010.0 -2015,7,28,6,30,105,93.4,27,1010.0 -2015,7,28,7,0,202,86.91,28,1010.0 -2015,7,28,7,30,307,82.03,29,1010.0 -2015,7,28,8,0,415,73.86,30,1010.0 -2015,7,28,8,30,519,73.86,30,1010.0 -2015,7,28,9,0,618,64.66,31,1010.0 -2015,7,28,9,30,709,61.11,32,1010.0 -2015,7,28,10,0,788,52.550000000000004,33,1010.0 -2015,7,28,10,30,856,52.54,33,1010.0 -2015,7,28,11,0,909,47.02,34,1010.0 -2015,7,28,11,30,948,47.01,34,1010.0 -2015,7,28,12,0,973,42.94,35,1010.0 -2015,7,28,12,30,980,42.93,35,1010.0 -2015,7,28,13,0,969,41.77,35,1010.0 -2015,7,28,13,30,944,41.76,35,1010.0 -2015,7,28,14,0,902,41.1,35,1010.0 -2015,7,28,14,30,845,41.09,35,1010.0 -2015,7,28,15,0,773,41.300000000000004,35,1010.0 -2015,7,28,15,30,691,43.64,34,1010.0 -2015,7,28,16,0,599,45.12,34,1010.0 -2015,7,28,16,30,499,47.71,33,1010.0 -2015,7,28,17,0,394,54.34,32,1010.0 -2015,7,28,17,30,288,57.51,31,1010.0 -2015,7,28,18,0,185,67.26,30,1010.0 -2015,7,28,18,30,91,71.25,29,1010.0 -2015,7,28,19,0,19,78.69,28,1010.0 -2015,7,28,19,30,0,83.43,28,1010.0 -2015,7,28,20,0,0,87.09,28,1010.0 -2015,7,28,20,30,0,87.10000000000001,27,1010.0 -2015,7,28,21,0,0,90.3,27,1010.0 -2015,7,28,21,30,0,95.77,26,1010.0 -2015,7,28,22,0,0,97.54,26,1010.0 -2015,7,28,22,30,0,97.54,26,1010.0 -2015,7,28,23,0,0,98.37,26,1010.0 -2015,7,28,23,30,0,98.37,26,1010.0 -2015,7,29,0,0,0,98.76,26,1010.0 -2015,7,29,0,30,0,100.0,25,1010.0 -2015,7,29,1,0,0,100.0,25,1010.0 -2015,7,29,1,30,0,100.0,25,1010.0 -2015,7,29,2,0,0,100.0,25,1010.0 -2015,7,29,2,30,0,100.0,25,1010.0 -2015,7,29,3,0,0,100.0,25,1010.0 -2015,7,29,3,30,0,100.0,24,1010.0 -2015,7,29,4,0,0,100.0,24,1010.0 -2015,7,29,4,30,0,100.0,24,1010.0 -2015,7,29,5,0,0,100.0,24,1010.0 -2015,7,29,5,30,0,100.0,25,1010.0 -2015,7,29,6,0,24,100.0,26,1010.0 -2015,7,29,6,30,99,94.7,27,1010.0 -2015,7,29,7,0,197,88.29,28,1010.0 -2015,7,29,7,30,300,88.29,28,1010.0 -2015,7,29,8,0,410,78.96000000000001,29,1010.0 -2015,7,29,8,30,513,74.54,30,1010.0 -2015,7,29,9,0,613,60.15,31,1010.0 -2015,7,29,9,30,703,56.84,32,1010.0 -2015,7,29,10,0,782,47.08,33,1010.0 -2015,7,29,10,30,849,44.53,34,1010.0 -2015,7,29,11,0,902,40.02,35,1010.0 -2015,7,29,11,30,940,40.01,35,1010.0 -2015,7,29,12,0,964,38.06,36,1010.0 -2015,7,29,12,30,971,38.050000000000004,36,1010.0 -2015,7,29,13,0,960,35.12,36,1010.0 -2015,7,29,13,30,935,35.11,36,1010.0 -2015,7,29,14,0,666,34.95,36,1010.0 -2015,7,29,14,30,625,34.94,36,1010.0 -2015,7,29,15,0,764,35.56,36,1010.0 -2015,7,29,15,30,683,37.56,35,1010.0 -2015,7,29,16,0,531,39.19,35,1010.0 -2015,7,29,16,30,442,41.42,34,1010.0 -2015,7,29,17,0,342,44.62,34,1010.0 -2015,7,29,17,30,249,49.9,32,1010.0 -2015,7,29,18,0,180,62.28,31,1010.0 -2015,7,29,18,30,87,65.95,30,1010.0 -2015,7,29,19,0,16,73.74,29,1010.0 -2015,7,29,19,30,0,78.15,28,1010.0 -2015,7,29,20,0,0,80.59,28,1010.0 -2015,7,29,20,30,0,85.45,27,1010.0 -2015,7,29,21,0,0,89.13,27,1010.0 -2015,7,29,21,30,0,89.14,27,1010.0 -2015,7,29,22,0,0,91.41,27,1010.0 -2015,7,29,22,30,0,96.93,26,1010.0 -2015,7,29,23,0,0,98.48,26,1010.0 -2015,7,29,23,30,0,98.47,26,1010.0 -2015,7,30,0,0,0,99.24000000000001,26,1010.0 -2015,7,30,0,30,0,99.23,26,1010.0 -2015,7,30,1,0,0,99.55,26,1010.0 -2015,7,30,1,30,0,100.0,25,1010.0 -2015,7,30,2,0,0,100.0,25,1010.0 -2015,7,30,2,30,0,100.0,25,1010.0 -2015,7,30,3,0,0,100.0,25,1010.0 -2015,7,30,3,30,0,100.0,25,1010.0 -2015,7,30,4,0,0,100.0,25,1010.0 -2015,7,30,4,30,0,100.0,25,1010.0 -2015,7,30,5,0,0,100.0,25,1010.0 -2015,7,30,5,30,0,100.0,25,1010.0 -2015,7,30,6,0,21,97.3,26,1010.0 -2015,7,30,6,30,94,97.31,26,1010.0 -2015,7,30,7,0,187,90.12,27,1010.0 -2015,7,30,7,30,287,85.03,28,1010.0 -2015,7,30,8,0,389,69.23,30,1010.0 -2015,7,30,8,30,490,65.41,31,1010.0 -2015,7,30,9,0,468,56.160000000000004,32,1010.0 -2015,7,30,9,30,538,53.09,33,1010.0 -2015,7,30,10,0,403,48.410000000000004,34,1010.0 -2015,7,30,10,30,331,48.4,34,1010.0 -2015,7,30,11,0,441,46.69,35,1010.0 -2015,7,30,11,30,778,46.67,35,1010.0 -2015,7,30,12,0,772,45.08,36,1010.0 -2015,7,30,12,30,636,45.06,36,1010.0 -2015,7,30,13,0,814,45.57,36,1010.0 -2015,7,30,13,30,791,45.550000000000004,36,1010.0 -2015,7,30,14,0,771,45.97,36,1010.0 -2015,7,30,14,30,722,48.56,35,1010.0 -2015,7,30,15,0,682,48.4,35,1010.0 -2015,7,30,15,30,596,51.15,34,1010.0 -2015,7,30,16,0,531,51.5,34,1010.0 -2015,7,30,16,30,441,54.45,33,1010.0 -2015,7,30,17,0,366,56.13,33,1010.0 -2015,7,30,17,30,265,59.38,32,1010.0 -2015,7,30,18,0,168,68.75,31,1010.0 -2015,7,30,18,30,78,72.79,30,1010.0 -2015,7,30,19,0,12,72.62,30,1010.0 -2015,7,30,19,30,0,76.92,29,1010.0 -2015,7,30,20,0,0,77.01,29,1010.0 -2015,7,30,20,30,0,77.02,29,1010.0 -2015,7,30,21,0,0,77.34,29,1010.0 -2015,7,30,21,30,0,81.94,28,1010.0 -2015,7,30,22,0,0,83.68,28,1010.0 -2015,7,30,22,30,0,88.69,27,1010.0 -2015,7,30,23,0,0,91.01,27,1010.0 -2015,7,30,23,30,0,91.0,27,1010.0 -2015,7,31,0,0,0,92.07000000000001,27,1010.0 -2015,7,31,0,30,0,97.63,26,1010.0 -2015,7,31,1,0,0,98.12,26,1010.0 -2015,7,31,1,30,0,98.12,26,1010.0 -2015,7,31,2,0,0,98.67,26,1010.0 -2015,7,31,2,30,0,98.67,26,1010.0 -2015,7,31,3,0,0,98.87,26,1010.0 -2015,7,31,3,30,0,98.87,26,1010.0 -2015,7,31,4,0,0,98.12,26,1010.0 -2015,7,31,4,30,0,98.13,26,1010.0 -2015,7,31,5,0,0,97.36,26,1010.0 -2015,7,31,5,30,0,97.37,26,1010.0 -2015,7,31,6,0,17,95.44,27,1010.0 -2015,7,31,6,30,82,95.45,27,1010.0 -2015,7,31,7,0,183,86.67,28,1010.0 -2015,7,31,7,30,283,81.79,29,1010.0 -2015,7,31,8,0,351,71.63,31,1010.0 -2015,7,31,8,30,443,67.66,31,1010.0 -2015,7,31,9,0,522,60.78,32,1010.0 -2015,7,31,9,30,596,60.77,33,1010.0 -2015,7,31,10,0,667,56.120000000000005,34,1010.0 -2015,7,31,10,30,726,56.1,34,1010.0 -2015,7,31,11,0,758,52.730000000000004,35,1010.0 -2015,7,31,11,30,792,52.71,35,1010.0 -2015,7,31,12,0,808,49.58,35,1010.0 -2015,7,31,12,30,814,49.56,35,1010.0 -2015,7,31,13,0,809,48.72,35,1010.0 -2015,7,31,13,30,894,48.7,35,1010.0 -2015,7,31,14,0,858,47.47,36,1010.0 -2015,7,31,14,30,803,47.46,35,1010.0 -2015,7,31,15,0,741,45.83,35,1010.0 -2015,7,31,15,30,662,45.82,35,1010.0 -2015,7,31,16,0,579,44.58,35,1010.0 -2015,7,31,16,30,482,47.11,34,1010.0 -2015,7,31,17,0,384,46.56,34,1010.0 -2015,7,31,17,30,279,52.09,32,1010.0 -2015,7,31,18,0,179,61.57,31,1010.0 -2015,7,31,18,30,86,69.04,29,1010.0 -2015,7,31,19,0,16,71.43,28,1010.0 -2015,7,31,19,30,0,75.74,27,1010.0 -2015,7,31,20,0,0,74.45,27,1010.0 -2015,7,31,20,30,0,78.97,26,1010.0 -2015,7,31,21,0,0,79.23,26,1010.0 -2015,7,31,21,30,0,79.23,26,1010.0 -2015,7,31,22,0,0,79.7,26,1010.0 -2015,7,31,22,30,0,84.56,25,1010.0 -2015,7,31,23,0,0,84.78,25,1010.0 -2015,7,31,23,30,0,84.76,25,1010.0 -2015,8,1,0,0,0,84.28,25,1010.0 -2015,8,1,0,30,0,89.43,24,1010.0 -2015,8,1,1,0,0,88.78,24,1010.0 -2015,8,1,1,30,0,94.26,23,1010.0 -2015,8,1,2,0,0,93.01,23,1010.0 -2015,8,1,2,30,0,93.0,23,1010.0 -2015,8,1,3,0,0,91.51,23,1010.0 -2015,8,1,3,30,0,97.21000000000001,22,1010.0 -2015,8,1,4,0,0,95.9,22,1010.0 -2015,8,1,4,30,0,95.91,22,1010.0 -2015,8,1,5,0,0,95.06,22,1010.0 -2015,8,1,5,30,0,89.5,23,1010.0 -2015,8,1,6,0,26,84.4,24,1010.0 -2015,8,1,6,30,106,79.53,25,1010.0 -2015,8,1,7,0,206,76.51,26,1010.0 -2015,8,1,7,30,313,68.07000000000001,28,1010.0 -2015,8,1,8,0,421,58.300000000000004,30,1010.0 -2015,8,1,8,30,527,55.07,31,1010.0 -2015,8,1,9,0,626,48.29,32,1010.0 -2015,8,1,9,30,716,48.28,32,1010.0 -2015,8,1,10,0,796,44.410000000000004,33,1010.0 -2015,8,1,10,30,863,44.4,33,1010.0 -2015,8,1,11,0,917,41.22,34,1010.0 -2015,8,1,11,30,956,41.21,34,1010.0 -2015,8,1,12,0,973,38.29,35,1010.0 -2015,8,1,12,30,833,38.28,35,1010.0 -2015,8,1,13,0,824,37.74,35,1010.0 -2015,8,1,13,30,802,37.730000000000004,35,1010.0 -2015,8,1,14,0,902,37.31,35,1010.0 -2015,8,1,14,30,846,37.300000000000004,35,1010.0 -2015,8,1,15,0,772,37.0,35,1010.0 -2015,8,1,15,30,690,39.09,34,1010.0 -2015,8,1,16,0,599,39.33,34,1010.0 -2015,8,1,16,30,499,41.58,33,1000.0 -2015,8,1,17,0,395,43.36,33,1000.0 -2015,8,1,17,30,287,48.54,32,1010.0 -2015,8,1,18,0,183,62.21,31,1010.0 -2015,8,1,18,30,87,65.9,29,1010.0 -2015,8,1,19,0,16,71.67,28,1010.0 -2015,8,1,19,30,0,75.99,27,1010.0 -2015,8,1,20,0,0,76.48,27,1010.0 -2015,8,1,20,30,0,76.49,27,1010.0 -2015,8,1,21,0,0,77.27,27,1010.0 -2015,8,1,21,30,0,81.94,26,1010.0 -2015,8,1,22,0,0,82.06,26,1010.0 -2015,8,1,22,30,0,82.05,26,1010.0 -2015,8,1,23,0,0,81.47,26,1010.0 -2015,8,1,23,30,0,86.43,25,1010.0 -2015,8,2,0,0,0,85.66,25,1010.0 -2015,8,2,0,30,0,85.65,25,1010.0 -2015,8,2,1,0,0,85.09,25,1010.0 -2015,8,2,1,30,0,90.31,24,1010.0 -2015,8,2,2,0,0,90.02,24,1010.0 -2015,8,2,2,30,0,95.58,23,1010.0 -2015,8,2,3,0,0,95.49,23,1010.0 -2015,8,2,3,30,0,100.0,22,1010.0 -2015,8,2,4,0,0,100.0,22,1010.0 -2015,8,2,4,30,0,100.0,22,1010.0 -2015,8,2,5,0,0,100.0,22,1010.0 -2015,8,2,5,30,0,100.0,23,1010.0 -2015,8,2,6,0,25,94.91,24,1010.0 -2015,8,2,6,30,104,89.39,25,1010.0 -2015,8,2,7,0,204,79.57000000000001,26,1010.0 -2015,8,2,7,30,312,70.79,28,1010.0 -2015,8,2,8,0,423,58.19,30,1010.0 -2015,8,2,8,30,530,54.96,31,1010.0 -2015,8,2,9,0,632,46.12,32,1010.0 -2015,8,2,9,30,725,43.59,33,1010.0 -2015,8,2,10,0,807,38.93,34,1010.0 -2015,8,2,10,30,876,38.92,34,1010.0 -2015,8,2,11,0,931,35.480000000000004,35,1010.0 -2015,8,2,11,30,971,35.47,35,1010.0 -2015,8,2,12,0,992,32.88,36,1010.0 -2015,8,2,12,30,998,32.87,36,1000.0 -2015,8,2,13,0,987,32.63,36,1000.0 -2015,8,2,13,30,960,32.62,36,1000.0 -2015,8,2,14,0,916,32.6,36,1000.0 -2015,8,2,14,30,858,32.59,36,1000.0 -2015,8,2,15,0,786,32.76,36,1000.0 -2015,8,2,15,30,702,34.61,35,1000.0 -2015,8,2,16,0,608,35.22,35,1000.0 -2015,8,2,16,30,379,37.230000000000004,34,1000.0 -2015,8,2,17,0,398,39.53,34,1000.0 -2015,8,2,17,30,290,44.21,32,1000.0 -2015,8,2,18,0,183,55.89,31,1000.0 -2015,8,2,18,30,87,62.67,29,1000.0 -2015,8,2,19,0,15,68.62,28,1000.0 -2015,8,2,19,30,0,72.76,27,1000.0 -2015,8,2,20,0,0,74.83,27,1000.0 -2015,8,2,20,30,0,79.38,26,1000.0 -2015,8,2,21,0,0,82.04,26,1010.0 -2015,8,2,21,30,0,82.04,26,1010.0 -2015,8,2,22,0,0,84.23,26,1010.0 -2015,8,2,22,30,0,89.36,25,1010.0 -2015,8,2,23,0,0,90.26,25,1010.0 -2015,8,2,23,30,0,90.26,25,1010.0 -2015,8,3,0,0,0,90.44,25,1010.0 -2015,8,3,0,30,0,90.43,25,1010.0 -2015,8,3,1,0,0,90.17,25,1010.0 -2015,8,3,1,30,0,95.71000000000001,25,1010.0 -2015,8,3,2,0,0,95.51,25,1010.0 -2015,8,3,2,30,0,95.51,24,1010.0 -2015,8,3,3,0,0,96.09,24,1010.0 -2015,8,3,3,30,0,96.10000000000001,24,1010.0 -2015,8,3,4,0,0,97.34,24,1010.0 -2015,8,3,4,30,0,100.0,23,1010.0 -2015,8,3,5,0,0,100.0,23,1010.0 -2015,8,3,5,30,0,98.89,24,1010.0 -2015,8,3,6,0,22,95.62,25,1010.0 -2015,8,3,6,30,99,90.15,26,1010.0 -2015,8,3,7,0,197,84.33,27,1010.0 -2015,8,3,7,30,303,79.57000000000001,28,1010.0 -2015,8,3,8,0,413,65.42,30,1010.0 -2015,8,3,8,30,518,61.800000000000004,31,1010.0 -2015,8,3,9,0,620,51.75,32,1010.0 -2015,8,3,9,30,711,51.75,32,1010.0 -2015,8,3,10,0,791,45.65,33,1010.0 -2015,8,3,10,30,859,45.64,33,1010.0 -2015,8,3,11,0,913,41.800000000000004,34,1010.0 -2015,8,3,11,30,951,41.79,34,1010.0 -2015,8,3,12,0,972,39.22,35,1010.0 -2015,8,3,12,30,977,39.21,35,1010.0 -2015,8,3,13,0,966,37.18,36,1010.0 -2015,8,3,13,30,939,37.17,36,1000.0 -2015,8,3,14,0,895,37.58,36,1000.0 -2015,8,3,14,30,596,39.69,35,1000.0 -2015,8,3,15,0,539,40.68,35,1000.0 -2015,8,3,15,30,676,42.99,34,1000.0 -2015,8,3,16,0,583,44.54,34,1000.0 -2015,8,3,16,30,483,47.09,33,1000.0 -2015,8,3,17,0,379,50.28,33,1000.0 -2015,8,3,17,30,250,56.29,31,1000.0 -2015,8,3,18,0,153,65.07000000000001,30,1000.0 -2015,8,3,18,30,71,68.93,29,1000.0 -2015,8,3,19,0,10,77.88,28,1010.0 -2015,8,3,19,30,0,82.57000000000001,28,1010.0 -2015,8,3,20,0,0,86.17,28,1010.0 -2015,8,3,20,30,0,86.19,27,1010.0 -2015,8,3,21,0,0,88.71000000000001,27,1010.0 -2015,8,3,21,30,0,94.07000000000001,26,1010.0 -2015,8,3,22,0,0,95.2,26,1010.0 -2015,8,3,22,30,0,95.19,26,1010.0 -2015,8,3,23,0,0,95.36,26,1010.0 -2015,8,3,23,30,0,100.0,26,1010.0 -2015,8,4,0,0,0,100.0,26,1010.0 -2015,8,4,0,30,0,100.0,25,1010.0 -2015,8,4,1,0,0,100.0,25,1010.0 -2015,8,4,1,30,0,100.0,25,1010.0 -2015,8,4,2,0,0,100.0,25,1010.0 -2015,8,4,2,30,0,100.0,25,1010.0 -2015,8,4,3,0,0,100.0,25,1010.0 -2015,8,4,3,30,0,100.0,25,1010.0 -2015,8,4,4,0,0,100.0,25,1010.0 -2015,8,4,4,30,0,100.0,25,1010.0 -2015,8,4,5,0,0,100.0,25,1010.0 -2015,8,4,5,30,0,100.0,25,1010.0 -2015,8,4,6,0,17,97.61,26,1010.0 -2015,8,4,6,30,88,92.07000000000001,27,1010.0 -2015,8,4,7,0,181,85.21000000000001,28,1010.0 -2015,8,4,7,30,283,80.43,29,1010.0 -2015,8,4,8,0,388,73.17,30,1010.0 -2015,8,4,8,30,490,69.11,31,1010.0 -2015,8,4,9,0,591,61.97,32,1010.0 -2015,8,4,9,30,680,61.96,32,1010.0 -2015,8,4,10,0,762,55.1,33,1010.0 -2015,8,4,10,30,829,55.09,33,1010.0 -2015,8,4,11,0,884,49.33,34,1010.0 -2015,8,4,11,30,577,49.31,34,1010.0 -2015,8,4,12,0,595,45.02,35,1010.0 -2015,8,4,12,30,668,45.0,35,1010.0 -2015,8,4,13,0,619,41.46,36,1010.0 -2015,8,4,13,30,738,41.45,36,1010.0 -2015,8,4,14,0,705,40.65,36,1010.0 -2015,8,4,14,30,826,42.94,35,1010.0 -2015,8,4,15,0,541,42.96,35,1010.0 -2015,8,4,15,30,675,42.95,35,1010.0 -2015,8,4,16,0,583,43.79,35,1010.0 -2015,8,4,16,30,483,46.28,34,1010.0 -2015,8,4,17,0,379,51.1,33,1010.0 -2015,8,4,17,30,254,54.06,32,1010.0 -2015,8,4,18,0,170,62.4,31,1010.0 -2015,8,4,18,30,78,66.07000000000001,30,1010.0 -2015,8,4,19,0,11,74.45,29,1010.0 -2015,8,4,19,30,0,78.91,28,1010.0 -2015,8,4,20,0,0,82.71000000000001,28,1010.0 -2015,8,4,20,30,0,87.7,27,1010.0 -2015,8,4,21,0,0,91.10000000000001,27,1010.0 -2015,8,4,21,30,0,91.11,27,1010.0 -2015,8,4,22,0,0,92.86,27,1010.0 -2015,8,4,22,30,0,98.47,27,1010.0 -2015,8,4,23,0,0,99.59,27,1010.0 -2015,8,4,23,30,0,99.59,26,1010.0 -2015,8,5,0,0,0,100.0,26,1010.0 -2015,8,5,0,30,0,100.0,26,1010.0 -2015,8,5,1,0,0,100.0,26,1010.0 -2015,8,5,1,30,0,100.0,26,1010.0 -2015,8,5,2,0,0,99.91,26,1010.0 -2015,8,5,2,30,0,99.91,26,1010.0 -2015,8,5,3,0,0,99.4,26,1010.0 -2015,8,5,3,30,0,100.0,26,1010.0 -2015,8,5,4,0,0,100.0,26,1010.0 -2015,8,5,4,30,0,100.0,25,1010.0 -2015,8,5,5,0,0,100.0,25,1010.0 -2015,8,5,5,30,0,98.17,26,1010.0 -2015,8,5,6,0,20,95.65,27,1010.0 -2015,8,5,6,30,94,95.67,27,1010.0 -2015,8,5,7,0,191,90.27,28,1010.0 -2015,8,5,7,30,297,85.2,29,1010.0 -2015,8,5,8,0,405,76.3,30,1010.0 -2015,8,5,8,30,510,72.08,31,1010.0 -2015,8,5,9,0,613,63.980000000000004,32,1010.0 -2015,8,5,9,30,704,60.47,33,1010.0 -2015,8,5,10,0,785,53.74,34,1010.0 -2015,8,5,10,30,658,53.730000000000004,34,1010.0 -2015,8,5,11,0,700,48.86,35,1010.0 -2015,8,5,11,30,946,48.84,35,1010.0 -2015,8,5,12,0,967,44.86,36,1010.0 -2015,8,5,12,30,974,44.84,36,1010.0 -2015,8,5,13,0,964,43.980000000000004,36,1010.0 -2015,8,5,13,30,790,43.96,36,1010.0 -2015,8,5,14,0,652,43.59,36,1010.0 -2015,8,5,14,30,555,43.58,36,1010.0 -2015,8,5,15,0,642,43.92,36,1010.0 -2015,8,5,15,30,610,46.39,35,1010.0 -2015,8,5,16,0,412,47.43,35,1010.0 -2015,8,5,16,30,387,50.13,34,1010.0 -2015,8,5,17,0,267,55.09,33,1010.0 -2015,8,5,17,30,103,58.27,32,1010.0 -2015,8,5,18,0,153,65.31,31,1010.0 -2015,8,5,18,30,69,69.15,30,1010.0 -2015,8,5,19,0,10,76.52,29,1010.0 -2015,8,5,19,30,0,81.10000000000001,28,1010.0 -2015,8,5,20,0,0,83.78,28,1010.0 -2015,8,5,20,30,0,83.8,28,1010.0 -2015,8,5,21,0,0,85.60000000000001,28,1010.0 -2015,8,5,21,30,0,90.73,27,1010.0 -2015,8,5,22,0,0,91.67,27,1010.0 -2015,8,5,22,30,0,91.67,27,1010.0 -2015,8,5,23,0,0,92.24,27,1010.0 -2015,8,5,23,30,0,97.81,26,1010.0 -2015,8,6,0,0,0,97.74000000000001,26,1010.0 -2015,8,6,0,30,0,97.73,26,1010.0 -2015,8,6,1,0,0,97.25,26,1010.0 -2015,8,6,1,30,0,97.24000000000001,26,1010.0 -2015,8,6,2,0,0,96.61,26,1010.0 -2015,8,6,2,30,0,96.61,26,1010.0 -2015,8,6,3,0,0,95.86,26,1010.0 -2015,8,6,3,30,0,100.0,25,1010.0 -2015,8,6,4,0,0,100.0,25,1010.0 -2015,8,6,4,30,0,100.0,25,1010.0 -2015,8,6,5,0,0,99.99000000000001,25,1010.0 -2015,8,6,5,30,0,100.0,25,1010.0 -2015,8,6,6,0,18,96.58,26,1010.0 -2015,8,6,6,30,90,91.09,27,1010.0 -2015,8,6,7,0,186,85.13,28,1010.0 -2015,8,6,7,30,292,80.35000000000001,29,1010.0 -2015,8,6,8,0,400,72.36,30,1010.0 -2015,8,6,8,30,506,68.35000000000001,31,1010.0 -2015,8,6,9,0,608,61.64,32,1010.0 -2015,8,6,9,30,699,58.26,33,1010.0 -2015,8,6,10,0,781,52.15,34,1010.0 -2015,8,6,10,30,850,52.13,34,1010.0 -2015,8,6,11,0,904,47.14,35,1010.0 -2015,8,6,11,30,943,47.13,35,1010.0 -2015,8,6,12,0,970,43.21,36,1010.0 -2015,8,6,12,30,977,43.19,36,1010.0 -2015,8,6,13,0,966,39.94,37,1010.0 -2015,8,6,13,30,940,39.92,37,1010.0 -2015,8,6,14,0,566,39.44,37,1010.0 -2015,8,6,14,30,530,41.63,36,1010.0 -2015,8,6,15,0,494,41.72,36,1010.0 -2015,8,6,15,30,536,44.07,35,1000.0 -2015,8,6,16,0,587,44.78,35,1000.0 -2015,8,6,16,30,486,47.33,34,1000.0 -2015,8,6,17,0,380,49.38,34,1000.0 -2015,8,6,17,30,272,55.230000000000004,32,1000.0 -2015,8,6,18,0,168,62.870000000000005,31,1000.0 -2015,8,6,18,30,75,66.57000000000001,30,1000.0 -2015,8,6,19,0,10,74.3,29,1010.0 -2015,8,6,19,30,0,78.74,28,1010.0 -2015,8,6,20,0,0,82.59,28,1010.0 -2015,8,6,20,30,0,82.61,28,1010.0 -2015,8,6,21,0,0,85.44,28,1010.0 -2015,8,6,21,30,0,90.56,27,1010.0 -2015,8,6,22,0,0,92.48,27,1010.0 -2015,8,6,22,30,0,92.47,27,1010.0 -2015,8,6,23,0,0,93.60000000000001,27,1010.0 -2015,8,6,23,30,0,99.25,26,1010.0 -2015,8,7,0,0,0,99.76,26,1010.0 -2015,8,7,0,30,0,99.75,26,1010.0 -2015,8,7,1,0,0,99.8,26,1010.0 -2015,8,7,1,30,0,100.0,26,1010.0 -2015,8,7,2,0,0,100.0,26,1010.0 -2015,8,7,2,30,0,100.0,26,1010.0 -2015,8,7,3,0,0,100.0,26,1010.0 -2015,8,7,3,30,0,100.0,26,1010.0 -2015,8,7,4,0,0,100.0,26,1010.0 -2015,8,7,4,30,0,100.0,26,1010.0 -2015,8,7,5,0,0,100.0,26,1010.0 -2015,8,7,5,30,0,99.13,26,1010.0 -2015,8,7,6,0,16,94.44,27,1010.0 -2015,8,7,6,30,88,94.45,28,1010.0 -2015,8,7,7,0,184,87.3,29,1010.0 -2015,8,7,7,30,288,82.4,30,1010.0 -2015,8,7,8,0,398,74.72,31,1010.0 -2015,8,7,8,30,504,70.58,31,1010.0 -2015,8,7,9,0,611,64.44,32,1010.0 -2015,8,7,9,30,703,60.92,33,1010.0 -2015,8,7,10,0,786,55.18,34,1010.0 -2015,8,7,10,30,855,55.17,34,1010.0 -2015,8,7,11,0,910,50.38,35,1010.0 -2015,8,7,11,30,949,50.36,35,1010.0 -2015,8,7,12,0,973,46.34,36,1010.0 -2015,8,7,12,30,980,46.33,36,1010.0 -2015,8,7,13,0,971,43.0,37,1010.0 -2015,8,7,13,30,944,42.980000000000004,37,1010.0 -2015,8,7,14,0,902,42.59,37,1010.0 -2015,8,7,14,30,845,44.95,36,1000.0 -2015,8,7,15,0,768,45.09,36,1000.0 -2015,8,7,15,30,685,47.63,35,1000.0 -2015,8,7,16,0,591,48.14,35,1000.0 -2015,8,7,16,30,490,50.88,34,1000.0 -2015,8,7,17,0,383,52.17,34,1000.0 -2015,8,7,17,30,275,58.35,33,1000.0 -2015,8,7,18,0,170,65.5,32,1000.0 -2015,8,7,18,30,75,69.35000000000001,30,1000.0 -2015,8,7,19,0,9,76.96000000000001,29,1000.0 -2015,8,7,19,30,0,76.98,29,1000.0 -2015,8,7,20,0,0,79.63,29,1010.0 -2015,8,7,20,30,0,84.37,28,1010.0 -2015,8,7,21,0,0,86.4,28,1010.0 -2015,8,7,21,30,0,91.58,27,1010.0 -2015,8,7,22,0,0,92.66,27,1010.0 -2015,8,7,22,30,0,92.66,27,1010.0 -2015,8,7,23,0,0,93.31,27,1010.0 -2015,8,7,23,30,0,98.95,26,1010.0 -2015,8,8,0,0,0,99.32000000000001,26,1010.0 -2015,8,8,0,30,0,99.33,26,1010.0 -2015,8,8,1,0,0,99.49000000000001,26,1010.0 -2015,8,8,1,30,0,99.5,26,1010.0 -2015,8,8,2,0,0,99.33,26,1010.0 -2015,8,8,2,30,0,99.34,26,1010.0 -2015,8,8,3,0,0,99.13,26,1010.0 -2015,8,8,3,30,0,99.14,26,1010.0 -2015,8,8,4,0,0,99.0,26,1010.0 -2015,8,8,4,30,0,99.01,26,1010.0 -2015,8,8,5,0,0,98.89,26,1010.0 -2015,8,8,5,30,0,98.91,26,1010.0 -2015,8,8,6,0,15,93.78,27,1010.0 -2015,8,8,6,30,85,88.48,28,1010.0 -2015,8,8,7,0,180,80.72,29,1010.0 -2015,8,8,7,30,284,80.72,29,1010.0 -2015,8,8,8,0,392,73.24,30,1010.0 -2015,8,8,8,30,497,69.18,31,1010.0 -2015,8,8,9,0,600,63.68,32,1010.0 -2015,8,8,9,30,691,60.2,33,1010.0 -2015,8,8,10,0,775,55.13,34,1010.0 -2015,8,8,10,30,843,55.120000000000005,34,1010.0 -2015,8,8,11,0,899,50.31,35,1010.0 -2015,8,8,11,30,938,50.29,35,1010.0 -2015,8,8,12,0,957,45.9,36,1010.0 -2015,8,8,12,30,963,45.88,36,1010.0 -2015,8,8,13,0,953,42.11,37,1010.0 -2015,8,8,13,30,927,42.1,37,1010.0 -2015,8,8,14,0,884,41.28,37,1010.0 -2015,8,8,14,30,827,41.27,37,1000.0 -2015,8,8,15,0,759,40.92,37,1000.0 -2015,8,8,15,30,676,43.21,36,1000.0 -2015,8,8,16,0,583,43.31,36,1000.0 -2015,8,8,16,30,482,45.76,35,1000.0 -2015,8,8,17,0,377,49.78,34,1000.0 -2015,8,8,17,30,269,52.64,33,1010.0 -2015,8,8,18,0,165,60.19,32,1010.0 -2015,8,8,18,30,72,67.44,31,1010.0 -2015,8,8,19,0,0,74.83,30,1010.0 -2015,8,8,19,30,0,79.31,29,1010.0 -2015,8,8,20,0,0,82.43,28,1010.0 -2015,8,8,20,30,0,87.38,28,1010.0 -2015,8,8,21,0,0,89.76,28,1010.0 -2015,8,8,21,30,0,89.77,27,1010.0 -2015,8,8,22,0,0,90.82000000000001,27,1010.0 -2015,8,8,22,30,0,96.33,26,1010.0 -2015,8,8,23,0,0,96.79,26,1010.0 -2015,8,8,23,30,0,96.79,26,1010.0 -2015,8,9,0,0,0,96.68,26,1010.0 -2015,8,9,0,30,0,100.0,25,1010.0 -2015,8,9,1,0,0,100.0,25,1010.0 -2015,8,9,1,30,0,100.0,25,1010.0 -2015,8,9,2,0,0,100.0,25,1010.0 -2015,8,9,2,30,0,100.0,25,1010.0 -2015,8,9,3,0,0,100.0,25,1010.0 -2015,8,9,3,30,0,100.0,24,1010.0 -2015,8,9,4,0,0,100.0,24,1010.0 -2015,8,9,4,30,0,100.0,24,1010.0 -2015,8,9,5,0,0,100.0,24,1010.0 -2015,8,9,5,30,0,100.0,25,1010.0 -2015,8,9,6,0,15,96.04,26,1010.0 -2015,8,9,6,30,86,90.57000000000001,27,1010.0 -2015,8,9,7,0,184,83.75,28,1010.0 -2015,8,9,7,30,290,79.04,29,1010.0 -2015,8,9,8,0,403,71.02,30,1010.0 -2015,8,9,8,30,509,67.09,31,1010.0 -2015,8,9,9,0,613,60.1,32,1010.0 -2015,8,9,9,30,705,56.82,33,1010.0 -2015,8,9,10,0,789,49.65,34,1010.0 -2015,8,9,10,30,857,49.64,35,1010.0 -2015,8,9,11,0,913,42.76,36,1010.0 -2015,8,9,11,30,952,40.46,36,1010.0 -2015,8,9,12,0,974,34.85,37,1010.0 -2015,8,9,12,30,981,34.84,37,1010.0 -2015,8,9,13,0,971,31.09,38,1010.0 -2015,8,9,13,30,944,31.080000000000002,38,1010.0 -2015,8,9,14,0,901,30.330000000000002,38,1010.0 -2015,8,9,14,30,843,30.330000000000002,38,1010.0 -2015,8,9,15,0,770,30.43,38,1010.0 -2015,8,9,15,30,686,32.12,37,1010.0 -2015,8,9,16,0,591,33.1,37,1010.0 -2015,8,9,16,30,489,34.95,36,1010.0 -2015,8,9,17,0,381,39.74,35,1010.0 -2015,8,9,17,30,272,44.410000000000004,33,1010.0 -2015,8,9,18,0,166,57.81,31,1010.0 -2015,8,9,18,30,71,61.21,30,1010.0 -2015,8,9,19,0,0,69.86,29,1010.0 -2015,8,9,19,30,0,74.04,28,1010.0 -2015,8,9,20,0,0,78.60000000000001,28,1010.0 -2015,8,9,20,30,0,83.33,27,1010.0 -2015,8,9,21,0,0,87.33,27,1010.0 -2015,8,9,21,30,0,92.61,26,1010.0 -2015,8,9,22,0,0,95.02,26,1010.0 -2015,8,9,22,30,0,95.02,26,1010.0 -2015,8,9,23,0,0,96.27,26,1010.0 -2015,8,9,23,30,0,100.0,26,1010.0 -2015,8,10,0,0,0,100.0,26,1010.0 -2015,8,10,0,30,0,100.0,25,1010.0 -2015,8,10,1,0,0,100.0,25,1010.0 -2015,8,10,1,30,0,100.0,25,1010.0 -2015,8,10,2,0,0,100.0,25,1010.0 -2015,8,10,2,30,0,100.0,25,1010.0 -2015,8,10,3,0,0,100.0,25,1010.0 -2015,8,10,3,30,0,100.0,25,1010.0 -2015,8,10,4,0,0,100.0,25,1010.0 -2015,8,10,4,30,0,100.0,24,1010.0 -2015,8,10,5,0,0,100.0,24,1010.0 -2015,8,10,5,30,0,100.0,25,1010.0 -2015,8,10,6,0,14,97.81,26,1010.0 -2015,8,10,6,30,85,92.25,27,1010.0 -2015,8,10,7,0,182,84.0,28,1010.0 -2015,8,10,7,30,287,79.29,29,1010.0 -2015,8,10,8,0,396,69.56,30,1010.0 -2015,8,10,8,30,502,65.71000000000001,31,1010.0 -2015,8,10,9,0,604,57.1,33,1010.0 -2015,8,10,9,30,696,53.97,34,1010.0 -2015,8,10,10,0,777,42.92,35,1010.0 -2015,8,10,10,30,846,40.61,36,1010.0 -2015,8,10,11,0,900,35.71,37,1010.0 -2015,8,10,11,30,939,35.69,37,1010.0 -2015,8,10,12,0,963,32.87,38,1010.0 -2015,8,10,12,30,969,32.86,38,1010.0 -2015,8,10,13,0,958,30.89,39,1010.0 -2015,8,10,13,30,931,30.88,39,1010.0 -2015,8,10,14,0,887,30.900000000000002,39,1000.0 -2015,8,10,14,30,829,32.6,38,1000.0 -2015,8,10,15,0,755,32.93,38,1000.0 -2015,8,10,15,30,671,34.76,37,1000.0 -2015,8,10,16,0,503,35.74,37,1000.0 -2015,8,10,16,30,415,37.74,36,1000.0 -2015,8,10,17,0,333,42.22,36,1000.0 -2015,8,10,17,30,245,47.18,34,1000.0 -2015,8,10,18,0,140,56.46,32,1000.0 -2015,8,10,18,30,58,59.76,31,1010.0 -2015,8,10,19,0,0,66.19,30,1010.0 -2015,8,10,19,30,0,70.12,29,1010.0 -2015,8,10,20,0,0,72.84,29,1010.0 -2015,8,10,20,30,0,77.19,28,1010.0 -2015,8,10,21,0,0,80.23,28,1010.0 -2015,8,10,21,30,0,85.04,27,1010.0 -2015,8,10,22,0,0,87.31,27,1010.0 -2015,8,10,22,30,0,87.31,27,1010.0 -2015,8,10,23,0,0,88.76,27,1010.0 -2015,8,10,23,30,0,94.13,26,1010.0 -2015,8,11,0,0,0,94.79,26,1010.0 -2015,8,11,0,30,0,94.79,26,1010.0 -2015,8,11,1,0,0,95.18,26,1010.0 -2015,8,11,1,30,0,95.18,26,1010.0 -2015,8,11,2,0,0,95.39,26,1010.0 -2015,8,11,2,30,0,100.0,26,1010.0 -2015,8,11,3,0,0,100.0,26,1010.0 -2015,8,11,3,30,0,100.0,25,1010.0 -2015,8,11,4,0,0,100.0,25,1010.0 -2015,8,11,4,30,0,100.0,25,1010.0 -2015,8,11,5,0,0,100.0,25,1010.0 -2015,8,11,5,30,0,100.0,25,1010.0 -2015,8,11,6,0,12,97.05,26,1010.0 -2015,8,11,6,30,82,91.53,27,1010.0 -2015,8,11,7,0,177,85.16,28,1010.0 -2015,8,11,7,30,280,80.38,29,1010.0 -2015,8,11,8,0,387,68.66,30,1010.0 -2015,8,11,8,30,492,64.86,31,1010.0 -2015,8,11,9,0,590,49.24,33,1010.0 -2015,8,11,9,30,681,46.57,34,1010.0 -2015,8,11,10,0,760,41.61,35,1010.0 -2015,8,11,10,30,827,39.38,36,1010.0 -2015,8,11,11,0,879,37.2,37,1010.0 -2015,8,11,11,30,917,37.18,37,1010.0 -2015,8,11,12,0,936,37.79,38,1010.0 -2015,8,11,12,30,942,37.78,38,1010.0 -2015,8,11,13,0,928,37.89,38,1010.0 -2015,8,11,13,30,901,37.88,37,1010.0 -2015,8,11,14,0,857,38.17,37,1010.0 -2015,8,11,14,30,800,40.300000000000004,36,1010.0 -2015,8,11,15,0,333,40.51,36,1010.0 -2015,8,11,15,30,295,42.79,35,1010.0 -2015,8,11,16,0,383,43.56,35,1010.0 -2015,8,11,16,30,213,46.04,34,1010.0 -2015,8,11,17,0,175,51.51,33,1010.0 -2015,8,11,17,30,21,57.660000000000004,32,1010.0 -2015,8,11,18,0,66,65.62,31,1010.0 -2015,8,11,18,30,26,69.5,30,1010.0 -2015,8,11,19,0,0,71.63,29,1010.0 -2015,8,11,19,30,0,75.92,28,1010.0 -2015,8,11,20,0,0,77.33,28,1010.0 -2015,8,11,20,30,0,81.99,27,1010.0 -2015,8,11,21,0,0,84.5,27,1010.0 -2015,8,11,21,30,0,84.5,27,1010.0 -2015,8,11,22,0,0,86.69,27,1010.0 -2015,8,11,22,30,0,91.92,27,1010.0 -2015,8,11,23,0,0,92.86,27,1010.0 -2015,8,11,23,30,0,92.86,26,1010.0 -2015,8,12,0,0,0,92.60000000000001,26,1010.0 -2015,8,12,0,30,0,92.60000000000001,26,1010.0 -2015,8,12,1,0,0,91.71000000000001,26,1010.0 -2015,8,12,1,30,0,91.71000000000001,26,1010.0 -2015,8,12,2,0,0,90.88,26,1010.0 -2015,8,12,2,30,0,96.41,25,1010.0 -2015,8,12,3,0,0,96.22,25,1010.0 -2015,8,12,3,30,0,96.23,25,1010.0 -2015,8,12,4,0,0,96.0,25,1010.0 -2015,8,12,4,30,0,100.0,25,1010.0 -2015,8,12,5,0,0,100.0,25,1010.0 -2015,8,12,5,30,0,100.0,25,1010.0 -2015,8,12,6,0,10,99.62,25,1010.0 -2015,8,12,6,30,77,93.92,26,1010.0 -2015,8,12,7,0,170,86.99,27,1010.0 -2015,8,12,7,30,272,82.07000000000001,28,1010.0 -2015,8,12,8,0,379,69.98,29,1010.0 -2015,8,12,8,30,483,66.07000000000001,30,1010.0 -2015,8,12,9,0,585,53.43,32,1010.0 -2015,8,12,9,30,676,50.5,33,1010.0 -2015,8,12,10,0,759,46.37,34,1010.0 -2015,8,12,10,30,828,46.36,34,1010.0 -2015,8,12,11,0,884,43.51,35,1010.0 -2015,8,12,11,30,822,43.49,36,1010.0 -2015,8,12,12,0,841,41.04,37,1010.0 -2015,8,12,12,30,847,41.02,37,1010.0 -2015,8,12,13,0,836,38.74,37,1010.0 -2015,8,12,13,30,913,38.72,37,1010.0 -2015,8,12,14,0,868,38.61,38,1010.0 -2015,8,12,14,30,810,38.6,37,1010.0 -2015,8,12,15,0,730,38.65,37,1010.0 -2015,8,12,15,30,579,40.800000000000004,36,1010.0 -2015,8,12,16,0,482,41.57,36,1010.0 -2015,8,12,16,30,451,43.92,35,1010.0 -2015,8,12,17,0,346,46.46,35,1010.0 -2015,8,12,17,30,242,49.11,34,1010.0 -2015,8,12,18,0,141,60.76,33,1010.0 -2015,8,12,18,30,54,68.02,31,1010.0 -2015,8,12,19,0,0,74.58,30,1010.0 -2015,8,12,19,30,0,79.01,29,1010.0 -2015,8,12,20,0,0,77.97,29,1010.0 -2015,8,12,20,30,0,82.63,28,1010.0 -2015,8,12,21,0,0,84.65,28,1010.0 -2015,8,12,21,30,0,84.66,28,1010.0 -2015,8,12,22,0,0,86.45,28,1010.0 -2015,8,12,22,30,0,91.64,27,1010.0 -2015,8,12,23,0,0,93.24,27,1010.0 -2015,8,12,23,30,0,93.23,27,1010.0 -2015,8,13,0,0,0,94.62,27,1010.0 -2015,8,13,0,30,0,94.61,27,1010.0 -2015,8,13,1,0,0,95.65,27,1010.0 -2015,8,13,1,30,0,95.64,27,1010.0 -2015,8,13,2,0,0,96.15,27,1010.0 -2015,8,13,2,30,0,100.0,26,1010.0 -2015,8,13,3,0,0,100.0,26,1010.0 -2015,8,13,3,30,0,100.0,26,1010.0 -2015,8,13,4,0,0,100.0,26,1010.0 -2015,8,13,4,30,0,100.0,26,1010.0 -2015,8,13,5,0,0,99.61,26,1010.0 -2015,8,13,5,30,0,99.63,26,1010.0 -2015,8,13,6,0,4,95.2,27,1010.0 -2015,8,13,6,30,38,89.83,28,1010.0 -2015,8,13,7,0,112,76.31,29,1010.0 -2015,8,13,7,30,246,72.06,30,1010.0 -2015,8,13,8,0,170,59.25,31,1010.0 -2015,8,13,8,30,218,56.0,32,1010.0 -2015,8,13,9,0,499,50.27,33,1010.0 -2015,8,13,9,30,662,47.53,34,1010.0 -2015,8,13,10,0,742,44.480000000000004,35,1010.0 -2015,8,13,10,30,810,44.46,35,1010.0 -2015,8,13,11,0,864,42.24,36,1010.0 -2015,8,13,11,30,903,42.22,36,1010.0 -2015,8,13,12,0,936,40.19,37,1010.0 -2015,8,13,12,30,942,40.17,37,1010.0 -2015,8,13,13,0,933,40.53,37,1010.0 -2015,8,13,13,30,906,40.52,37,1010.0 -2015,8,13,14,0,864,40.83,37,1010.0 -2015,8,13,14,30,806,40.81,37,1010.0 -2015,8,13,15,0,735,41.34,37,1010.0 -2015,8,13,15,30,262,43.65,36,1010.0 -2015,8,13,16,0,300,44.47,36,1010.0 -2015,8,13,16,30,387,46.980000000000004,35,1010.0 -2015,8,13,17,0,289,52.09,34,1010.0 -2015,8,13,17,30,201,55.08,33,1010.0 -2015,8,13,18,0,121,64.95,32,1010.0 -2015,8,13,18,30,47,68.74,31,1010.0 -2015,8,13,19,0,0,77.3,30,1010.0 -2015,8,13,19,30,0,81.91,29,1010.0 -2015,8,13,20,0,0,85.25,29,1010.0 -2015,8,13,20,30,0,90.35000000000001,28,1010.0 -2015,8,13,21,0,0,91.99,28,1010.0 -2015,8,13,21,30,0,92.0,28,1010.0 -2015,8,13,22,0,0,91.93,28,1010.0 -2015,8,13,22,30,0,97.45,28,1010.0 -2015,8,13,23,0,0,97.03,28,1010.0 -2015,8,13,23,30,0,97.02,27,1010.0 -2015,8,14,0,0,0,96.44,27,1010.0 -2015,8,14,0,30,0,96.43,27,1010.0 -2015,8,14,1,0,0,95.77,27,1010.0 -2015,8,14,1,30,0,100.0,26,1010.0 -2015,8,14,2,0,0,100.0,26,1010.0 -2015,8,14,2,30,0,100.0,26,1010.0 -2015,8,14,3,0,0,99.51,26,1010.0 -2015,8,14,3,30,0,99.52,26,1010.0 -2015,8,14,4,0,0,98.56,26,1010.0 -2015,8,14,4,30,0,100.0,26,1010.0 -2015,8,14,5,0,0,100.0,26,1010.0 -2015,8,14,5,30,0,100.0,26,1010.0 -2015,8,14,6,0,11,100.0,26,1010.0 -2015,8,14,6,30,82,95.11,27,1010.0 -2015,8,14,7,0,179,86.72,28,1010.0 -2015,8,14,7,30,285,81.86,29,1010.0 -2015,8,14,8,0,394,63.21,31,1010.0 -2015,8,14,8,30,501,59.74,32,1010.0 -2015,8,14,9,0,590,51.85,33,1010.0 -2015,8,14,9,30,681,51.85,33,1010.0 -2015,8,14,10,0,761,46.99,34,1010.0 -2015,8,14,10,30,830,46.980000000000004,34,1010.0 -2015,8,14,11,0,883,43.12,35,1010.0 -2015,8,14,11,30,763,43.1,35,1010.0 -2015,8,14,12,0,779,39.63,36,1010.0 -2015,8,14,12,30,947,39.61,36,1010.0 -2015,8,14,13,0,938,36.36,37,1010.0 -2015,8,14,13,30,911,36.34,37,1010.0 -2015,8,14,14,0,869,35.47,37,1010.0 -2015,8,14,14,30,811,35.46,37,1010.0 -2015,8,14,15,0,740,34.76,37,1010.0 -2015,8,14,15,30,656,36.7,36,1010.0 -2015,8,14,16,0,564,36.34,36,1010.0 -2015,8,14,16,30,462,38.39,35,1010.0 -2015,8,14,17,0,357,42.2,34,1010.0 -2015,8,14,17,30,249,47.2,32,1010.0 -2015,8,14,18,0,147,60.160000000000004,31,1010.0 -2015,8,14,18,30,56,63.7,30,1010.0 -2015,8,14,19,0,0,69.93,29,1010.0 -2015,8,14,19,30,0,74.11,28,1010.0 -2015,8,14,20,0,0,76.8,28,1010.0 -2015,8,14,20,30,0,81.43,27,1010.0 -2015,8,14,21,0,0,84.78,27,1010.0 -2015,8,14,21,30,0,84.79,27,1010.0 -2015,8,14,22,0,0,87.0,27,1010.0 -2015,8,14,22,30,0,92.26,26,1010.0 -2015,8,14,23,0,0,93.16,26,1010.0 -2015,8,14,23,30,0,93.16,26,1010.0 -2015,8,15,0,0,0,92.36,26,1010.0 -2015,8,15,0,30,0,97.98,25,1010.0 -2015,8,15,1,0,0,96.99000000000001,25,1010.0 -2015,8,15,1,30,0,96.99000000000001,25,1010.0 -2015,8,15,2,0,0,97.01,25,1010.0 -2015,8,15,2,30,0,100.0,24,1010.0 -2015,8,15,3,0,0,100.0,24,1010.0 -2015,8,15,3,30,0,100.0,24,1010.0 -2015,8,15,4,0,0,100.0,24,1010.0 -2015,8,15,4,30,0,100.0,24,1010.0 -2015,8,15,5,0,0,100.0,24,1010.0 -2015,8,15,5,30,0,100.0,24,1010.0 -2015,8,15,6,0,9,92.49,25,1010.0 -2015,8,15,6,30,77,87.18,26,1010.0 -2015,8,15,7,0,172,79.37,27,1010.0 -2015,8,15,7,30,276,74.88,28,1010.0 -2015,8,15,8,0,384,59.63,30,1010.0 -2015,8,15,8,30,490,56.33,31,1010.0 -2015,8,15,9,0,590,48.79,32,1010.0 -2015,8,15,9,30,681,46.12,33,1010.0 -2015,8,15,10,0,762,42.12,34,1010.0 -2015,8,15,10,30,830,42.11,34,1010.0 -2015,8,15,11,0,882,39.74,35,1010.0 -2015,8,15,11,30,920,39.72,35,1010.0 -2015,8,15,12,0,933,37.730000000000004,36,1010.0 -2015,8,15,12,30,937,37.71,36,1010.0 -2015,8,15,13,0,635,38.1,36,1010.0 -2015,8,15,13,30,615,38.09,36,1010.0 -2015,8,15,14,0,341,38.81,36,1010.0 -2015,8,15,14,30,505,40.99,35,1010.0 -2015,8,15,15,0,599,42.57,35,1010.0 -2015,8,15,15,30,524,44.980000000000004,34,1010.0 -2015,8,15,16,0,469,49.89,34,1010.0 -2015,8,15,16,30,418,52.78,33,1010.0 -2015,8,15,17,0,341,55.69,32,1010.0 -2015,8,15,17,30,236,58.94,31,1010.0 -2015,8,15,18,0,137,66.64,30,1010.0 -2015,8,15,18,30,50,70.59,29,1010.0 -2015,8,15,19,0,0,79.71000000000001,28,1010.0 -2015,8,15,19,30,0,84.52,27,1010.0 -2015,8,15,20,0,0,88.15,27,1010.0 -2015,8,15,20,30,0,88.17,27,1010.0 -2015,8,15,21,0,0,90.31,27,1010.0 -2015,8,15,21,30,0,95.77,26,1010.0 -2015,8,15,22,0,0,96.47,26,1010.0 -2015,8,15,22,30,0,96.46000000000001,26,1010.0 -2015,8,15,23,0,0,96.29,26,1010.0 -2015,8,15,23,30,0,96.27,26,1010.0 -2015,8,16,0,0,0,95.46000000000001,26,1010.0 -2015,8,16,0,30,0,100.0,26,1010.0 -2015,8,16,1,0,0,100.0,26,1010.0 -2015,8,16,1,30,0,100.0,25,1010.0 -2015,8,16,2,0,0,98.73,25,1010.0 -2015,8,16,2,30,0,98.73,25,1010.0 -2015,8,16,3,0,0,97.67,25,1010.0 -2015,8,16,3,30,0,97.67,25,1010.0 -2015,8,16,4,0,0,97.06,25,1010.0 -2015,8,16,4,30,0,100.0,25,1010.0 -2015,8,16,5,0,0,100.0,25,1010.0 -2015,8,16,5,30,0,100.0,25,1010.0 -2015,8,16,6,0,4,98.7,25,1010.0 -2015,8,16,6,30,43,98.72,25,1010.0 -2015,8,16,7,0,163,93.73,26,1010.0 -2015,8,16,7,30,205,93.73,27,1010.0 -2015,8,16,8,0,287,85.51,28,1010.0 -2015,8,16,8,30,474,80.67,28,1010.0 -2015,8,16,9,0,573,72.19,29,1010.0 -2015,8,16,9,30,663,72.18,29,1010.0 -2015,8,16,10,0,743,65.19,30,1010.0 -2015,8,16,10,30,811,65.17,30,1010.0 -2015,8,16,11,0,865,63.06,31,1010.0 -2015,8,16,11,30,903,63.03,31,1010.0 -2015,8,16,12,0,905,58.11,31,1010.0 -2015,8,16,12,30,512,58.09,31,1010.0 -2015,8,16,13,0,507,57.07,31,1010.0 -2015,8,16,13,30,845,57.050000000000004,31,1010.0 -2015,8,16,14,0,806,56.39,31,1010.0 -2015,8,16,14,30,722,56.38,31,1010.0 -2015,8,16,15,0,658,56.25,31,1010.0 -2015,8,16,15,30,571,56.24,31,1010.0 -2015,8,16,16,0,396,56.83,31,1010.0 -2015,8,16,16,30,203,60.17,30,1010.0 -2015,8,16,17,0,155,66.84,30,1010.0 -2015,8,16,17,30,57,70.82000000000001,29,1010.0 -2015,8,16,18,0,32,77.18,28,1010.0 -2015,8,16,18,30,11,81.82000000000001,27,1010.0 -2015,8,16,19,0,0,88.31,26,1010.0 -2015,8,16,19,30,0,88.34,26,1010.0 -2015,8,16,20,0,0,89.19,26,1010.0 -2015,8,16,20,30,0,89.21000000000001,26,1010.0 -2015,8,16,21,0,0,90.46000000000001,26,1010.0 -2015,8,16,21,30,0,95.98,25,1010.0 -2015,8,16,22,0,0,96.66,25,1010.0 -2015,8,16,22,30,0,96.65,25,1010.0 -2015,8,16,23,0,0,96.66,25,1010.0 -2015,8,16,23,30,0,96.64,25,1010.0 -2015,8,17,0,0,0,96.02,25,1010.0 -2015,8,17,0,30,0,100.0,25,1010.0 -2015,8,17,1,0,0,100.0,25,1010.0 -2015,8,17,1,30,0,100.0,24,1010.0 -2015,8,17,2,0,0,100.0,24,1010.0 -2015,8,17,2,30,0,100.0,24,1010.0 -2015,8,17,3,0,0,99.66,24,1010.0 -2015,8,17,3,30,0,99.66,24,1010.0 -2015,8,17,4,0,0,98.97,24,1010.0 -2015,8,17,4,30,0,98.98,24,1010.0 -2015,8,17,5,0,0,98.33,24,1010.0 -2015,8,17,5,30,0,98.36,24,1010.0 -2015,8,17,6,0,7,100.0,24,1010.0 -2015,8,17,6,30,71,100.0,24,1010.0 -2015,8,17,7,0,162,95.73,25,1010.0 -2015,8,17,7,30,264,90.25,26,1010.0 -2015,8,17,8,0,370,81.32000000000001,27,1010.0 -2015,8,17,8,30,474,81.33,27,1010.0 -2015,8,17,9,0,573,71.36,28,1010.0 -2015,8,17,9,30,664,67.35,29,1010.0 -2015,8,17,10,0,745,60.06,30,1010.0 -2015,8,17,10,30,813,60.050000000000004,30,1010.0 -2015,8,17,11,0,868,54.44,31,1010.0 -2015,8,17,11,30,907,54.42,31,1010.0 -2015,8,17,12,0,939,49.89,32,1010.0 -2015,8,17,12,30,945,49.870000000000005,32,1010.0 -2015,8,17,13,0,701,46.050000000000004,33,1010.0 -2015,8,17,13,30,751,46.04,33,1010.0 -2015,8,17,14,0,784,45.11,33,1010.0 -2015,8,17,14,30,761,45.1,33,1010.0 -2015,8,17,15,0,690,44.88,33,1010.0 -2015,8,17,15,30,649,44.87,33,1010.0 -2015,8,17,16,0,555,45.44,33,1010.0 -2015,8,17,16,30,453,48.06,32,1010.0 -2015,8,17,17,0,348,53.58,31,1010.0 -2015,8,17,17,30,240,56.72,30,1010.0 -2015,8,17,18,0,138,67.3,29,1010.0 -2015,8,17,18,30,50,71.32000000000001,28,1010.0 -2015,8,17,19,0,0,78.3,27,1010.0 -2015,8,17,19,30,0,78.32000000000001,27,1010.0 -2015,8,17,20,0,0,81.57000000000001,27,1010.0 -2015,8,17,20,30,0,86.52,26,1010.0 -2015,8,17,21,0,0,89.59,26,1010.0 -2015,8,17,21,30,0,89.60000000000001,26,1010.0 -2015,8,17,22,0,0,91.35000000000001,26,1010.0 -2015,8,17,22,30,0,91.35000000000001,26,1010.0 -2015,8,17,23,0,0,92.34,26,1010.0 -2015,8,17,23,30,0,97.94,25,1010.0 -2015,8,18,0,0,0,98.38,25,1010.0 -2015,8,18,0,30,0,98.36,25,1010.0 -2015,8,18,1,0,0,98.38,25,1010.0 -2015,8,18,1,30,0,98.36,25,1010.0 -2015,8,18,2,0,0,98.14,25,1010.0 -2015,8,18,2,30,0,98.12,25,1010.0 -2015,8,18,3,0,0,97.87,25,1010.0 -2015,8,18,3,30,0,100.0,25,1010.0 -2015,8,18,4,0,0,100.0,25,1010.0 -2015,8,18,4,30,0,100.0,24,1010.0 -2015,8,18,5,0,0,100.0,24,1010.0 -2015,8,18,5,30,0,97.8,25,1010.0 -2015,8,18,6,0,8,95.33,26,1010.0 -2015,8,18,6,30,72,95.35000000000001,26,1010.0 -2015,8,18,7,0,164,90.47,27,1010.0 -2015,8,18,7,30,268,85.36,28,1010.0 -2015,8,18,8,0,374,77.59,29,1010.0 -2015,8,18,8,30,479,73.26,30,1010.0 -2015,8,18,9,0,581,65.03,31,1010.0 -2015,8,18,9,30,365,65.03,31,1010.0 -2015,8,18,10,0,409,58.370000000000005,32,1010.0 -2015,8,18,10,30,689,58.35,32,1010.0 -2015,8,18,11,0,877,53.52,33,1010.0 -2015,8,18,11,30,915,53.5,33,1010.0 -2015,8,18,12,0,487,49.74,34,1010.0 -2015,8,18,12,30,490,49.71,34,1000.0 -2015,8,18,13,0,725,49.47,34,1000.0 -2015,8,18,13,30,901,49.44,34,1000.0 -2015,8,18,14,0,859,49.79,34,1000.0 -2015,8,18,14,30,801,52.620000000000005,33,1000.0 -2015,8,18,15,0,730,53.35,33,1000.0 -2015,8,18,15,30,545,56.42,32,1000.0 -2015,8,18,16,0,552,57.67,32,1000.0 -2015,8,18,16,30,451,61.03,31,1000.0 -2015,8,18,17,0,345,63.13,31,1000.0 -2015,8,18,17,30,238,66.84,30,1000.0 -2015,8,18,18,0,135,74.24,29,1000.0 -2015,8,18,18,30,48,78.67,28,1000.0 -2015,8,18,19,0,0,82.56,28,1000.0 -2015,8,18,19,30,0,87.54,28,1000.0 -2015,8,18,20,0,0,90.4,28,1000.0 -2015,8,18,20,30,0,90.42,27,1000.0 -2015,8,18,21,0,0,92.2,27,1000.0 -2015,8,18,21,30,0,92.2,27,1000.0 -2015,8,18,22,0,0,93.26,27,1000.0 -2015,8,18,22,30,0,93.25,27,1000.0 -2015,8,18,23,0,0,93.77,27,1000.0 -2015,8,18,23,30,0,93.76,27,1000.0 -2015,8,19,0,0,0,93.89,27,1000.0 -2015,8,19,0,30,0,93.87,27,1000.0 -2015,8,19,1,0,0,93.9,27,1000.0 -2015,8,19,1,30,0,93.9,27,1000.0 -2015,8,19,2,0,0,93.76,27,1000.0 -2015,8,19,2,30,0,99.43,26,1000.0 -2015,8,19,3,0,0,99.39,26,1000.0 -2015,8,19,3,30,0,99.39,26,1000.0 -2015,8,19,4,0,0,99.4,26,1000.0 -2015,8,19,4,30,0,99.41,26,1000.0 -2015,8,19,5,0,0,99.53,26,1000.0 -2015,8,19,5,30,0,99.55,26,1000.0 -2015,8,19,6,0,0,96.0,27,1000.0 -2015,8,19,6,30,50,96.02,27,1000.0 -2015,8,19,7,0,160,92.24,28,1000.0 -2015,8,19,7,30,164,92.25,28,1000.0 -2015,8,19,8,0,258,85.76,29,1010.0 -2015,8,19,8,30,331,85.77,30,1010.0 -2015,8,19,9,0,527,77.99,31,1010.0 -2015,8,19,9,30,663,77.99,31,1010.0 -2015,8,19,10,0,743,71.57000000000001,31,1010.0 -2015,8,19,10,30,139,71.56,31,1010.0 -2015,8,19,11,0,577,70.86,31,1010.0 -2015,8,19,11,30,325,70.83,31,1000.0 -2015,8,19,12,0,590,70.73,31,1000.0 -2015,8,19,12,30,328,70.71000000000001,31,1000.0 -2015,8,19,13,0,170,70.97,31,1000.0 -2015,8,19,13,30,91,75.11,30,1000.0 -2015,8,19,14,0,431,75.3,30,1000.0 -2015,8,19,14,30,514,75.29,30,1000.0 -2015,8,19,15,0,583,75.85000000000001,30,1000.0 -2015,8,19,15,30,206,75.84,30,1000.0 -2015,8,19,16,0,116,77.29,30,1000.0 -2015,8,19,16,30,267,81.86,29,1000.0 -2015,8,19,17,0,300,84.98,29,1000.0 -2015,8,19,17,30,222,90.05,28,1000.0 -2015,8,19,18,0,124,93.61,28,1000.0 -2015,8,19,18,30,40,99.23,27,1000.0 -2015,8,19,19,0,0,100.0,27,1000.0 -2015,8,19,19,30,0,100.0,27,1000.0 -2015,8,19,20,0,0,100.0,27,1000.0 -2015,8,19,20,30,0,100.0,27,1000.0 -2015,8,19,21,0,0,100.0,27,1000.0 -2015,8,19,21,30,0,100.0,27,1010.0 -2015,8,19,22,0,0,100.0,27,1010.0 -2015,8,19,22,30,0,100.0,27,1010.0 -2015,8,19,23,0,0,100.0,27,1010.0 -2015,8,19,23,30,0,100.0,27,1010.0 -2015,8,20,0,0,0,100.0,27,1010.0 -2015,8,20,0,30,0,100.0,27,1010.0 -2015,8,20,1,0,0,100.0,27,1010.0 -2015,8,20,1,30,0,100.0,27,1010.0 -2015,8,20,2,0,0,100.0,27,1010.0 -2015,8,20,2,30,0,100.0,27,1010.0 -2015,8,20,3,0,0,100.0,27,1010.0 -2015,8,20,3,30,0,100.0,27,1010.0 -2015,8,20,4,0,0,100.0,27,1010.0 -2015,8,20,4,30,0,100.0,27,1010.0 -2015,8,20,5,0,0,100.0,27,1010.0 -2015,8,20,5,30,0,100.0,27,1010.0 -2015,8,20,6,0,0,100.0,27,1010.0 -2015,8,20,6,30,23,100.0,27,1010.0 -2015,8,20,7,0,7,98.02,28,1010.0 -2015,8,20,7,30,10,98.04,28,1010.0 -2015,8,20,8,0,23,97.37,28,1010.0 -2015,8,20,8,30,23,97.38,28,1010.0 -2015,8,20,9,0,41,89.8,29,1010.0 -2015,8,20,9,30,47,95.13,29,1010.0 -2015,8,20,10,0,34,93.38,29,1010.0 -2015,8,20,10,30,66,93.34,28,1010.0 -2015,8,20,11,0,90,95.28,28,1010.0 -2015,8,20,11,30,99,95.21000000000001,28,1010.0 -2015,8,20,12,0,150,96.88,28,1010.0 -2015,8,20,12,30,153,96.77,28,1000.0 -2015,8,20,13,0,302,97.79,28,1000.0 -2015,8,20,13,30,272,97.65,28,1000.0 -2015,8,20,14,0,155,97.10000000000001,28,1000.0 -2015,8,20,14,30,207,97.2,28,1000.0 -2015,8,20,15,0,119,96.11,28,1000.0 -2015,8,20,15,30,148,100.0,27,1000.0 -2015,8,20,16,0,122,100.0,27,1000.0 -2015,8,20,16,30,43,100.0,27,1010.0 -2015,8,20,17,0,189,99.34,27,1010.0 -2015,8,20,17,30,108,100.0,26,1010.0 -2015,8,20,18,0,55,100.0,26,1010.0 -2015,8,20,18,30,17,100.0,26,1010.0 -2015,8,20,19,0,0,100.0,26,1010.0 -2015,8,20,19,30,0,100.0,25,1010.0 -2015,8,20,20,0,0,100.0,25,1010.0 -2015,8,20,20,30,0,100.0,25,1010.0 -2015,8,20,21,0,0,100.0,25,1010.0 -2015,8,20,21,30,0,100.0,25,1010.0 -2015,8,20,22,0,0,100.0,25,1010.0 -2015,8,20,22,30,0,100.0,25,1010.0 -2015,8,20,23,0,0,100.0,25,1010.0 -2015,8,20,23,30,0,100.0,25,1010.0 -2015,8,21,0,0,0,100.0,25,1010.0 -2015,8,21,0,30,0,100.0,25,1010.0 -2015,8,21,1,0,0,100.0,25,1010.0 -2015,8,21,1,30,0,100.0,25,1010.0 -2015,8,21,2,0,0,100.0,25,1010.0 -2015,8,21,2,30,0,100.0,25,1010.0 -2015,8,21,3,0,0,100.0,25,1010.0 -2015,8,21,3,30,0,100.0,25,1010.0 -2015,8,21,4,0,0,100.0,25,1010.0 -2015,8,21,4,30,0,100.0,25,1010.0 -2015,8,21,5,0,0,100.0,25,1010.0 -2015,8,21,5,30,0,100.0,25,1010.0 -2015,8,21,6,0,0,100.0,25,1010.0 -2015,8,21,6,30,18,100.0,25,1010.0 -2015,8,21,7,0,34,100.0,26,1010.0 -2015,8,21,7,30,24,100.0,26,1010.0 -2015,8,21,8,0,7,97.35000000000001,27,1010.0 -2015,8,21,8,30,44,97.36,27,1010.0 -2015,8,21,9,0,191,97.02,27,1010.0 -2015,8,21,9,30,288,97.02,27,1010.0 -2015,8,21,10,0,441,94.27,27,1010.0 -2015,8,21,10,30,586,94.25,27,1010.0 -2015,8,21,11,0,722,86.02,28,1010.0 -2015,8,21,11,30,767,86.0,28,1010.0 -2015,8,21,12,0,763,83.96000000000001,28,1010.0 -2015,8,21,12,30,942,83.94,28,1010.0 -2015,8,21,13,0,931,82.13,28,1010.0 -2015,8,21,13,30,903,82.11,28,1010.0 -2015,8,21,14,0,858,81.22,28,1010.0 -2015,8,21,14,30,799,81.21000000000001,28,1010.0 -2015,8,21,15,0,712,81.35000000000001,28,1010.0 -2015,8,21,15,30,627,81.34,28,1010.0 -2015,8,21,16,0,435,83.15,28,1010.0 -2015,8,21,16,30,320,88.13,27,1010.0 -2015,8,21,17,0,6,89.74,27,1010.0 -2015,8,21,17,30,126,95.15,26,1010.0 -2015,8,21,18,0,69,95.7,26,1010.0 -2015,8,21,18,30,21,95.7,26,1010.0 -2015,8,21,19,0,0,94.93,26,1010.0 -2015,8,21,19,30,0,94.95,26,1010.0 -2015,8,21,20,0,0,95.47,26,1010.0 -2015,8,21,20,30,0,95.48,26,1010.0 -2015,8,21,21,0,0,96.26,26,1010.0 -2015,8,21,21,30,0,100.0,25,1010.0 -2015,8,21,22,0,0,100.0,25,1010.0 -2015,8,21,22,30,0,100.0,25,1010.0 -2015,8,21,23,0,0,100.0,25,1010.0 -2015,8,21,23,30,0,100.0,25,1010.0 -2015,8,22,0,0,0,100.0,25,1010.0 -2015,8,22,0,30,0,100.0,25,1010.0 -2015,8,22,1,0,0,100.0,25,1010.0 -2015,8,22,1,30,0,100.0,25,1010.0 -2015,8,22,2,0,0,100.0,25,1010.0 -2015,8,22,2,30,0,100.0,25,1010.0 -2015,8,22,3,0,0,100.0,25,1010.0 -2015,8,22,3,30,0,100.0,25,1010.0 -2015,8,22,4,0,0,100.0,25,1010.0 -2015,8,22,4,30,0,100.0,25,1010.0 -2015,8,22,5,0,0,100.0,25,1010.0 -2015,8,22,5,30,0,100.0,25,1010.0 -2015,8,22,6,0,0,98.81,26,1010.0 -2015,8,22,6,30,67,98.84,26,1010.0 -2015,8,22,7,0,160,98.96000000000001,27,1010.0 -2015,8,22,7,30,264,98.98,28,1010.0 -2015,8,22,8,0,373,94.72,29,1010.0 -2015,8,22,8,30,479,94.73,29,1010.0 -2015,8,22,9,0,486,86.67,29,1010.0 -2015,8,22,9,30,601,86.67,29,1010.0 -2015,8,22,10,0,26,81.31,30,1010.0 -2015,8,22,10,30,51,81.29,30,1010.0 -2015,8,22,11,0,324,80.87,30,1010.0 -2015,8,22,11,30,552,80.85000000000001,30,1010.0 -2015,8,22,12,0,671,75.81,31,1010.0 -2015,8,22,12,30,725,75.79,31,1010.0 -2015,8,22,13,0,837,75.39,31,1010.0 -2015,8,22,13,30,821,79.78,31,1010.0 -2015,8,22,14,0,778,79.65,31,1010.0 -2015,8,22,14,30,784,79.63,30,1010.0 -2015,8,22,15,0,715,79.67,30,1010.0 -2015,8,22,15,30,630,79.66,30,1010.0 -2015,8,22,16,0,504,80.60000000000001,30,1010.0 -2015,8,22,16,30,419,85.37,29,1010.0 -2015,8,22,17,0,317,87.2,29,1010.0 -2015,8,22,17,30,200,92.39,28,1010.0 -2015,8,22,18,0,109,92.86,28,1010.0 -2015,8,22,18,30,33,98.44,27,1010.0 -2015,8,22,19,0,0,97.74000000000001,27,1010.0 -2015,8,22,19,30,0,97.76,27,1010.0 -2015,8,22,20,0,0,97.27,27,1010.0 -2015,8,22,20,30,0,97.28,27,1010.0 -2015,8,22,21,0,0,96.59,27,1010.0 -2015,8,22,21,30,0,100.0,26,1010.0 -2015,8,22,22,0,0,100.0,26,1010.0 -2015,8,22,22,30,0,100.0,26,1010.0 -2015,8,22,23,0,0,100.0,26,1010.0 -2015,8,22,23,30,0,100.0,26,1010.0 -2015,8,23,0,0,0,99.48,26,1010.0 -2015,8,23,0,30,0,100.0,26,1010.0 -2015,8,23,1,0,0,100.0,26,1010.0 -2015,8,23,1,30,0,100.0,25,1010.0 -2015,8,23,2,0,0,100.0,25,1010.0 -2015,8,23,2,30,0,100.0,25,1010.0 -2015,8,23,3,0,0,100.0,25,1010.0 -2015,8,23,3,30,0,100.0,25,1010.0 -2015,8,23,4,0,0,100.0,25,1010.0 -2015,8,23,4,30,0,100.0,25,1010.0 -2015,8,23,5,0,0,100.0,25,1010.0 -2015,8,23,5,30,0,100.0,25,1010.0 -2015,8,23,6,0,0,98.21000000000001,26,1010.0 -2015,8,23,6,30,66,98.23,26,1010.0 -2015,8,23,7,0,160,96.61,27,1010.0 -2015,8,23,7,30,265,96.62,28,1010.0 -2015,8,23,8,0,376,89.35000000000001,29,1010.0 -2015,8,23,8,30,482,89.37,29,1010.0 -2015,8,23,9,0,584,80.59,29,1010.0 -2015,8,23,9,30,676,80.59,29,1010.0 -2015,8,23,10,0,758,74.95,30,1010.0 -2015,8,23,10,30,286,74.94,30,1010.0 -2015,8,23,11,0,880,70.37,31,1010.0 -2015,8,23,11,30,918,70.35000000000001,31,1010.0 -2015,8,23,12,0,937,66.16,32,1010.0 -2015,8,23,12,30,943,66.15,32,1010.0 -2015,8,23,13,0,930,65.84,32,1010.0 -2015,8,23,13,30,901,65.82000000000001,32,1010.0 -2015,8,23,14,0,856,65.56,32,1010.0 -2015,8,23,14,30,796,65.54,32,1010.0 -2015,8,23,15,0,713,65.91,32,1010.0 -2015,8,23,15,30,628,65.89,32,1010.0 -2015,8,23,16,0,533,67.52,32,1010.0 -2015,8,23,16,30,431,71.44,31,1010.0 -2015,8,23,17,0,325,72.78,31,1010.0 -2015,8,23,17,30,218,77.03,30,1010.0 -2015,8,23,18,0,118,86.94,29,1010.0 -2015,8,23,18,30,34,92.12,28,1010.0 -2015,8,23,19,0,0,89.59,28,1010.0 -2015,8,23,19,30,0,94.99,27,1010.0 -2015,8,23,20,0,0,94.92,27,1010.0 -2015,8,23,20,30,0,94.94,27,1010.0 -2015,8,23,21,0,0,95.76,27,1010.0 -2015,8,23,21,30,0,100.0,26,1010.0 -2015,8,23,22,0,0,100.0,26,1010.0 -2015,8,23,22,30,0,100.0,26,1010.0 -2015,8,23,23,0,0,100.0,26,1010.0 -2015,8,23,23,30,0,100.0,26,1010.0 -2015,8,24,0,0,0,100.0,26,1010.0 -2015,8,24,0,30,0,100.0,25,1010.0 -2015,8,24,1,0,0,100.0,25,1010.0 -2015,8,24,1,30,0,100.0,25,1010.0 -2015,8,24,2,0,0,100.0,25,1010.0 -2015,8,24,2,30,0,100.0,25,1010.0 -2015,8,24,3,0,0,100.0,25,1010.0 -2015,8,24,3,30,0,100.0,25,1010.0 -2015,8,24,4,0,0,100.0,25,1010.0 -2015,8,24,4,30,0,100.0,25,1010.0 -2015,8,24,5,0,0,100.0,25,1010.0 -2015,8,24,5,30,0,100.0,25,1010.0 -2015,8,24,6,0,0,100.0,25,1010.0 -2015,8,24,6,30,62,100.0,26,1010.0 -2015,8,24,7,0,153,100.0,27,1010.0 -2015,8,24,7,30,256,96.03,27,1010.0 -2015,8,24,8,0,362,89.01,28,1010.0 -2015,8,24,8,30,467,89.02,28,1010.0 -2015,8,24,9,0,566,78.96000000000001,29,1010.0 -2015,8,24,9,30,658,74.55,30,1010.0 -2015,8,24,10,0,738,66.65,31,1010.0 -2015,8,24,10,30,806,66.63,31,1010.0 -2015,8,24,11,0,859,61.02,32,1010.0 -2015,8,24,11,30,897,61.0,32,1010.0 -2015,8,24,12,0,932,56.88,33,1010.0 -2015,8,24,12,30,937,56.86,33,1010.0 -2015,8,24,13,0,925,53.21,34,1010.0 -2015,8,24,13,30,896,53.19,34,1010.0 -2015,8,24,14,0,591,53.21,34,1010.0 -2015,8,24,14,30,791,53.2,34,1010.0 -2015,8,24,15,0,713,53.94,34,1010.0 -2015,8,24,15,30,517,57.03,34,1010.0 -2015,8,24,16,0,313,58.92,34,1010.0 -2015,8,24,16,30,429,58.92,33,1010.0 -2015,8,24,17,0,322,60.31,33,1010.0 -2015,8,24,17,30,215,63.79,32,1010.0 -2015,8,24,18,0,114,76.13,31,1010.0 -2015,8,24,18,30,32,80.60000000000001,30,1010.0 -2015,8,24,19,0,0,83.03,29,1010.0 -2015,8,24,19,30,0,87.98,28,1010.0 -2015,8,24,20,0,0,86.87,28,1010.0 -2015,8,24,20,30,0,86.88,28,1010.0 -2015,8,24,21,0,0,86.61,28,1010.0 -2015,8,24,21,30,0,91.8,27,1010.0 -2015,8,24,22,0,0,91.78,27,1010.0 -2015,8,24,22,30,0,91.78,27,1010.0 -2015,8,24,23,0,0,91.97,27,1010.0 -2015,8,24,23,30,0,97.53,26,1010.0 -2015,8,25,0,0,0,97.83,26,1010.0 -2015,8,25,0,30,0,97.84,26,1010.0 -2015,8,25,1,0,0,97.97,26,1010.0 -2015,8,25,1,30,0,100.0,25,1010.0 -2015,8,25,2,0,0,100.0,25,1010.0 -2015,8,25,2,30,0,100.0,25,1010.0 -2015,8,25,3,0,0,100.0,25,1010.0 -2015,8,25,3,30,0,100.0,25,1010.0 -2015,8,25,4,0,0,100.0,25,1010.0 -2015,8,25,4,30,0,100.0,25,1010.0 -2015,8,25,5,0,0,100.0,25,1010.0 -2015,8,25,5,30,0,100.0,25,1010.0 -2015,8,25,6,0,0,100.0,26,1010.0 -2015,8,25,6,30,59,98.35000000000001,26,1010.0 -2015,8,25,7,0,150,94.76,27,1010.0 -2015,8,25,7,30,251,89.4,28,1010.0 -2015,8,25,8,0,357,84.17,29,1010.0 -2015,8,25,8,30,461,84.18,29,1010.0 -2015,8,25,9,0,559,75.91,30,1010.0 -2015,8,25,9,30,649,71.71000000000001,31,1010.0 -2015,8,25,10,0,729,64.35,32,1010.0 -2015,8,25,10,30,796,64.34,32,1010.0 -2015,8,25,11,0,588,62.15,32,1010.0 -2015,8,25,11,30,614,62.13,32,1010.0 -2015,8,25,12,0,622,58.03,33,1010.0 -2015,8,25,12,30,114,58.02,33,1010.0 -2015,8,25,13,0,53,57.51,33,1010.0 -2015,8,25,13,30,138,57.480000000000004,33,1010.0 -2015,8,25,14,0,138,57.09,33,1010.0 -2015,8,25,14,30,136,60.370000000000005,33,1010.0 -2015,8,25,15,0,153,61.410000000000004,33,1010.0 -2015,8,25,15,30,326,61.410000000000004,32,1010.0 -2015,8,25,16,0,285,63.33,32,1010.0 -2015,8,25,16,30,225,67.02,31,1010.0 -2015,8,25,17,0,246,69.85000000000001,31,1010.0 -2015,8,25,17,30,157,73.95,30,1010.0 -2015,8,25,18,0,82,83.11,29,1010.0 -2015,8,25,18,30,21,88.05,28,1010.0 -2015,8,25,19,0,0,94.77,27,1010.0 -2015,8,25,19,30,0,100.0,26,1010.0 -2015,8,25,20,0,0,100.0,26,1010.0 -2015,8,25,20,30,0,100.0,26,1010.0 -2015,8,25,21,0,0,100.0,26,1010.0 -2015,8,25,21,30,0,100.0,26,1010.0 -2015,8,25,22,0,0,100.0,26,1010.0 -2015,8,25,22,30,0,100.0,25,1010.0 -2015,8,25,23,0,0,100.0,25,1010.0 -2015,8,25,23,30,0,100.0,25,1010.0 -2015,8,26,0,0,0,100.0,25,1010.0 -2015,8,26,0,30,0,100.0,25,1010.0 -2015,8,26,1,0,0,100.0,25,1010.0 -2015,8,26,1,30,0,100.0,24,1010.0 -2015,8,26,2,0,0,100.0,24,1010.0 -2015,8,26,2,30,0,100.0,24,1010.0 -2015,8,26,3,0,0,100.0,24,1010.0 -2015,8,26,3,30,0,100.0,23,1010.0 -2015,8,26,4,0,0,100.0,23,1010.0 -2015,8,26,4,30,0,100.0,23,1010.0 -2015,8,26,5,0,0,100.0,23,1010.0 -2015,8,26,5,30,0,100.0,23,1010.0 -2015,8,26,6,0,0,98.19,23,1010.0 -2015,8,26,6,30,61,98.22,23,1010.0 -2015,8,26,7,0,156,97.19,23,1010.0 -2015,8,26,7,30,262,91.55,24,1010.0 -2015,8,26,8,0,374,81.18,25,1010.0 -2015,8,26,8,30,482,76.52,26,1010.0 -2015,8,26,9,0,588,63.09,27,1010.0 -2015,8,26,9,30,470,59.52,28,1010.0 -2015,8,26,10,0,529,51.86,29,1010.0 -2015,8,26,10,30,835,51.85,29,1010.0 -2015,8,26,11,0,890,47.45,30,1010.0 -2015,8,26,11,30,928,47.43,30,1010.0 -2015,8,26,12,0,941,44.19,31,1010.0 -2015,8,26,12,30,945,44.17,31,1010.0 -2015,8,26,13,0,933,43.95,31,1010.0 -2015,8,26,13,30,903,43.93,31,1010.0 -2015,8,26,14,0,858,44.02,31,1010.0 -2015,8,26,14,30,796,44.01,31,1010.0 -2015,8,26,15,0,719,44.35,31,1010.0 -2015,8,26,15,30,631,44.34,31,1010.0 -2015,8,26,16,0,537,45.29,31,1010.0 -2015,8,26,16,30,432,47.95,30,1010.0 -2015,8,26,17,0,325,48.58,30,1010.0 -2015,8,26,17,30,215,54.51,28,1010.0 -2015,8,26,18,0,113,67.68,27,1010.0 -2015,8,26,18,30,28,71.77,26,1010.0 -2015,8,26,19,0,0,73.97,25,1010.0 -2015,8,26,19,30,0,78.53,25,1010.0 -2015,8,26,20,0,0,76.63,25,1010.0 -2015,8,26,20,30,0,76.64,24,1010.0 -2015,8,26,21,0,0,74.49,24,1010.0 -2015,8,26,21,30,0,74.49,24,1010.0 -2015,8,26,22,0,0,73.39,24,1010.0 -2015,8,26,22,30,0,77.92,23,1010.0 -2015,8,26,23,0,0,78.31,23,1010.0 -2015,8,26,23,30,0,83.18,22,1010.0 -2015,8,27,0,0,0,83.69,22,1010.0 -2015,8,27,0,30,0,83.69,22,1010.0 -2015,8,27,1,0,0,83.77,22,1010.0 -2015,8,27,1,30,0,89.03,21,1010.0 -2015,8,27,2,0,0,88.88,21,1010.0 -2015,8,27,2,30,0,88.88,21,1010.0 -2015,8,27,3,0,0,88.63,21,1010.0 -2015,8,27,3,30,0,94.24,20,1010.0 -2015,8,27,4,0,0,94.01,20,1010.0 -2015,8,27,4,30,0,94.02,20,1010.0 -2015,8,27,5,0,0,94.29,20,1010.0 -2015,8,27,5,30,0,94.31,20,1010.0 -2015,8,27,6,0,0,91.59,21,1010.0 -2015,8,27,6,30,63,86.2,22,1010.0 -2015,8,27,7,0,158,83.15,23,1010.0 -2015,8,27,7,30,266,78.31,24,1010.0 -2015,8,27,8,0,375,69.9,26,1010.0 -2015,8,27,8,30,484,65.92,27,1010.0 -2015,8,27,9,0,585,56.410000000000004,28,1010.0 -2015,8,27,9,30,678,53.230000000000004,29,1010.0 -2015,8,27,10,0,663,48.21,30,1010.0 -2015,8,27,10,30,828,48.19,30,1010.0 -2015,8,27,11,0,880,44.9,31,1010.0 -2015,8,27,11,30,918,44.88,31,1010.0 -2015,8,27,12,0,925,41.99,32,1010.0 -2015,8,27,12,30,870,41.97,32,1010.0 -2015,8,27,13,0,857,41.51,32,1010.0 -2015,8,27,13,30,829,41.49,32,1010.0 -2015,8,27,14,0,838,41.08,33,1010.0 -2015,8,27,14,30,777,41.07,32,1010.0 -2015,8,27,15,0,580,41.43,32,1010.0 -2015,8,27,15,30,499,41.42,32,1010.0 -2015,8,27,16,0,466,42.83,32,1010.0 -2015,8,27,16,30,372,45.32,31,1010.0 -2015,8,27,17,0,292,45.61,31,1010.0 -2015,8,27,17,30,191,51.14,29,1010.0 -2015,8,27,18,0,100,65.25,28,1010.0 -2015,8,27,18,30,21,69.18,27,1010.0 -2015,8,27,19,0,0,71.43,26,1010.0 -2015,8,27,19,30,0,75.81,25,1010.0 -2015,8,27,20,0,0,75.2,25,1010.0 -2015,8,27,20,30,0,79.82000000000001,24,1010.0 -2015,8,27,21,0,0,79.85000000000001,24,1010.0 -2015,8,27,21,30,0,79.84,24,1010.0 -2015,8,27,22,0,0,79.94,24,1010.0 -2015,8,27,22,30,0,84.88,24,1010.0 -2015,8,27,23,0,0,84.77,24,1010.0 -2015,8,27,23,30,0,84.76,23,1010.0 -2015,8,28,0,0,0,84.53,23,1010.0 -2015,8,28,0,30,0,84.51,23,1010.0 -2015,8,28,1,0,0,84.34,23,1010.0 -2015,8,28,1,30,0,89.58,22,1010.0 -2015,8,28,2,0,0,89.8,22,1010.0 -2015,8,28,2,30,0,89.79,22,1010.0 -2015,8,28,3,0,0,90.2,22,1010.0 -2015,8,28,3,30,0,95.87,21,1010.0 -2015,8,28,4,0,0,96.68,21,1010.0 -2015,8,28,4,30,0,96.7,21,1010.0 -2015,8,28,5,0,0,97.86,21,1010.0 -2015,8,28,5,30,0,97.89,21,1010.0 -2015,8,28,6,0,0,96.06,22,1010.0 -2015,8,28,6,30,44,96.09,22,1010.0 -2015,8,28,7,0,131,92.11,23,1010.0 -2015,8,28,7,30,231,86.75,24,1010.0 -2015,8,28,8,0,336,77.49,26,1010.0 -2015,8,28,8,30,438,73.08,27,1010.0 -2015,8,28,9,0,538,65.16,28,1010.0 -2015,8,28,9,30,628,61.49,29,1010.0 -2015,8,28,10,0,709,55.39,30,1010.0 -2015,8,28,10,30,776,55.38,30,1010.0 -2015,8,28,11,0,830,51.9,31,1010.0 -2015,8,28,11,30,869,51.88,31,1010.0 -2015,8,28,12,0,914,48.870000000000005,32,1010.0 -2015,8,28,12,30,919,48.85,32,1010.0 -2015,8,28,13,0,907,48.44,32,1010.0 -2015,8,28,13,30,877,48.42,32,1010.0 -2015,8,28,14,0,832,45.52,33,1010.0 -2015,8,28,14,30,575,48.13,32,1010.0 -2015,8,28,15,0,683,48.03,32,1010.0 -2015,8,28,15,30,430,50.82,31,1010.0 -2015,8,28,16,0,504,51.370000000000005,31,1010.0 -2015,8,28,16,30,401,54.39,30,1010.0 -2015,8,28,17,0,297,57.84,30,1010.0 -2015,8,28,17,30,192,64.91,28,1010.0 -2015,8,28,18,0,95,73.60000000000001,27,1010.0 -2015,8,28,18,30,18,78.07000000000001,26,1010.0 -2015,8,28,19,0,0,79.42,25,1010.0 -2015,8,28,19,30,0,79.45,25,1010.0 -2015,8,28,20,0,0,79.08,25,1010.0 -2015,8,28,20,30,0,83.96000000000001,24,1010.0 -2015,8,28,21,0,0,84.32000000000001,24,1010.0 -2015,8,28,21,30,0,84.32000000000001,24,1010.0 -2015,8,28,22,0,0,84.29,24,1010.0 -2015,8,28,22,30,0,89.51,23,1010.0 -2015,8,28,23,0,0,88.79,23,1010.0 -2015,8,28,23,30,0,88.79,23,1010.0 -2015,8,29,0,0,0,87.61,23,1010.0 -2015,8,29,0,30,0,93.06,22,1010.0 -2015,8,29,1,0,0,91.46000000000001,22,1010.0 -2015,8,29,1,30,0,91.46000000000001,22,1010.0 -2015,8,29,2,0,0,89.78,22,1010.0 -2015,8,29,2,30,0,89.78,22,1010.0 -2015,8,29,3,0,0,88.12,22,1010.0 -2015,8,29,3,30,0,88.12,22,1010.0 -2015,8,29,4,0,0,87.2,22,1010.0 -2015,8,29,4,30,0,87.2,22,1010.0 -2015,8,29,5,0,0,86.9,22,1010.0 -2015,8,29,5,30,0,86.91,22,1010.0 -2015,8,29,6,0,0,85.95,23,1010.0 -2015,8,29,6,30,62,80.96000000000001,24,1010.0 -2015,8,29,7,0,158,77.15,25,1010.0 -2015,8,29,7,30,266,72.74,26,1010.0 -2015,8,29,8,0,377,63.36,27,1010.0 -2015,8,29,8,30,485,59.78,28,1010.0 -2015,8,29,9,0,586,54.7,29,1010.0 -2015,8,29,9,30,680,54.7,29,1010.0 -2015,8,29,10,0,762,50.64,30,1010.0 -2015,8,29,10,30,831,50.63,30,1010.0 -2015,8,29,11,0,885,47.03,31,1010.0 -2015,8,29,11,30,924,47.01,31,1010.0 -2015,8,29,12,0,949,43.89,32,1010.0 -2015,8,29,12,30,953,43.88,32,1010.0 -2015,8,29,13,0,941,43.17,32,1010.0 -2015,8,29,13,30,911,43.160000000000004,32,1010.0 -2015,8,29,14,0,865,42.550000000000004,32,1010.0 -2015,8,29,14,30,803,42.53,32,1010.0 -2015,8,29,15,0,726,42.49,32,1010.0 -2015,8,29,15,30,637,44.95,31,1010.0 -2015,8,29,16,0,539,45.57,31,1010.0 -2015,8,29,16,30,426,48.25,30,1010.0 -2015,8,29,17,0,322,54.660000000000004,29,1010.0 -2015,8,29,17,30,211,61.39,27,1010.0 -2015,8,29,18,0,107,70.62,26,1010.0 -2015,8,29,18,30,24,74.94,25,1010.0 -2015,8,29,19,0,0,74.04,25,1010.0 -2015,8,29,19,30,0,78.61,25,1010.0 -2015,8,29,20,0,0,79.44,25,1010.0 -2015,8,29,20,30,0,79.45,24,1010.0 -2015,8,29,21,0,0,80.05,24,1010.0 -2015,8,29,21,30,0,80.05,24,1010.0 -2015,8,29,22,0,0,80.04,24,1010.0 -2015,8,29,22,30,0,80.04,24,1010.0 -2015,8,29,23,0,0,80.21000000000001,24,1010.0 -2015,8,29,23,30,0,85.18,23,1010.0 -2015,8,30,0,0,0,85.3,23,1010.0 -2015,8,30,0,30,0,85.29,23,1010.0 -2015,8,30,1,0,0,85.02,23,1010.0 -2015,8,30,1,30,0,85.02,23,1010.0 -2015,8,30,2,0,0,84.5,23,1010.0 -2015,8,30,2,30,0,84.5,23,1010.0 -2015,8,30,3,0,0,84.22,23,1010.0 -2015,8,30,3,30,0,84.22,23,1010.0 -2015,8,30,4,0,0,83.83,23,1010.0 -2015,8,30,4,30,0,83.84,23,1010.0 -2015,8,30,5,0,0,83.58,23,1010.0 -2015,8,30,5,30,0,83.60000000000001,23,1010.0 -2015,8,30,6,0,0,87.57000000000001,23,1010.0 -2015,8,30,6,30,43,87.59,23,1010.0 -2015,8,30,7,0,37,81.78,24,1010.0 -2015,8,30,7,30,117,77.06,25,1010.0 -2015,8,30,8,0,243,69.57000000000001,26,1010.0 -2015,8,30,8,30,430,65.61,27,1010.0 -2015,8,30,9,0,523,57.13,28,1010.0 -2015,8,30,9,30,532,57.13,28,1010.0 -2015,8,30,10,0,541,51.660000000000004,29,1010.0 -2015,8,30,10,30,650,51.65,29,1010.0 -2015,8,30,11,0,668,50.31,29,1010.0 -2015,8,30,11,30,698,50.29,29,1010.0 -2015,8,30,12,0,784,46.53,30,1010.0 -2015,8,30,12,30,834,46.51,30,1010.0 -2015,8,30,13,0,842,46.02,31,1010.0 -2015,8,30,13,30,666,46.01,31,1010.0 -2015,8,30,14,0,559,43.11,31,1010.0 -2015,8,30,14,30,408,43.1,31,1010.0 -2015,8,30,15,0,586,43.26,31,1010.0 -2015,8,30,15,30,542,45.78,30,1010.0 -2015,8,30,16,0,405,46.59,30,1010.0 -2015,8,30,16,30,349,49.34,29,1010.0 -2015,8,30,17,0,256,53.22,29,1010.0 -2015,8,30,17,30,165,59.77,27,1010.0 -2015,8,30,18,0,81,73.21000000000001,26,1010.0 -2015,8,30,18,30,15,77.69,25,1010.0 -2015,8,30,19,0,0,81.25,24,1010.0 -2015,8,30,19,30,0,81.28,24,1010.0 -2015,8,30,20,0,0,82.48,24,1010.0 -2015,8,30,20,30,0,82.49,24,1010.0 -2015,8,30,21,0,0,84.68,24,1010.0 -2015,8,30,21,30,0,89.92,23,1010.0 -2015,8,30,22,0,0,91.92,23,1010.0 -2015,8,30,22,30,0,91.91,23,1010.0 -2015,8,30,23,0,0,93.49,23,1010.0 -2015,8,30,23,30,0,93.49,23,1010.0 -2015,8,31,0,0,0,94.67,23,1010.0 -2015,8,31,0,30,0,94.66,23,1010.0 -2015,8,31,1,0,0,95.51,23,1010.0 -2015,8,31,1,30,0,95.5,23,1010.0 -2015,8,31,2,0,0,96.21000000000001,23,1010.0 -2015,8,31,2,30,0,96.21000000000001,23,1010.0 -2015,8,31,3,0,0,91.12,24,1010.0 -2015,8,31,3,30,0,91.12,24,1010.0 -2015,8,31,4,0,0,91.54,24,1010.0 -2015,8,31,4,30,0,91.56,24,1010.0 -2015,8,31,5,0,0,91.65,24,1010.0 -2015,8,31,5,30,0,91.66,24,1010.0 -2015,8,31,6,0,0,93.85000000000001,24,1010.0 -2015,8,31,6,30,38,93.87,24,1010.0 -2015,8,31,7,0,129,93.08,25,1010.0 -2015,8,31,7,30,220,87.75,26,1010.0 -2015,8,31,8,0,313,80.83,27,1010.0 -2015,8,31,8,30,471,80.85000000000001,27,1010.0 -2015,8,31,9,0,573,75.13,28,1010.0 -2015,8,31,9,30,558,75.13,28,1010.0 -2015,8,31,10,0,319,69.56,29,1010.0 -2015,8,31,10,30,121,69.55,29,1010.0 -2015,8,31,11,0,116,64.65,30,1010.0 -2015,8,31,11,30,156,64.63,30,1010.0 -2015,8,31,12,0,215,63.800000000000004,30,1010.0 -2015,8,31,12,30,166,63.77,30,1010.0 -2015,8,31,13,0,264,63.36,30,1010.0 -2015,8,31,13,30,159,63.34,30,1010.0 -2015,8,31,14,0,505,63.77,30,1010.0 -2015,8,31,14,30,403,67.52,29,1010.0 -2015,8,31,15,0,540,69.03,29,1010.0 -2015,8,31,15,30,487,69.03,29,1010.0 -2015,8,31,16,0,317,71.5,29,1010.0 -2015,8,31,16,30,365,75.76,28,1010.0 -2015,8,31,17,0,290,79.41,28,1010.0 -2015,8,31,17,30,78,84.17,27,1010.0 -2015,8,31,18,0,38,92.44,26,1010.0 -2015,8,31,18,30,7,98.09,25,1010.0 -2015,8,31,19,0,0,98.94,25,1010.0 -2015,8,31,19,30,0,98.96000000000001,25,1010.0 -2015,8,31,20,0,0,99.3,25,1010.0 -2015,8,31,20,30,0,99.31,25,1010.0 -2015,8,31,21,0,0,99.01,25,1010.0 -2015,8,31,21,30,0,100.0,24,1010.0 -2015,8,31,22,0,0,100.0,24,1010.0 -2015,8,31,22,30,0,100.0,24,1010.0 -2015,8,31,23,0,0,100.0,24,1010.0 -2015,8,31,23,30,0,100.0,24,1010.0 -2015,9,1,0,0,0,100.0,24,1010.0 -2015,9,1,0,30,0,100.0,24,1010.0 -2015,9,1,1,0,0,100.0,24,1010.0 -2015,9,1,1,30,0,100.0,24,1010.0 -2015,9,1,2,0,0,100.0,24,1010.0 -2015,9,1,2,30,0,100.0,24,1010.0 -2015,9,1,3,0,0,99.33,24,1010.0 -2015,9,1,3,30,0,99.33,24,1010.0 -2015,9,1,4,0,0,98.72,24,1010.0 -2015,9,1,4,30,0,98.73,24,1010.0 -2015,9,1,5,0,0,98.09,24,1010.0 -2015,9,1,5,30,0,98.11,24,1010.0 -2015,9,1,6,0,0,99.26,24,1010.0 -2015,9,1,6,30,17,99.28,24,1010.0 -2015,9,1,7,0,18,97.99000000000001,25,1010.0 -2015,9,1,7,30,76,98.01,25,1010.0 -2015,9,1,8,0,54,92.14,26,1010.0 -2015,9,1,8,30,107,92.16,26,1010.0 -2015,9,1,9,0,100,85.87,27,1010.0 -2015,9,1,9,30,93,85.87,27,1010.0 -2015,9,1,10,0,43,83.55,27,1010.0 -2015,9,1,10,30,93,83.54,27,1010.0 -2015,9,1,11,0,126,81.44,27,1010.0 -2015,9,1,11,30,372,81.41,27,1010.0 -2015,9,1,12,0,560,80.61,27,1010.0 -2015,9,1,12,30,649,80.58,27,1010.0 -2015,9,1,13,0,536,80.59,27,1010.0 -2015,9,1,13,30,492,85.44,26,1010.0 -2015,9,1,14,0,295,85.61,26,1010.0 -2015,9,1,14,30,272,85.60000000000001,26,1010.0 -2015,9,1,15,0,246,85.18,26,1010.0 -2015,9,1,15,30,253,90.36,25,1010.0 -2015,9,1,16,0,223,90.34,25,1010.0 -2015,9,1,16,30,151,90.34,25,1010.0 -2015,9,1,17,0,192,91.21000000000001,25,1010.0 -2015,9,1,17,30,152,96.82000000000001,24,1010.0 -2015,9,1,18,0,73,96.75,24,1010.0 -2015,9,1,18,30,13,100.0,23,1010.0 -2015,9,1,19,0,0,100.0,23,1010.0 -2015,9,1,19,30,0,100.0,23,1010.0 -2015,9,1,20,0,0,100.0,23,1010.0 -2015,9,1,20,30,0,100.0,23,1010.0 -2015,9,1,21,0,0,99.93,23,1010.0 -2015,9,1,21,30,0,99.92,23,1010.0 -2015,9,1,22,0,0,98.8,23,1010.0 -2015,9,1,22,30,0,98.79,23,1010.0 -2015,9,1,23,0,0,97.96000000000001,23,1010.0 -2015,9,1,23,30,0,100.0,22,1010.0 -2015,9,2,0,0,0,100.0,22,1010.0 -2015,9,2,0,30,0,100.0,22,1010.0 -2015,9,2,1,0,0,100.0,22,1010.0 -2015,9,2,1,30,0,100.0,22,1010.0 -2015,9,2,2,0,0,100.0,22,1010.0 -2015,9,2,2,30,0,100.0,22,1010.0 -2015,9,2,3,0,0,100.0,22,1010.0 -2015,9,2,3,30,0,100.0,22,1010.0 -2015,9,2,4,0,0,100.0,22,1010.0 -2015,9,2,4,30,0,100.0,22,1010.0 -2015,9,2,5,0,0,100.0,22,1010.0 -2015,9,2,5,30,0,100.0,22,1010.0 -2015,9,2,6,0,0,100.0,23,1010.0 -2015,9,2,6,30,53,100.0,23,1010.0 -2015,9,2,7,0,144,100.0,24,1010.0 -2015,9,2,7,30,248,94.93,25,1010.0 -2015,9,2,8,0,355,91.98,26,1010.0 -2015,9,2,8,30,461,91.98,26,1010.0 -2015,9,2,9,0,560,84.34,27,1010.0 -2015,9,2,9,30,650,84.33,27,1010.0 -2015,9,2,10,0,728,77.51,28,1010.0 -2015,9,2,10,30,795,77.48,28,1010.0 -2015,9,2,11,0,846,72.44,29,1010.0 -2015,9,2,11,30,883,72.41,29,1010.0 -2015,9,2,12,0,907,72.5,29,1010.0 -2015,9,2,12,30,910,72.47,29,1010.0 -2015,9,2,13,0,897,73.12,29,1010.0 -2015,9,2,13,30,867,73.09,29,1010.0 -2015,9,2,14,0,823,73.62,29,1010.0 -2015,9,2,14,30,762,73.60000000000001,29,1010.0 -2015,9,2,15,0,674,73.87,29,1010.0 -2015,9,2,15,30,587,78.26,28,1010.0 -2015,9,2,16,0,496,78.41,28,1010.0 -2015,9,2,16,30,393,83.11,27,1010.0 -2015,9,2,17,0,289,84.17,27,1010.0 -2015,9,2,17,30,183,89.26,26,1010.0 -2015,9,2,18,0,87,91.0,26,1010.0 -2015,9,2,18,30,14,96.55,25,1010.0 -2015,9,2,19,0,0,96.24000000000001,25,1010.0 -2015,9,2,19,30,0,96.25,25,1010.0 -2015,9,2,20,0,0,95.83,25,1010.0 -2015,9,2,20,30,0,100.0,24,1010.0 -2015,9,2,21,0,0,100.0,24,1010.0 -2015,9,2,21,30,0,100.0,24,1010.0 -2015,9,2,22,0,0,100.0,24,1010.0 -2015,9,2,22,30,0,100.0,24,1010.0 -2015,9,2,23,0,0,99.99000000000001,24,1010.0 -2015,9,2,23,30,0,99.98,24,1010.0 -2015,9,3,0,0,0,99.52,24,1010.0 -2015,9,3,0,30,0,99.51,24,1010.0 -2015,9,3,1,0,0,99.04,24,1010.0 -2015,9,3,1,30,0,99.03,24,1010.0 -2015,9,3,2,0,0,98.83,24,1010.0 -2015,9,3,2,30,0,98.82000000000001,24,1010.0 -2015,9,3,3,0,0,98.73,24,1010.0 -2015,9,3,3,30,0,98.72,24,1010.0 -2015,9,3,4,0,0,98.60000000000001,24,1010.0 -2015,9,3,4,30,0,98.61,24,1010.0 -2015,9,3,5,0,0,98.23,24,1010.0 -2015,9,3,5,30,0,98.25,24,1010.0 -2015,9,3,6,0,0,100.0,24,1010.0 -2015,9,3,6,30,51,96.0,25,1010.0 -2015,9,3,7,0,141,94.46000000000001,26,1010.0 -2015,9,3,7,30,245,94.47,26,1010.0 -2015,9,3,8,0,354,89.46000000000001,27,1010.0 -2015,9,3,8,30,460,84.4,28,1010.0 -2015,9,3,9,0,183,78.18,29,1010.0 -2015,9,3,9,30,298,78.17,29,1010.0 -2015,9,3,10,0,111,73.06,30,1010.0 -2015,9,3,10,30,252,73.03,30,1010.0 -2015,9,3,11,0,515,72.55,31,1010.0 -2015,9,3,11,30,893,72.52,31,1010.0 -2015,9,3,12,0,895,68.13,31,1010.0 -2015,9,3,12,30,898,68.11,31,1010.0 -2015,9,3,13,0,886,67.66,31,1010.0 -2015,9,3,13,30,855,67.64,31,1010.0 -2015,9,3,14,0,810,67.29,31,1010.0 -2015,9,3,14,30,749,67.27,31,1000.0 -2015,9,3,15,0,675,67.02,31,1000.0 -2015,9,3,15,30,254,70.93,30,1000.0 -2015,9,3,16,0,367,70.99,30,1000.0 -2015,9,3,16,30,390,75.18,29,1000.0 -2015,9,3,17,0,286,76.39,29,1000.0 -2015,9,3,17,30,180,80.95,28,1000.0 -2015,9,3,18,0,83,88.22,27,1000.0 -2015,9,3,18,30,12,93.58,26,1000.0 -2015,9,3,19,0,0,93.84,26,1010.0 -2015,9,3,19,30,0,93.87,26,1010.0 -2015,9,3,20,0,0,94.13,26,1010.0 -2015,9,3,20,30,0,99.87,25,1010.0 -2015,9,3,21,0,0,100.0,25,1010.0 -2015,9,3,21,30,0,100.0,25,1010.0 -2015,9,3,22,0,0,99.92,25,1010.0 -2015,9,3,22,30,0,99.91,25,1010.0 -2015,9,3,23,0,0,99.9,25,1010.0 -2015,9,3,23,30,0,99.89,25,1010.0 -2015,9,4,0,0,0,99.86,25,1010.0 -2015,9,4,0,30,0,99.85000000000001,25,1010.0 -2015,9,4,1,0,0,99.68,25,1010.0 -2015,9,4,1,30,0,100.0,25,1010.0 -2015,9,4,2,0,0,100.0,25,1010.0 -2015,9,4,2,30,0,100.0,25,1010.0 -2015,9,4,3,0,0,99.18,25,1010.0 -2015,9,4,3,30,0,99.19,25,1010.0 -2015,9,4,4,0,0,98.89,25,1010.0 -2015,9,4,4,30,0,98.91,25,1010.0 -2015,9,4,5,0,0,98.51,25,1010.0 -2015,9,4,5,30,0,98.54,25,1010.0 -2015,9,4,6,0,0,100.0,26,1010.0 -2015,9,4,6,30,53,96.04,27,1010.0 -2015,9,4,7,0,146,94.12,28,1010.0 -2015,9,4,7,30,252,88.8,28,1010.0 -2015,9,4,8,0,191,80.29,29,1010.0 -2015,9,4,8,30,468,80.29,29,1010.0 -2015,9,4,9,0,568,73.99,30,1010.0 -2015,9,4,9,30,659,73.99,30,1010.0 -2015,9,4,10,0,737,69.47,31,1010.0 -2015,9,4,10,30,804,69.46000000000001,31,1010.0 -2015,9,4,11,0,856,69.31,32,1010.0 -2015,9,4,11,30,122,69.29,32,1010.0 -2015,9,4,12,0,719,65.2,32,1010.0 -2015,9,4,12,30,916,65.18,32,1010.0 -2015,9,4,13,0,901,64.86,32,1010.0 -2015,9,4,13,30,870,64.84,32,1010.0 -2015,9,4,14,0,646,64.81,32,1010.0 -2015,9,4,14,30,580,68.57000000000001,31,1010.0 -2015,9,4,15,0,536,68.99,31,1010.0 -2015,9,4,15,30,497,73.03,31,1010.0 -2015,9,4,16,0,416,73.86,31,1010.0 -2015,9,4,16,30,273,78.23,30,1010.0 -2015,9,4,17,0,199,80.41,29,1010.0 -2015,9,4,17,30,180,85.2,28,1010.0 -2015,9,4,18,0,82,88.43,28,1010.0 -2015,9,4,18,30,11,93.75,27,1010.0 -2015,9,4,19,0,0,93.63,27,1010.0 -2015,9,4,19,30,0,99.32000000000001,26,1010.0 -2015,9,4,20,0,0,99.47,26,1010.0 -2015,9,4,20,30,0,99.48,26,1010.0 -2015,9,4,21,0,0,99.34,26,1010.0 -2015,9,4,21,30,0,99.34,26,1010.0 -2015,9,4,22,0,0,98.78,26,1010.0 -2015,9,4,22,30,0,100.0,25,1010.0 -2015,9,4,23,0,0,100.0,25,1010.0 -2015,9,4,23,30,0,100.0,25,1010.0 -2015,9,5,0,0,0,100.0,25,1010.0 -2015,9,5,0,30,0,100.0,25,1010.0 -2015,9,5,1,0,0,100.0,25,1010.0 -2015,9,5,1,30,0,100.0,25,1010.0 -2015,9,5,2,0,0,100.0,25,1010.0 -2015,9,5,2,30,0,100.0,25,1010.0 -2015,9,5,3,0,0,100.0,25,1010.0 -2015,9,5,3,30,0,100.0,25,1010.0 -2015,9,5,4,0,0,100.0,25,1010.0 -2015,9,5,4,30,0,100.0,25,1010.0 -2015,9,5,5,0,0,100.0,25,1010.0 -2015,9,5,5,30,0,100.0,25,1010.0 -2015,9,5,6,0,0,98.79,26,1010.0 -2015,9,5,6,30,48,98.81,27,1010.0 -2015,9,5,7,0,138,98.12,28,1010.0 -2015,9,5,7,30,242,92.58,28,1010.0 -2015,9,5,8,0,351,85.13,29,1010.0 -2015,9,5,8,30,457,85.13,29,1010.0 -2015,9,5,9,0,556,77.66,30,1010.0 -2015,9,5,9,30,465,77.66,30,1010.0 -2015,9,5,10,0,727,72.75,31,1010.0 -2015,9,5,10,30,794,72.73,31,1010.0 -2015,9,5,11,0,769,68.16,32,1010.0 -2015,9,5,11,30,808,68.13,32,1010.0 -2015,9,5,12,0,288,67.79,32,1010.0 -2015,9,5,12,30,751,67.76,32,1010.0 -2015,9,5,13,0,481,67.77,32,1010.0 -2015,9,5,13,30,525,67.75,32,1010.0 -2015,9,5,14,0,807,67.67,32,1010.0 -2015,9,5,14,30,705,67.66,32,1010.0 -2015,9,5,15,0,669,67.39,32,1010.0 -2015,9,5,15,30,582,71.3,31,1010.0 -2015,9,5,16,0,485,71.33,31,1010.0 -2015,9,5,16,30,381,75.51,30,1010.0 -2015,9,5,17,0,275,77.82000000000001,30,1010.0 -2015,9,5,17,30,170,82.42,29,1010.0 -2015,9,5,18,0,75,90.9,28,1010.0 -2015,9,5,18,30,8,96.36,27,1010.0 -2015,9,5,19,0,0,95.51,27,1010.0 -2015,9,5,19,30,0,95.53,27,1010.0 -2015,9,5,20,0,0,95.60000000000001,27,1010.0 -2015,9,5,20,30,0,100.0,26,1010.0 -2015,9,5,21,0,0,100.0,26,1010.0 -2015,9,5,21,30,0,100.0,26,1010.0 -2015,9,5,22,0,0,100.0,26,1010.0 -2015,9,5,22,30,0,100.0,26,1010.0 -2015,9,5,23,0,0,100.0,26,1010.0 -2015,9,5,23,30,0,100.0,26,1010.0 -2015,9,6,0,0,0,100.0,26,1010.0 -2015,9,6,0,30,0,100.0,26,1010.0 -2015,9,6,1,0,0,100.0,26,1010.0 -2015,9,6,1,30,0,100.0,25,1010.0 -2015,9,6,2,0,0,100.0,25,1010.0 -2015,9,6,2,30,0,100.0,25,1010.0 -2015,9,6,3,0,0,100.0,25,1010.0 -2015,9,6,3,30,0,100.0,25,1010.0 -2015,9,6,4,0,0,100.0,25,1010.0 -2015,9,6,4,30,0,100.0,25,1010.0 -2015,9,6,5,0,0,100.0,25,1010.0 -2015,9,6,5,30,0,100.0,25,1010.0 -2015,9,6,6,0,0,100.0,25,1010.0 -2015,9,6,6,30,49,97.57000000000001,26,1010.0 -2015,9,6,7,0,139,96.32000000000001,27,1010.0 -2015,9,6,7,30,243,90.89,28,1010.0 -2015,9,6,8,0,352,82.59,29,1010.0 -2015,9,6,8,30,458,82.60000000000001,29,1010.0 -2015,9,6,9,0,558,71.71000000000001,30,1010.0 -2015,9,6,9,30,649,71.7,30,1010.0 -2015,9,6,10,0,730,65.06,31,1010.0 -2015,9,6,10,30,797,65.03,31,1010.0 -2015,9,6,11,0,850,60.08,32,1010.0 -2015,9,6,11,30,887,60.050000000000004,32,1010.0 -2015,9,6,12,0,906,56.34,33,1010.0 -2015,9,6,12,30,909,56.32,33,1010.0 -2015,9,6,13,0,895,55.6,33,1010.0 -2015,9,6,13,30,864,55.58,33,1010.0 -2015,9,6,14,0,818,54.88,34,1010.0 -2015,9,6,14,30,755,54.870000000000005,33,1010.0 -2015,9,6,15,0,674,54.84,33,1010.0 -2015,9,6,15,30,585,54.83,33,1010.0 -2015,9,6,16,0,488,55.72,33,1010.0 -2015,9,6,16,30,383,58.93,32,1010.0 -2015,9,6,17,0,275,65.47,32,1010.0 -2015,9,6,17,30,169,69.32000000000001,30,1010.0 -2015,9,6,18,0,73,78.83,29,1010.0 -2015,9,6,18,30,0,83.53,28,1010.0 -2015,9,6,19,0,0,86.43,28,1010.0 -2015,9,6,19,30,0,86.44,27,1010.0 -2015,9,6,20,0,0,86.92,27,1010.0 -2015,9,6,20,30,0,86.93,27,1010.0 -2015,9,6,21,0,0,88.65,27,1010.0 -2015,9,6,21,30,0,94.01,26,1010.0 -2015,9,6,22,0,0,95.45,26,1010.0 -2015,9,6,22,30,0,95.45,26,1010.0 -2015,9,6,23,0,0,96.31,26,1010.0 -2015,9,6,23,30,0,96.31,26,1010.0 -2015,9,7,0,0,0,96.51,26,1010.0 -2015,9,7,0,30,0,100.0,25,1010.0 -2015,9,7,1,0,0,100.0,25,1010.0 -2015,9,7,1,30,0,100.0,25,1010.0 -2015,9,7,2,0,0,100.0,25,1010.0 -2015,9,7,2,30,0,100.0,25,1010.0 -2015,9,7,3,0,0,100.0,25,1010.0 -2015,9,7,3,30,0,100.0,25,1010.0 -2015,9,7,4,0,0,100.0,25,1010.0 -2015,9,7,4,30,0,100.0,25,1010.0 -2015,9,7,5,0,0,100.0,25,1010.0 -2015,9,7,5,30,0,100.0,25,1010.0 -2015,9,7,6,0,0,100.0,25,1010.0 -2015,9,7,6,30,45,96.38,26,1010.0 -2015,9,7,7,0,134,92.49,27,1010.0 -2015,9,7,7,30,236,87.28,28,1010.0 -2015,9,7,8,0,343,79.57000000000001,29,1010.0 -2015,9,7,8,30,448,79.58,30,1010.0 -2015,9,7,9,0,546,70.9,31,1010.0 -2015,9,7,9,30,636,66.97,31,1010.0 -2015,9,7,10,0,714,61.84,32,1010.0 -2015,9,7,10,30,781,61.82,32,1010.0 -2015,9,7,11,0,832,58.120000000000005,33,1010.0 -2015,9,7,11,30,653,58.09,33,1010.0 -2015,9,7,12,0,117,57.980000000000004,33,1010.0 -2015,9,7,12,30,288,57.95,33,1010.0 -2015,9,7,13,0,131,57.870000000000005,33,1010.0 -2015,9,7,13,30,144,57.84,33,1010.0 -2015,9,7,14,0,645,57.84,33,1010.0 -2015,9,7,14,30,632,61.160000000000004,32,1010.0 -2015,9,7,15,0,660,61.49,32,1010.0 -2015,9,7,15,30,572,61.49,32,1010.0 -2015,9,7,16,0,204,62.18,32,1010.0 -2015,9,7,16,30,372,65.8,31,1010.0 -2015,9,7,17,0,220,72.25,30,1010.0 -2015,9,7,17,30,50,76.53,29,1010.0 -2015,9,7,18,0,21,84.8,28,1010.0 -2015,9,7,18,30,0,89.91,27,1010.0 -2015,9,7,19,0,0,90.48,27,1010.0 -2015,9,7,19,30,0,90.51,27,1010.0 -2015,9,7,20,0,0,91.19,27,1010.0 -2015,9,7,20,30,0,96.72,26,1010.0 -2015,9,7,21,0,0,96.73,26,1010.0 -2015,9,7,21,30,0,96.73,26,1010.0 -2015,9,7,22,0,0,95.98,26,1010.0 -2015,9,7,22,30,0,100.0,25,1010.0 -2015,9,7,23,0,0,100.0,25,1010.0 -2015,9,7,23,30,0,100.0,25,1010.0 -2015,9,8,0,0,0,99.5,25,1010.0 -2015,9,8,0,30,0,99.49000000000001,25,1010.0 -2015,9,8,1,0,0,98.46000000000001,25,1010.0 -2015,9,8,1,30,0,98.45,25,1010.0 -2015,9,8,2,0,0,97.49000000000001,25,1010.0 -2015,9,8,2,30,0,97.48,25,1010.0 -2015,9,8,3,0,0,96.71000000000001,25,1010.0 -2015,9,8,3,30,0,96.71000000000001,25,1010.0 -2015,9,8,4,0,0,96.08,25,1010.0 -2015,9,8,4,30,0,96.08,25,1010.0 -2015,9,8,5,0,0,95.92,25,1010.0 -2015,9,8,5,30,0,95.93,25,1010.0 -2015,9,8,6,0,0,98.37,25,1010.0 -2015,9,8,6,30,47,92.73,26,1010.0 -2015,9,8,7,0,139,90.31,27,1010.0 -2015,9,8,7,30,244,85.21000000000001,28,1010.0 -2015,9,8,8,0,353,72.73,29,1010.0 -2015,9,8,8,30,459,72.73,29,1010.0 -2015,9,8,9,0,563,65.44,30,1010.0 -2015,9,8,9,30,654,65.43,31,1010.0 -2015,9,8,10,0,734,60.56,32,1010.0 -2015,9,8,10,30,801,60.54,32,1010.0 -2015,9,8,11,0,853,56.910000000000004,32,1010.0 -2015,9,8,11,30,889,56.88,32,1010.0 -2015,9,8,12,0,904,53.76,33,1010.0 -2015,9,8,12,30,325,53.74,33,1010.0 -2015,9,8,13,0,161,53.79,33,1000.0 -2015,9,8,13,30,272,53.77,33,1000.0 -2015,9,8,14,0,654,53.95,33,1000.0 -2015,9,8,14,30,745,57.06,32,1000.0 -2015,9,8,15,0,274,57.550000000000004,32,1000.0 -2015,9,8,15,30,237,60.9,31,1000.0 -2015,9,8,16,0,376,61.92,31,1000.0 -2015,9,8,16,30,293,65.56,30,1000.0 -2015,9,8,17,0,264,68.03,30,1000.0 -2015,9,8,17,30,159,72.06,29,1000.0 -2015,9,8,18,0,66,80.37,28,1000.0 -2015,9,8,18,30,0,85.22,27,1000.0 -2015,9,8,19,0,0,86.89,27,1010.0 -2015,9,8,19,30,0,92.17,26,1010.0 -2015,9,8,20,0,0,93.37,26,1010.0 -2015,9,8,20,30,0,93.38,26,1010.0 -2015,9,8,21,0,0,93.76,26,1010.0 -2015,9,8,21,30,0,99.46000000000001,25,1010.0 -2015,9,8,22,0,0,99.10000000000001,25,1010.0 -2015,9,8,22,30,0,99.09,25,1010.0 -2015,9,8,23,0,0,98.51,25,1010.0 -2015,9,8,23,30,0,98.5,25,1010.0 -2015,9,9,0,0,0,97.89,25,1010.0 -2015,9,9,0,30,0,100.0,25,1010.0 -2015,9,9,1,0,0,100.0,25,1010.0 -2015,9,9,1,30,0,100.0,24,1010.0 -2015,9,9,2,0,0,100.0,24,1010.0 -2015,9,9,2,30,0,100.0,24,1010.0 -2015,9,9,3,0,0,100.0,24,1010.0 -2015,9,9,3,30,0,100.0,24,1010.0 -2015,9,9,4,0,0,100.0,24,1010.0 -2015,9,9,4,30,0,100.0,24,1010.0 -2015,9,9,5,0,0,100.0,24,1010.0 -2015,9,9,5,30,0,100.0,24,1010.0 -2015,9,9,6,0,0,97.86,25,1010.0 -2015,9,9,6,30,41,92.27,26,1010.0 -2015,9,9,7,0,120,89.61,27,1010.0 -2015,9,9,7,30,199,84.55,28,1010.0 -2015,9,9,8,0,318,79.06,29,1010.0 -2015,9,9,8,30,404,79.05,29,1010.0 -2015,9,9,9,0,448,72.60000000000001,30,1010.0 -2015,9,9,9,30,477,72.59,30,1010.0 -2015,9,9,10,0,529,65.87,31,1010.0 -2015,9,9,10,30,534,65.86,31,1010.0 -2015,9,9,11,0,473,59.910000000000004,32,1010.0 -2015,9,9,11,30,502,59.910000000000004,32,1010.0 -2015,9,9,12,0,490,57.9,32,1010.0 -2015,9,9,12,30,546,57.870000000000005,32,1010.0 -2015,9,9,13,0,532,56.52,32,1010.0 -2015,9,9,13,30,507,59.79,31,1010.0 -2015,9,9,14,0,245,59.6,31,1000.0 -2015,9,9,14,30,279,59.59,31,1000.0 -2015,9,9,15,0,342,61.21,31,1000.0 -2015,9,9,15,30,421,64.8,31,1000.0 -2015,9,9,16,0,267,66.81,31,1000.0 -2015,9,9,16,30,37,66.82000000000001,30,1000.0 -2015,9,9,17,0,132,69.77,30,1000.0 -2015,9,9,17,30,72,73.89,29,1000.0 -2015,9,9,18,0,29,84.35000000000001,28,1000.0 -2015,9,9,18,30,0,89.43,27,1010.0 -2015,9,9,19,0,0,90.43,27,1010.0 -2015,9,9,19,30,0,95.92,26,1010.0 -2015,9,9,20,0,0,98.60000000000001,26,1010.0 -2015,9,9,20,30,0,98.63,26,1010.0 -2015,9,9,21,0,0,100.0,26,1010.0 -2015,9,9,21,30,0,100.0,26,1010.0 -2015,9,9,22,0,0,99.71000000000001,26,1010.0 -2015,9,9,22,30,0,99.71000000000001,26,1010.0 -2015,9,9,23,0,0,99.3,26,1010.0 -2015,9,9,23,30,0,99.3,26,1010.0 -2015,9,10,0,0,0,99.01,26,1010.0 -2015,9,10,0,30,0,99.0,26,1010.0 -2015,9,10,1,0,0,98.13,26,1010.0 -2015,9,10,1,30,0,100.0,26,1010.0 -2015,9,10,2,0,0,100.0,26,1010.0 -2015,9,10,2,30,0,100.0,25,1010.0 -2015,9,10,3,0,0,100.0,25,1010.0 -2015,9,10,3,30,0,100.0,25,1010.0 -2015,9,10,4,0,0,100.0,25,1010.0 -2015,9,10,4,30,0,100.0,25,1010.0 -2015,9,10,5,0,0,99.60000000000001,25,1010.0 -2015,9,10,5,30,0,99.62,25,1010.0 -2015,9,10,6,0,0,100.0,25,1010.0 -2015,9,10,6,30,28,95.34,26,1010.0 -2015,9,10,7,0,86,93.33,27,1010.0 -2015,9,10,7,30,204,93.34,27,1010.0 -2015,9,10,8,0,298,86.69,28,1010.0 -2015,9,10,8,30,388,86.69,28,1010.0 -2015,9,10,9,0,72,77.68,29,1010.0 -2015,9,10,9,30,84,77.67,29,1010.0 -2015,9,10,10,0,708,75.89,29,1010.0 -2015,9,10,10,30,645,75.88,29,1010.0 -2015,9,10,11,0,687,75.13,29,1010.0 -2015,9,10,11,30,722,75.11,29,1010.0 -2015,9,10,12,0,356,74.62,29,1010.0 -2015,9,10,12,30,309,74.60000000000001,29,1010.0 -2015,9,10,13,0,53,74.54,29,1010.0 -2015,9,10,13,30,108,74.51,29,1010.0 -2015,9,10,14,0,186,74.61,29,1010.0 -2015,9,10,14,30,52,79.04,28,1010.0 -2015,9,10,15,0,54,79.64,28,1010.0 -2015,9,10,15,30,193,84.41,27,1010.0 -2015,9,10,16,0,360,85.7,27,1010.0 -2015,9,10,16,30,46,90.88,26,1010.0 -2015,9,10,17,0,115,92.92,26,1010.0 -2015,9,10,17,30,59,98.59,25,1010.0 -2015,9,10,18,0,22,99.64,25,1010.0 -2015,9,10,18,30,0,99.65,25,1010.0 -2015,9,10,19,0,0,99.28,25,1010.0 -2015,9,10,19,30,0,100.0,24,1010.0 -2015,9,10,20,0,0,100.0,24,1010.0 -2015,9,10,20,30,0,100.0,24,1010.0 -2015,9,10,21,0,0,100.0,24,1010.0 -2015,9,10,21,30,0,100.0,24,1010.0 -2015,9,10,22,0,0,100.0,24,1010.0 -2015,9,10,22,30,0,100.0,24,1010.0 -2015,9,10,23,0,0,100.0,24,1010.0 -2015,9,10,23,30,0,100.0,24,1010.0 -2015,9,11,0,0,0,100.0,24,1010.0 -2015,9,11,0,30,0,100.0,24,1010.0 -2015,9,11,1,0,0,100.0,25,1010.0 -2015,9,11,1,30,0,100.0,25,1010.0 -2015,9,11,2,0,0,100.0,25,1010.0 -2015,9,11,2,30,0,100.0,25,1010.0 -2015,9,11,3,0,0,100.0,25,1010.0 -2015,9,11,3,30,0,100.0,25,1010.0 -2015,9,11,4,0,0,100.0,25,1010.0 -2015,9,11,4,30,0,100.0,25,1010.0 -2015,9,11,5,0,0,100.0,25,1010.0 -2015,9,11,5,30,0,100.0,25,1010.0 -2015,9,11,6,0,0,100.0,25,1010.0 -2015,9,11,6,30,24,100.0,25,1010.0 -2015,9,11,7,0,7,100.0,25,1010.0 -2015,9,11,7,30,24,100.0,25,1010.0 -2015,9,11,8,0,79,97.65,26,1010.0 -2015,9,11,8,30,10,97.65,26,1010.0 -2015,9,11,9,0,37,95.88,26,1010.0 -2015,9,11,9,30,91,95.87,26,1010.0 -2015,9,11,10,0,44,94.36,26,1010.0 -2015,9,11,10,30,223,94.33,26,1010.0 -2015,9,11,11,0,124,94.02,26,1010.0 -2015,9,11,11,30,104,93.98,26,1010.0 -2015,9,11,12,0,162,88.72,27,1010.0 -2015,9,11,12,30,182,88.69,27,1010.0 -2015,9,11,13,0,162,88.59,27,1010.0 -2015,9,11,13,30,296,93.92,26,1010.0 -2015,9,11,14,0,252,94.41,26,1000.0 -2015,9,11,14,30,282,94.39,26,1000.0 -2015,9,11,15,0,194,95.17,26,1000.0 -2015,9,11,15,30,195,95.17,26,1000.0 -2015,9,11,16,0,155,95.76,26,1000.0 -2015,9,11,16,30,200,100.0,25,1000.0 -2015,9,11,17,0,141,100.0,25,1010.0 -2015,9,11,17,30,121,100.0,25,1010.0 -2015,9,11,18,0,46,99.64,25,1010.0 -2015,9,11,18,30,0,100.0,24,1010.0 -2015,9,11,19,0,0,100.0,24,1010.0 -2015,9,11,19,30,0,100.0,24,1010.0 -2015,9,11,20,0,0,100.0,24,1010.0 -2015,9,11,20,30,0,100.0,24,1010.0 -2015,9,11,21,0,0,100.0,24,1010.0 -2015,9,11,21,30,0,100.0,24,1010.0 -2015,9,11,22,0,0,100.0,24,1010.0 -2015,9,11,22,30,0,100.0,23,1010.0 -2015,9,11,23,0,0,100.0,23,1010.0 -2015,9,11,23,30,0,100.0,23,1010.0 -2015,9,12,0,0,0,100.0,23,1010.0 -2015,9,12,0,30,0,100.0,23,1010.0 -2015,9,12,1,0,0,100.0,23,1010.0 -2015,9,12,1,30,0,100.0,23,1010.0 -2015,9,12,2,0,0,100.0,23,1010.0 -2015,9,12,2,30,0,100.0,23,1010.0 -2015,9,12,3,0,0,100.0,23,1010.0 -2015,9,12,3,30,0,100.0,23,1010.0 -2015,9,12,4,0,0,100.0,23,1010.0 -2015,9,12,4,30,0,100.0,22,1010.0 -2015,9,12,5,0,0,100.0,22,1010.0 -2015,9,12,5,30,0,100.0,22,1010.0 -2015,9,12,6,0,0,100.0,22,1010.0 -2015,9,12,6,30,43,100.0,22,1010.0 -2015,9,12,7,0,135,96.66,23,1010.0 -2015,9,12,7,30,241,96.69,23,1010.0 -2015,9,12,8,0,353,86.38,24,1010.0 -2015,9,12,8,30,461,86.4,24,1010.0 -2015,9,12,9,0,565,77.52,25,1010.0 -2015,9,12,9,30,659,73.08,26,1010.0 -2015,9,12,10,0,742,68.07000000000001,27,1010.0 -2015,9,12,10,30,810,68.06,27,1010.0 -2015,9,12,11,0,865,63.79,28,1010.0 -2015,9,12,11,30,902,63.76,28,1010.0 -2015,9,12,12,0,920,62.31,28,1010.0 -2015,9,12,12,30,922,62.28,28,1010.0 -2015,9,12,13,0,907,56.59,29,1010.0 -2015,9,12,13,30,874,56.56,29,1010.0 -2015,9,12,14,0,825,54.06,29,1010.0 -2015,9,12,14,30,759,54.04,29,1010.0 -2015,9,12,15,0,681,52.01,29,1010.0 -2015,9,12,15,30,589,55.1,28,1010.0 -2015,9,12,16,0,489,54.550000000000004,28,1010.0 -2015,9,12,16,30,381,57.83,27,1010.0 -2015,9,12,17,0,270,55.96,27,1010.0 -2015,9,12,17,30,159,59.35,26,1010.0 -2015,9,12,18,0,61,68.33,25,1010.0 -2015,9,12,18,30,0,72.54,24,1010.0 -2015,9,12,19,0,0,70.72,23,1010.0 -2015,9,12,19,30,0,75.16,22,1010.0 -2015,9,12,20,0,0,73.24,22,1010.0 -2015,9,12,20,30,0,77.86,21,1010.0 -2015,9,12,21,0,0,75.78,21,1010.0 -2015,9,12,21,30,0,80.59,20,1010.0 -2015,9,12,22,0,0,78.07000000000001,20,1010.0 -2015,9,12,22,30,0,83.06,19,1010.0 -2015,9,12,23,0,0,84.55,19,1010.0 -2015,9,12,23,30,0,84.56,18,1010.0 -2015,9,13,0,0,0,80.36,18,1010.0 -2015,9,13,0,30,0,85.58,17,1010.0 -2015,9,13,1,0,0,81.62,17,1010.0 -2015,9,13,1,30,0,86.96000000000001,16,1010.0 -2015,9,13,2,0,0,83.82000000000001,16,1010.0 -2015,9,13,2,30,0,83.82000000000001,16,1010.0 -2015,9,13,3,0,0,82.42,16,1010.0 -2015,9,13,3,30,0,87.86,15,1010.0 -2015,9,13,4,0,0,87.81,15,1010.0 -2015,9,13,4,30,0,87.81,15,1010.0 -2015,9,13,5,0,0,88.18,15,1010.0 -2015,9,13,5,30,0,88.19,15,1010.0 -2015,9,13,6,0,0,84.5,16,1010.0 -2015,9,13,6,30,48,79.32000000000001,17,1010.0 -2015,9,13,7,0,144,77.3,18,1010.0 -2015,9,13,7,30,255,72.63,19,1010.0 -2015,9,13,8,0,368,68.83,21,1010.0 -2015,9,13,8,30,478,64.77,22,1010.0 -2015,9,13,9,0,580,54.9,24,1010.0 -2015,9,13,9,30,674,54.9,24,1010.0 -2015,9,13,10,0,755,50.730000000000004,25,1010.0 -2015,9,13,10,30,822,50.730000000000004,25,1010.0 -2015,9,13,11,0,874,48.58,26,1010.0 -2015,9,13,11,30,909,48.57,26,1010.0 -2015,9,13,12,0,928,46.980000000000004,27,1010.0 -2015,9,13,12,30,929,46.97,27,1010.0 -2015,9,13,13,0,912,48.06,27,1010.0 -2015,9,13,13,30,878,48.04,27,1010.0 -2015,9,13,14,0,827,48.86,27,1010.0 -2015,9,13,14,30,761,48.84,27,1010.0 -2015,9,13,15,0,681,49.480000000000004,27,1010.0 -2015,9,13,15,30,589,52.46,26,1010.0 -2015,9,13,16,0,488,53.64,26,1010.0 -2015,9,13,16,30,379,56.910000000000004,25,1010.0 -2015,9,13,17,0,267,66.04,24,1010.0 -2015,9,13,17,30,156,74.51,22,1010.0 -2015,9,13,18,0,58,81.18,21,1010.0 -2015,9,13,18,30,0,86.34,20,1010.0 -2015,9,13,19,0,0,81.86,20,1010.0 -2015,9,13,19,30,0,81.87,20,1010.0 -2015,9,13,20,0,0,80.43,20,1010.0 -2015,9,13,20,30,0,85.57000000000001,19,1010.0 -2015,9,13,21,0,0,84.71000000000001,19,1010.0 -2015,9,13,21,30,0,84.71000000000001,19,1010.0 -2015,9,13,22,0,0,84.08,19,1010.0 -2015,9,13,22,30,0,89.48,19,1010.0 -2015,9,13,23,0,0,88.72,19,1010.0 -2015,9,13,23,30,0,88.71000000000001,18,1010.0 -2015,9,14,0,0,0,87.75,18,1010.0 -2015,9,14,0,30,0,87.75,18,1010.0 -2015,9,14,1,0,0,86.5,18,1010.0 -2015,9,14,1,30,0,92.10000000000001,18,1010.0 -2015,9,14,2,0,0,90.93,18,1010.0 -2015,9,14,2,30,0,90.92,17,1010.0 -2015,9,14,3,0,0,90.82000000000001,17,1010.0 -2015,9,14,3,30,0,96.78,17,1010.0 -2015,9,14,4,0,0,97.52,17,1010.0 -2015,9,14,4,30,0,97.54,16,1010.0 -2015,9,14,5,0,0,98.55,16,1010.0 -2015,9,14,5,30,0,98.57000000000001,16,1010.0 -2015,9,14,6,0,0,94.32000000000001,17,1010.0 -2015,9,14,6,30,48,88.58,18,1010.0 -2015,9,14,7,0,146,87.3,19,1010.0 -2015,9,14,7,30,259,82.06,20,1010.0 -2015,9,14,8,0,373,74.81,22,1010.0 -2015,9,14,8,30,484,70.42,23,1010.0 -2015,9,14,9,0,587,63.34,25,1010.0 -2015,9,14,9,30,680,63.34,25,1010.0 -2015,9,14,10,0,759,62.99,26,1010.0 -2015,9,14,10,30,826,62.980000000000004,26,1010.0 -2015,9,14,11,0,874,62.36,27,1010.0 -2015,9,14,11,30,907,62.34,27,1010.0 -2015,9,14,12,0,921,61.44,28,1010.0 -2015,9,14,12,30,919,61.410000000000004,28,1010.0 -2015,9,14,13,0,575,63.910000000000004,29,1010.0 -2015,9,14,13,30,551,63.9,28,1010.0 -2015,9,14,14,0,515,66.31,28,1010.0 -2015,9,14,14,30,280,66.29,28,1010.0 -2015,9,14,15,0,248,68.59,28,1010.0 -2015,9,14,15,30,559,72.7,27,1010.0 -2015,9,14,16,0,457,74.95,27,1010.0 -2015,9,14,16,30,350,79.49,26,1010.0 -2015,9,14,17,0,123,82.58,26,1010.0 -2015,9,14,17,30,64,87.62,25,1010.0 -2015,9,14,18,0,22,94.25,24,1010.0 -2015,9,14,18,30,0,94.26,24,1010.0 -2015,9,14,19,0,0,94.15,24,1010.0 -2015,9,14,19,30,0,94.16,24,1010.0 -2015,9,14,20,0,0,94.56,24,1010.0 -2015,9,14,20,30,0,94.56,24,1010.0 -2015,9,14,21,0,0,95.62,24,1010.0 -2015,9,14,21,30,0,95.61,24,1010.0 -2015,9,14,22,0,0,97.3,24,1010.0 -2015,9,14,22,30,0,97.27,24,1010.0 -2015,9,14,23,0,0,98.47,24,1010.0 -2015,9,14,23,30,0,98.45,24,1010.0 -2015,9,15,0,0,0,99.03,24,1010.0 -2015,9,15,0,30,0,99.01,24,1010.0 -2015,9,15,1,0,0,99.11,24,1010.0 -2015,9,15,1,30,0,99.10000000000001,24,1010.0 -2015,9,15,2,0,0,99.16,24,1010.0 -2015,9,15,2,30,0,99.15,24,1010.0 -2015,9,15,3,0,0,99.2,24,1010.0 -2015,9,15,3,30,0,100.0,24,1010.0 -2015,9,15,4,0,0,100.0,24,1010.0 -2015,9,15,4,30,0,100.0,24,1010.0 -2015,9,15,5,0,0,100.0,24,1010.0 -2015,9,15,5,30,0,100.0,24,1010.0 -2015,9,15,6,0,0,100.0,24,1010.0 -2015,9,15,6,30,37,95.29,25,1010.0 -2015,9,15,7,0,123,95.66,26,1010.0 -2015,9,15,7,30,226,90.23,27,1010.0 -2015,9,15,8,0,336,87.08,28,1010.0 -2015,9,15,8,30,442,87.10000000000001,28,1010.0 -2015,9,15,9,0,542,80.77,29,1010.0 -2015,9,15,9,30,632,80.77,29,1010.0 -2015,9,15,10,0,711,74.42,30,1010.0 -2015,9,15,10,30,777,74.41,30,1010.0 -2015,9,15,11,0,826,69.26,31,1010.0 -2015,9,15,11,30,860,69.24,31,1010.0 -2015,9,15,12,0,874,69.01,31,1010.0 -2015,9,15,12,30,874,68.99,31,1010.0 -2015,9,15,13,0,855,69.06,31,1010.0 -2015,9,15,13,30,821,69.04,31,1010.0 -2015,9,15,14,0,478,68.75,31,1010.0 -2015,9,15,14,30,399,72.76,30,1010.0 -2015,9,15,15,0,432,72.59,30,1010.0 -2015,9,15,15,30,546,76.87,29,1010.0 -2015,9,15,16,0,450,77.13,29,1010.0 -2015,9,15,16,30,345,81.73,28,1010.0 -2015,9,15,17,0,239,82.91,28,1010.0 -2015,9,15,17,30,135,87.9,27,1010.0 -2015,9,15,18,0,45,94.27,26,1010.0 -2015,9,15,18,30,0,100.0,26,1010.0 -2015,9,15,19,0,0,99.46000000000001,26,1010.0 -2015,9,15,19,30,0,99.48,25,1010.0 -2015,9,15,20,0,0,98.62,25,1010.0 -2015,9,15,20,30,0,98.63,25,1010.0 -2015,9,15,21,0,0,97.4,25,1010.0 -2015,9,15,21,30,0,100.0,24,1010.0 -2015,9,15,22,0,0,100.0,24,1010.0 -2015,9,15,22,30,0,100.0,24,1010.0 -2015,9,15,23,0,0,100.0,24,1010.0 -2015,9,15,23,30,0,100.0,24,1010.0 -2015,9,16,0,0,0,99.48,24,1010.0 -2015,9,16,0,30,0,99.48,24,1010.0 -2015,9,16,1,0,0,98.76,24,1010.0 -2015,9,16,1,30,0,98.76,24,1010.0 -2015,9,16,2,0,0,98.23,24,1010.0 -2015,9,16,2,30,0,98.22,24,1010.0 -2015,9,16,3,0,0,97.47,24,1010.0 -2015,9,16,3,30,0,97.47,24,1010.0 -2015,9,16,4,0,0,96.99000000000001,24,1010.0 -2015,9,16,4,30,0,100.0,24,1010.0 -2015,9,16,5,0,0,100.0,24,1010.0 -2015,9,16,5,30,0,100.0,24,1010.0 -2015,9,16,6,0,0,98.14,24,1010.0 -2015,9,16,6,30,39,92.48,25,1010.0 -2015,9,16,7,0,130,90.8,26,1010.0 -2015,9,16,7,30,236,85.64,27,1010.0 -2015,9,16,8,0,347,79.65,28,1010.0 -2015,9,16,8,30,455,79.66,28,1010.0 -2015,9,16,9,0,557,74.54,29,1010.0 -2015,9,16,9,30,648,74.54,29,1010.0 -2015,9,16,10,0,730,70.22,30,1010.0 -2015,9,16,10,30,796,70.2,30,1010.0 -2015,9,16,11,0,506,65.63,31,1010.0 -2015,9,16,11,30,394,65.6,31,1010.0 -2015,9,16,12,0,418,64.78,31,1010.0 -2015,9,16,12,30,619,64.75,31,1010.0 -2015,9,16,13,0,607,64.18,31,1010.0 -2015,9,16,13,30,850,64.15,31,1010.0 -2015,9,16,14,0,798,63.660000000000004,31,1010.0 -2015,9,16,14,30,733,67.37,30,1010.0 -2015,9,16,15,0,652,67.29,30,1010.0 -2015,9,16,15,30,561,67.29,30,1010.0 -2015,9,16,16,0,461,67.68,30,1010.0 -2015,9,16,16,30,354,71.68,29,1010.0 -2015,9,16,17,0,244,77.92,28,1010.0 -2015,9,16,17,30,138,82.61,27,1010.0 -2015,9,16,18,0,45,90.11,26,1010.0 -2015,9,16,18,30,0,95.61,25,1010.0 -2015,9,16,19,0,0,96.09,25,1010.0 -2015,9,16,19,30,0,100.0,25,1010.0 -2015,9,16,20,0,0,100.0,25,1010.0 -2015,9,16,20,30,0,100.0,24,1010.0 -2015,9,16,21,0,0,100.0,24,1010.0 -2015,9,16,21,30,0,100.0,24,1010.0 -2015,9,16,22,0,0,100.0,24,1010.0 -2015,9,16,22,30,0,100.0,23,1010.0 -2015,9,16,23,0,0,100.0,23,1010.0 -2015,9,16,23,30,0,100.0,23,1010.0 -2015,9,17,0,0,0,100.0,23,1010.0 -2015,9,17,0,30,0,100.0,23,1010.0 -2015,9,17,1,0,0,100.0,23,1010.0 -2015,9,17,1,30,0,100.0,23,1010.0 -2015,9,17,2,0,0,100.0,23,1010.0 -2015,9,17,2,30,0,100.0,23,1010.0 -2015,9,17,3,0,0,100.0,23,1010.0 -2015,9,17,3,30,0,100.0,23,1010.0 -2015,9,17,4,0,0,100.0,23,1010.0 -2015,9,17,4,30,0,100.0,22,1010.0 -2015,9,17,5,0,0,100.0,22,1010.0 -2015,9,17,5,30,0,100.0,22,1010.0 -2015,9,17,6,0,0,100.0,23,1010.0 -2015,9,17,6,30,40,98.82000000000001,24,1010.0 -2015,9,17,7,0,131,92.42,26,1010.0 -2015,9,17,7,30,237,87.17,27,1010.0 -2015,9,17,8,0,348,81.75,28,1010.0 -2015,9,17,8,30,456,81.76,28,1010.0 -2015,9,17,9,0,557,75.04,29,1010.0 -2015,9,17,9,30,649,75.04,29,1010.0 -2015,9,17,10,0,729,69.18,30,1010.0 -2015,9,17,10,30,795,69.16,30,1010.0 -2015,9,17,11,0,846,64.3,31,1010.0 -2015,9,17,11,30,881,64.27,31,1010.0 -2015,9,17,12,0,895,59.92,32,1010.0 -2015,9,17,12,30,895,59.89,32,1010.0 -2015,9,17,13,0,879,59.120000000000005,32,1010.0 -2015,9,17,13,30,845,59.09,32,1010.0 -2015,9,17,14,0,795,58.46,32,1010.0 -2015,9,17,14,30,729,61.84,31,1010.0 -2015,9,17,15,0,649,61.39,31,1010.0 -2015,9,17,15,30,558,64.98,30,1010.0 -2015,9,17,16,0,457,64.77,30,1010.0 -2015,9,17,16,30,350,68.60000000000001,29,1010.0 -2015,9,17,17,0,241,71.45,29,1010.0 -2015,9,17,17,30,134,80.25,27,1010.0 -2015,9,17,18,0,42,87.49,26,1010.0 -2015,9,17,18,30,0,92.82000000000001,25,1010.0 -2015,9,17,19,0,0,91.76,25,1010.0 -2015,9,17,19,30,0,91.79,25,1010.0 -2015,9,17,20,0,0,91.8,25,1010.0 -2015,9,17,20,30,0,97.45,24,1010.0 -2015,9,17,21,0,0,97.26,24,1010.0 -2015,9,17,21,30,0,97.26,24,1010.0 -2015,9,17,22,0,0,96.64,24,1010.0 -2015,9,17,22,30,0,100.0,23,1010.0 -2015,9,17,23,0,0,100.0,23,1010.0 -2015,9,17,23,30,0,100.0,23,1010.0 -2015,9,18,0,0,0,100.0,23,1010.0 -2015,9,18,0,30,0,100.0,23,1010.0 -2015,9,18,1,0,0,100.0,23,1010.0 -2015,9,18,1,30,0,100.0,23,1010.0 -2015,9,18,2,0,0,100.0,23,1010.0 -2015,9,18,2,30,0,100.0,23,1010.0 -2015,9,18,3,0,0,100.0,23,1010.0 -2015,9,18,3,30,0,100.0,23,1010.0 -2015,9,18,4,0,0,98.29,23,1010.0 -2015,9,18,4,30,0,98.3,23,1010.0 -2015,9,18,5,0,0,97.95,23,1010.0 -2015,9,18,5,30,0,97.98,23,1010.0 -2015,9,18,6,0,0,98.87,23,1010.0 -2015,9,18,6,30,38,93.13,24,1010.0 -2015,9,18,7,0,128,92.71000000000001,25,1010.0 -2015,9,18,7,30,235,87.4,26,1010.0 -2015,9,18,8,0,345,80.44,27,1010.0 -2015,9,18,8,30,454,75.89,28,1010.0 -2015,9,18,9,0,556,69.74,29,1010.0 -2015,9,18,9,30,648,69.73,29,1010.0 -2015,9,18,10,0,729,64.04,30,1010.0 -2015,9,18,10,30,796,64.02,30,1010.0 -2015,9,18,11,0,847,59.35,31,1010.0 -2015,9,18,11,30,882,59.32,31,1010.0 -2015,9,18,12,0,904,58.5,31,1010.0 -2015,9,18,12,30,904,58.480000000000004,31,1010.0 -2015,9,18,13,0,886,54.68,32,1010.0 -2015,9,18,13,30,851,57.84,31,1010.0 -2015,9,18,14,0,799,57.39,31,1000.0 -2015,9,18,14,30,733,57.38,31,1000.0 -2015,9,18,15,0,647,57.26,31,1000.0 -2015,9,18,15,30,555,60.620000000000005,30,1000.0 -2015,9,18,16,0,455,60.910000000000004,30,1000.0 -2015,9,18,16,30,347,64.52,29,1000.0 -2015,9,18,17,0,238,71.63,29,1000.0 -2015,9,18,17,30,131,75.93,27,1000.0 -2015,9,18,18,0,40,83.66,26,1000.0 -2015,9,18,18,30,0,88.78,25,1000.0 -2015,9,18,19,0,0,87.84,25,1010.0 -2015,9,18,19,30,0,93.25,24,1010.0 -2015,9,18,20,0,0,92.75,24,1010.0 -2015,9,18,20,30,0,92.76,24,1010.0 -2015,9,18,21,0,0,91.69,24,1010.0 -2015,9,18,21,30,0,97.36,23,1010.0 -2015,9,18,22,0,0,95.7,23,1010.0 -2015,9,18,22,30,0,95.7,23,1010.0 -2015,9,18,23,0,0,93.88,23,1010.0 -2015,9,18,23,30,0,99.74000000000001,22,1010.0 -2015,9,19,0,0,0,97.99000000000001,22,1010.0 -2015,9,19,0,30,0,97.99000000000001,22,1010.0 -2015,9,19,1,0,0,96.67,22,1010.0 -2015,9,19,1,30,0,96.67,22,1010.0 -2015,9,19,2,0,0,95.47,22,1010.0 -2015,9,19,2,30,0,95.48,22,1010.0 -2015,9,19,3,0,0,94.53,22,1010.0 -2015,9,19,3,30,0,94.54,22,1010.0 -2015,9,19,4,0,0,88.66,23,1010.0 -2015,9,19,4,30,0,94.22,22,1010.0 -2015,9,19,5,0,0,93.86,22,1010.0 -2015,9,19,5,30,0,93.88,22,1010.0 -2015,9,19,6,0,0,95.36,22,1010.0 -2015,9,19,6,30,40,89.77,23,1010.0 -2015,9,19,7,0,134,89.0,24,1010.0 -2015,9,19,7,30,244,83.86,25,1010.0 -2015,9,19,8,0,357,76.98,27,1010.0 -2015,9,19,8,30,466,72.60000000000001,27,1010.0 -2015,9,19,9,0,570,66.87,28,1010.0 -2015,9,19,9,30,663,63.120000000000005,29,1010.0 -2015,9,19,10,0,745,58.63,30,1010.0 -2015,9,19,10,30,812,58.63,30,1010.0 -2015,9,19,11,0,863,54.46,31,1010.0 -2015,9,19,11,30,898,54.45,31,1010.0 -2015,9,19,12,0,914,53.46,31,1010.0 -2015,9,19,12,30,913,53.44,31,1010.0 -2015,9,19,13,0,895,49.620000000000005,32,1010.0 -2015,9,19,13,30,860,49.61,32,1010.0 -2015,9,19,14,0,808,48.96,32,1010.0 -2015,9,19,14,30,741,51.800000000000004,31,1010.0 -2015,9,19,15,0,660,51.47,31,1010.0 -2015,9,19,15,30,567,54.49,30,1010.0 -2015,9,19,16,0,465,55.0,30,1010.0 -2015,9,19,16,30,356,58.25,29,1010.0 -2015,9,19,17,0,243,63.56,29,1010.0 -2015,9,19,17,30,134,71.39,27,1010.0 -2015,9,19,18,0,39,79.21000000000001,26,1010.0 -2015,9,19,18,30,0,84.05,25,1010.0 -2015,9,19,19,0,0,83.9,25,1010.0 -2015,9,19,19,30,0,89.08,24,1010.0 -2015,9,19,20,0,0,89.95,24,1010.0 -2015,9,19,20,30,0,95.53,23,1010.0 -2015,9,19,21,0,0,95.54,23,1010.0 -2015,9,19,21,30,0,95.55,23,1010.0 -2015,9,19,22,0,0,94.86,23,1010.0 -2015,9,19,22,30,0,94.86,23,1010.0 -2015,9,19,23,0,0,94.61,23,1010.0 -2015,9,19,23,30,0,94.62,23,1010.0 -2015,9,20,0,0,0,94.34,23,1010.0 -2015,9,20,0,30,0,94.34,23,1010.0 -2015,9,20,1,0,0,93.83,23,1010.0 -2015,9,20,1,30,0,99.67,22,1010.0 -2015,9,20,2,0,0,98.93,22,1010.0 -2015,9,20,2,30,0,98.93,22,1010.0 -2015,9,20,3,0,0,98.58,22,1010.0 -2015,9,20,3,30,0,100.0,21,1010.0 -2015,9,20,4,0,0,100.0,21,1010.0 -2015,9,20,4,30,0,100.0,21,1010.0 -2015,9,20,5,0,0,100.0,21,1010.0 -2015,9,20,5,30,0,100.0,21,1010.0 -2015,9,20,6,0,0,100.0,21,1010.0 -2015,9,20,6,30,32,100.0,22,1010.0 -2015,9,20,7,0,119,96.9,23,1010.0 -2015,9,20,7,30,223,91.26,24,1010.0 -2015,9,20,8,0,332,80.63,26,1010.0 -2015,9,20,8,30,439,76.03,27,1010.0 -2015,9,20,9,0,541,65.3,29,1010.0 -2015,9,20,9,30,633,61.620000000000005,29,1010.0 -2015,9,20,10,0,714,55.7,30,1010.0 -2015,9,20,10,30,780,55.69,30,1010.0 -2015,9,20,11,0,831,52.550000000000004,31,1010.0 -2015,9,20,11,30,866,52.52,31,1010.0 -2015,9,20,12,0,893,49.44,32,1010.0 -2015,9,20,12,30,893,49.42,32,1010.0 -2015,9,20,13,0,875,49.07,32,1010.0 -2015,9,20,13,30,840,49.06,32,1010.0 -2015,9,20,14,0,527,48.730000000000004,32,1010.0 -2015,9,20,14,30,593,48.72,32,1010.0 -2015,9,20,15,0,642,48.18,32,1010.0 -2015,9,20,15,30,550,50.97,31,1010.0 -2015,9,20,16,0,448,50.92,31,1010.0 -2015,9,20,16,30,340,53.910000000000004,30,1010.0 -2015,9,20,17,0,230,60.86,29,1010.0 -2015,9,20,17,30,123,68.36,27,1010.0 -2015,9,20,18,0,34,77.98,26,1010.0 -2015,9,20,18,30,0,82.74,25,1010.0 -2015,9,20,19,0,0,79.79,25,1010.0 -2015,9,20,19,30,0,84.7,24,1010.0 -2015,9,20,20,0,0,84.37,24,1010.0 -2015,9,20,20,30,0,84.38,24,1010.0 -2015,9,20,21,0,0,84.76,24,1010.0 -2015,9,20,21,30,0,90.0,23,1010.0 -2015,9,20,22,0,0,90.8,23,1010.0 -2015,9,20,22,30,0,90.8,23,1010.0 -2015,9,20,23,0,0,91.32000000000001,23,1010.0 -2015,9,20,23,30,0,91.3,23,1010.0 -2015,9,21,0,0,0,92.29,23,1010.0 -2015,9,21,0,30,0,98.04,23,1010.0 -2015,9,21,1,0,0,98.74000000000001,23,1010.0 -2015,9,21,1,30,0,98.73,22,1010.0 -2015,9,21,2,0,0,99.18,22,1010.0 -2015,9,21,2,30,0,99.17,22,1010.0 -2015,9,21,3,0,0,99.56,22,1010.0 -2015,9,21,3,30,0,99.57000000000001,22,1010.0 -2015,9,21,4,0,0,100.0,22,1010.0 -2015,9,21,4,30,0,100.0,22,1010.0 -2015,9,21,5,0,0,100.0,22,1010.0 -2015,9,21,5,30,0,100.0,22,1010.0 -2015,9,21,6,0,0,100.0,22,1010.0 -2015,9,21,6,30,28,95.39,23,1010.0 -2015,9,21,7,0,110,90.93,24,1010.0 -2015,9,21,7,30,155,85.68,25,1010.0 -2015,9,21,8,0,270,79.69,26,1010.0 -2015,9,21,8,30,424,75.14,27,1010.0 -2015,9,21,9,0,523,68.76,28,1010.0 -2015,9,21,9,30,613,64.9,29,1010.0 -2015,9,21,10,0,692,59.910000000000004,30,1010.0 -2015,9,21,10,30,757,59.89,30,1010.0 -2015,9,21,11,0,807,56.160000000000004,31,1010.0 -2015,9,21,11,30,841,56.14,31,1010.0 -2015,9,21,12,0,849,52.95,32,1010.0 -2015,9,21,12,30,849,52.92,32,1010.0 -2015,9,21,13,0,830,52.75,32,1010.0 -2015,9,21,13,30,795,52.730000000000004,32,1010.0 -2015,9,21,14,0,744,52.53,32,1010.0 -2015,9,21,14,30,678,55.57,32,1010.0 -2015,9,21,15,0,599,55.53,32,1010.0 -2015,9,21,15,30,510,55.52,31,1010.0 -2015,9,21,16,0,412,56.22,31,1010.0 -2015,9,21,16,30,308,59.52,30,1010.0 -2015,9,21,17,0,201,68.09,29,1010.0 -2015,9,21,17,30,103,76.49,27,1010.0 -2015,9,21,18,0,23,86.24,26,1010.0 -2015,9,21,18,30,0,91.52,26,1010.0 -2015,9,21,19,0,0,91.14,26,1010.0 -2015,9,21,19,30,0,91.17,25,1010.0 -2015,9,21,20,0,0,91.87,25,1010.0 -2015,9,21,20,30,0,91.89,25,1010.0 -2015,9,21,21,0,0,92.38,25,1010.0 -2015,9,21,21,30,0,98.06,24,1010.0 -2015,9,21,22,0,0,98.04,24,1010.0 -2015,9,21,22,30,0,98.04,24,1010.0 -2015,9,21,23,0,0,97.52,24,1010.0 -2015,9,21,23,30,0,97.52,24,1010.0 -2015,9,22,0,0,0,97.03,24,1010.0 -2015,9,22,0,30,0,97.02,24,1010.0 -2015,9,22,1,0,0,96.48,24,1010.0 -2015,9,22,1,30,0,100.0,24,1010.0 -2015,9,22,2,0,0,100.0,24,1010.0 -2015,9,22,2,30,0,100.0,23,1010.0 -2015,9,22,3,0,0,100.0,23,1010.0 -2015,9,22,3,30,0,100.0,23,1010.0 -2015,9,22,4,0,0,100.0,23,1010.0 -2015,9,22,4,30,0,100.0,23,1010.0 -2015,9,22,5,0,0,100.0,23,1010.0 -2015,9,22,5,30,0,100.0,23,1010.0 -2015,9,22,6,0,0,100.0,23,1010.0 -2015,9,22,6,30,26,96.2,24,1010.0 -2015,9,22,7,0,111,92.98,25,1010.0 -2015,9,22,7,30,213,87.66,26,1010.0 -2015,9,22,8,0,323,78.55,27,1010.0 -2015,9,22,8,30,429,74.11,28,1010.0 -2015,9,22,9,0,531,65.33,29,1010.0 -2015,9,22,9,30,623,65.32000000000001,29,1010.0 -2015,9,22,10,0,706,58.84,30,1010.0 -2015,9,22,10,30,772,58.82,30,1010.0 -2015,9,22,11,0,827,53.45,31,1010.0 -2015,9,22,11,30,861,53.43,31,1010.0 -2015,9,22,12,0,886,48.61,32,1010.0 -2015,9,22,12,30,886,48.58,32,1010.0 -2015,9,22,13,0,870,46.9,33,1010.0 -2015,9,22,13,30,834,46.88,33,1010.0 -2015,9,22,14,0,784,45.54,33,1010.0 -2015,9,22,14,30,717,45.53,32,1010.0 -2015,9,22,15,0,632,44.42,32,1010.0 -2015,9,22,15,30,540,47.01,31,1010.0 -2015,9,22,16,0,440,47.21,31,1010.0 -2015,9,22,16,30,331,49.980000000000004,30,1010.0 -2015,9,22,17,0,222,58.28,29,1010.0 -2015,9,22,17,30,116,65.47,27,1010.0 -2015,9,22,18,0,28,73.72,26,1010.0 -2015,9,22,18,30,0,78.23,25,1010.0 -2015,9,22,19,0,0,81.73,24,1010.0 -2015,9,22,19,30,0,81.75,24,1010.0 -2015,9,22,20,0,0,82.42,24,1010.0 -2015,9,22,20,30,0,87.53,23,1010.0 -2015,9,22,21,0,0,87.58,23,1010.0 -2015,9,22,21,30,0,87.59,23,1010.0 -2015,9,22,22,0,0,86.79,23,1010.0 -2015,9,22,22,30,0,86.78,23,1010.0 -2015,9,22,23,0,0,85.53,23,1010.0 -2015,9,22,23,30,0,85.52,23,1010.0 -2015,9,23,0,0,0,84.26,23,1010.0 -2015,9,23,0,30,0,84.25,23,1010.0 -2015,9,23,1,0,0,83.8,23,1010.0 -2015,9,23,1,30,0,89.02,22,1010.0 -2015,9,23,2,0,0,89.3,22,1010.0 -2015,9,23,2,30,0,94.91,21,1010.0 -2015,9,23,3,0,0,95.48,21,1010.0 -2015,9,23,3,30,0,100.0,20,1010.0 -2015,9,23,4,0,0,100.0,20,1010.0 -2015,9,23,4,30,0,100.0,19,1010.0 -2015,9,23,5,0,0,100.0,19,1010.0 -2015,9,23,5,30,0,100.0,19,1010.0 -2015,9,23,6,0,0,100.0,19,1010.0 -2015,9,23,6,30,33,100.0,20,1010.0 -2015,9,23,7,0,125,90.41,22,1010.0 -2015,9,23,7,30,234,85.11,23,1010.0 -2015,9,23,8,0,348,74.34,25,1010.0 -2015,9,23,8,30,458,70.07000000000001,26,1010.0 -2015,9,23,9,0,563,53.49,28,1010.0 -2015,9,23,9,30,658,50.480000000000004,29,1010.0 -2015,9,23,10,0,740,40.53,30,1010.0 -2015,9,23,10,30,808,40.52,30,1010.0 -2015,9,23,11,0,860,35.5,31,1010.0 -2015,9,23,11,30,895,35.49,31,1010.0 -2015,9,23,12,0,913,31.86,32,1010.0 -2015,9,23,12,30,913,31.84,32,1010.0 -2015,9,23,13,0,894,30.560000000000002,32,1010.0 -2015,9,23,13,30,857,30.55,32,1010.0 -2015,9,23,14,0,803,29.71,32,1010.0 -2015,9,23,14,30,735,29.7,32,1010.0 -2015,9,23,15,0,645,29.69,32,1010.0 -2015,9,23,15,30,549,31.42,31,1010.0 -2015,9,23,16,0,443,33.05,31,1010.0 -2015,9,23,16,30,333,37.06,29,1010.0 -2015,9,23,17,0,219,49.68,28,1010.0 -2015,9,23,17,30,111,55.85,26,1010.0 -2015,9,23,18,0,24,66.28,24,1010.0 -2015,9,23,18,30,0,70.38,23,1010.0 -2015,9,23,19,0,0,70.98,23,1010.0 -2015,9,23,19,30,0,75.41,23,1010.0 -2015,9,23,20,0,0,77.95,23,1010.0 -2015,9,23,20,30,0,77.96000000000001,22,1010.0 -2015,9,23,21,0,0,80.7,22,1010.0 -2015,9,23,21,30,0,80.7,22,1010.0 -2015,9,23,22,0,0,82.97,22,1010.0 -2015,9,23,22,30,0,82.97,22,1010.0 -2015,9,23,23,0,0,84.24,23,1010.0 -2015,9,23,23,30,0,84.24,23,1010.0 -2015,9,24,0,0,0,80.08,23,1010.0 -2015,9,24,0,30,0,80.08,23,1010.0 -2015,9,24,1,0,0,80.38,23,1010.0 -2015,9,24,1,30,0,80.38,23,1010.0 -2015,9,24,2,0,0,80.18,23,1010.0 -2015,9,24,2,30,0,85.18,22,1010.0 -2015,9,24,3,0,0,85.95,22,1010.0 -2015,9,24,3,30,0,91.36,21,1010.0 -2015,9,24,4,0,0,92.53,21,1010.0 -2015,9,24,4,30,0,92.54,21,1010.0 -2015,9,24,5,0,0,91.18,21,1010.0 -2015,9,24,5,30,0,91.19,21,1010.0 -2015,9,24,6,0,0,89.93,21,1010.0 -2015,9,24,6,30,23,89.95,21,1010.0 -2015,9,24,7,0,93,84.92,22,1010.0 -2015,9,24,7,30,216,79.95,23,1010.0 -2015,9,24,8,0,324,76.60000000000001,24,1010.0 -2015,9,24,8,30,326,72.18,25,1010.0 -2015,9,24,9,0,440,63.34,27,1010.0 -2015,9,24,9,30,514,59.75,28,1010.0 -2015,9,24,10,0,609,57.93,29,1010.0 -2015,9,24,10,30,665,57.92,29,1010.0 -2015,9,24,11,0,709,54.76,30,1010.0 -2015,9,24,11,30,600,54.74,30,1010.0 -2015,9,24,12,0,621,50.870000000000005,31,1010.0 -2015,9,24,12,30,620,50.85,31,1010.0 -2015,9,24,13,0,843,50.06,31,1010.0 -2015,9,24,13,30,808,50.04,31,1010.0 -2015,9,24,14,0,754,49.6,31,1010.0 -2015,9,24,14,30,491,49.6,31,1010.0 -2015,9,24,15,0,602,49.71,31,1010.0 -2015,9,24,15,30,510,52.620000000000005,30,1010.0 -2015,9,24,16,0,409,53.54,30,1010.0 -2015,9,24,16,30,304,56.71,29,1010.0 -2015,9,24,17,0,196,65.42,28,1010.0 -2015,9,24,17,30,97,69.35000000000001,27,1010.0 -2015,9,24,18,0,18,79.38,26,1010.0 -2015,9,24,18,30,0,84.23,25,1010.0 -2015,9,24,19,0,0,85.2,25,1010.0 -2015,9,24,19,30,0,85.22,25,1010.0 -2015,9,24,20,0,0,86.15,25,1010.0 -2015,9,24,20,30,0,86.15,25,1010.0 -2015,9,24,21,0,0,86.91,25,1010.0 -2015,9,24,21,30,0,86.91,25,1010.0 -2015,9,24,22,0,0,86.3,25,1010.0 -2015,9,24,22,30,0,86.3,25,1010.0 -2015,9,24,23,0,0,85.55,25,1010.0 -2015,9,24,23,30,0,90.81,24,1010.0 -2015,9,25,0,0,0,89.57000000000001,24,1010.0 -2015,9,25,0,30,0,89.57000000000001,24,1010.0 -2015,9,25,1,0,0,88.79,24,1010.0 -2015,9,25,1,30,0,94.28,23,1010.0 -2015,9,25,2,0,0,93.94,23,1010.0 -2015,9,25,2,30,0,99.79,22,1010.0 -2015,9,25,3,0,0,99.21000000000001,22,1010.0 -2015,9,25,3,30,0,99.21000000000001,22,1010.0 -2015,9,25,4,0,0,98.47,22,1010.0 -2015,9,25,4,30,0,98.48,22,1010.0 -2015,9,25,5,0,0,97.59,22,1010.0 -2015,9,25,5,30,0,97.61,22,1010.0 -2015,9,25,6,0,0,96.95,22,1010.0 -2015,9,25,6,30,16,96.97,23,1010.0 -2015,9,25,7,0,69,91.45,24,1010.0 -2015,9,25,7,30,212,86.13,25,1010.0 -2015,9,25,8,0,319,74.9,26,1010.0 -2015,9,25,8,30,424,70.63,27,1010.0 -2015,9,25,9,0,523,62.440000000000005,29,1010.0 -2015,9,25,9,30,538,58.92,29,1010.0 -2015,9,25,10,0,690,53.27,30,1010.0 -2015,9,25,10,30,754,53.26,30,1010.0 -2015,9,25,11,0,802,49.59,31,1010.0 -2015,9,25,11,30,835,49.57,31,1010.0 -2015,9,25,12,0,849,46.62,32,1010.0 -2015,9,25,12,30,847,46.6,32,1010.0 -2015,9,25,13,0,824,46.22,32,1010.0 -2015,9,25,13,30,789,48.89,31,1010.0 -2015,9,25,14,0,735,48.620000000000005,31,1010.0 -2015,9,25,14,30,669,48.61,31,1010.0 -2015,9,25,15,0,594,48.71,31,1010.0 -2015,9,25,15,30,504,51.56,30,1010.0 -2015,9,25,16,0,120,53.33,30,1010.0 -2015,9,25,16,30,300,56.480000000000004,29,1010.0 -2015,9,25,17,0,159,62.9,29,1010.0 -2015,9,25,17,30,78,66.65,28,1010.0 -2015,9,25,18,0,14,73.49,27,1010.0 -2015,9,25,18,30,0,77.94,26,1010.0 -2015,9,25,19,0,0,75.76,26,1010.0 -2015,9,25,19,30,0,80.4,25,1010.0 -2015,9,25,20,0,0,80.05,25,1010.0 -2015,9,25,20,30,0,80.06,25,1010.0 -2015,9,25,21,0,0,80.18,25,1010.0 -2015,9,25,21,30,0,85.09,24,1010.0 -2015,9,25,22,0,0,85.33,24,1010.0 -2015,9,25,22,30,0,85.32000000000001,24,1010.0 -2015,9,25,23,0,0,85.34,24,1010.0 -2015,9,25,23,30,0,90.61,23,1010.0 -2015,9,26,0,0,0,90.52,23,1010.0 -2015,9,26,0,30,0,90.5,23,1010.0 -2015,9,26,1,0,0,89.96000000000001,23,1010.0 -2015,9,26,1,30,0,89.94,23,1010.0 -2015,9,26,2,0,0,88.94,23,1010.0 -2015,9,26,2,30,0,94.47,22,1010.0 -2015,9,26,3,0,0,93.52,22,1010.0 -2015,9,26,3,30,0,93.52,22,1010.0 -2015,9,26,4,0,0,92.63,22,1010.0 -2015,9,26,4,30,0,98.45,22,1010.0 -2015,9,26,5,0,0,97.89,22,1010.0 -2015,9,26,5,30,0,97.9,22,1010.0 -2015,9,26,6,0,0,98.99000000000001,22,1010.0 -2015,9,26,6,30,22,93.15,22,1010.0 -2015,9,26,7,0,102,89.98,23,1010.0 -2015,9,26,7,30,151,90.0,23,1010.0 -2015,9,26,8,0,230,84.81,24,1010.0 -2015,9,26,8,30,385,79.91,25,1010.0 -2015,9,26,9,0,477,72.66,26,1010.0 -2015,9,26,9,30,499,68.51,27,1010.0 -2015,9,26,10,0,568,59.78,28,1010.0 -2015,9,26,10,30,623,59.77,28,1010.0 -2015,9,26,11,0,787,52.94,29,1010.0 -2015,9,26,11,30,821,52.92,29,1010.0 -2015,9,26,12,0,825,47.56,30,1010.0 -2015,9,26,12,30,824,47.54,30,1010.0 -2015,9,26,13,0,807,46.47,30,1010.0 -2015,9,26,13,30,772,46.45,30,1010.0 -2015,9,26,14,0,722,45.99,30,1010.0 -2015,9,26,14,30,655,45.97,30,1010.0 -2015,9,26,15,0,577,46.96,30,1010.0 -2015,9,26,15,30,458,49.74,29,1010.0 -2015,9,26,16,0,367,52.410000000000004,29,1010.0 -2015,9,26,16,30,286,55.53,28,1010.0 -2015,9,26,17,0,183,68.98,27,1010.0 -2015,9,26,17,30,85,73.16,26,1010.0 -2015,9,26,18,0,12,78.03,25,1010.0 -2015,9,26,18,30,0,82.83,24,1010.0 -2015,9,26,19,0,0,83.56,24,1010.0 -2015,9,26,19,30,0,88.74,23,1010.0 -2015,9,26,20,0,0,90.28,23,1010.0 -2015,9,26,20,30,0,90.28,23,1010.0 -2015,9,26,21,0,0,91.77,23,1010.0 -2015,9,26,21,30,0,91.77,23,1010.0 -2015,9,26,22,0,0,92.68,23,1010.0 -2015,9,26,22,30,0,92.67,23,1010.0 -2015,9,26,23,0,0,93.10000000000001,23,1010.0 -2015,9,26,23,30,0,98.9,22,1010.0 -2015,9,27,0,0,0,98.71000000000001,22,1010.0 -2015,9,27,0,30,0,98.71000000000001,22,1010.0 -2015,9,27,1,0,0,98.16,22,1010.0 -2015,9,27,1,30,0,98.15,22,1010.0 -2015,9,27,2,0,0,97.34,22,1010.0 -2015,9,27,2,30,0,97.32000000000001,22,1010.0 -2015,9,27,3,0,0,96.38,22,1010.0 -2015,9,27,3,30,0,96.37,22,1010.0 -2015,9,27,4,0,0,95.74000000000001,22,1010.0 -2015,9,27,4,30,0,95.74000000000001,22,1010.0 -2015,9,27,5,0,0,95.51,22,1010.0 -2015,9,27,5,30,0,95.51,22,1010.0 -2015,9,27,6,0,0,96.45,22,1010.0 -2015,9,27,6,30,0,96.47,22,1010.0 -2015,9,27,7,0,3,100.0,22,1010.0 -2015,9,27,7,30,49,100.0,22,1010.0 -2015,9,27,8,0,45,95.41,23,1010.0 -2015,9,27,8,30,228,95.42,23,1010.0 -2015,9,27,9,0,189,89.68,24,1010.0 -2015,9,27,9,30,158,89.68,24,1010.0 -2015,9,27,10,0,193,86.98,24,1010.0 -2015,9,27,10,30,247,86.96000000000001,24,1010.0 -2015,9,27,11,0,271,80.37,25,1010.0 -2015,9,27,11,30,269,85.27,25,1010.0 -2015,9,27,12,0,304,83.92,25,1010.0 -2015,9,27,12,30,299,83.88,24,1010.0 -2015,9,27,13,0,340,82.34,24,1000.0 -2015,9,27,13,30,324,82.3,24,1000.0 -2015,9,27,14,0,251,80.56,24,1000.0 -2015,9,27,14,30,319,85.53,24,1000.0 -2015,9,27,15,0,240,85.17,24,1000.0 -2015,9,27,15,30,201,85.17,23,1000.0 -2015,9,27,16,0,172,86.02,23,1000.0 -2015,9,27,16,30,117,86.03,23,1000.0 -2015,9,27,17,0,46,86.76,23,1000.0 -2015,9,27,17,30,21,92.18,22,1000.0 -2015,9,27,18,0,3,93.03,22,1000.0 -2015,9,27,18,30,0,93.04,22,1000.0 -2015,9,27,19,0,0,93.85000000000001,22,1000.0 -2015,9,27,19,30,0,99.76,21,1000.0 -2015,9,27,20,0,0,100.0,21,1000.0 -2015,9,27,20,30,0,100.0,21,1000.0 -2015,9,27,21,0,0,100.0,21,1000.0 -2015,9,27,21,30,0,100.0,21,1000.0 -2015,9,27,22,0,0,99.94,21,1000.0 -2015,9,27,22,30,0,99.92,21,1000.0 -2015,9,27,23,0,0,99.41,21,1000.0 -2015,9,27,23,30,0,100.0,21,1000.0 -2015,9,28,0,0,0,100.0,21,1000.0 -2015,9,28,0,30,0,100.0,21,1000.0 -2015,9,28,1,0,0,100.0,21,1000.0 -2015,9,28,1,30,0,100.0,20,1000.0 -2015,9,28,2,0,0,100.0,20,1000.0 -2015,9,28,2,30,0,100.0,20,1000.0 -2015,9,28,3,0,0,100.0,20,1000.0 -2015,9,28,3,30,0,100.0,20,1000.0 -2015,9,28,4,0,0,100.0,20,1000.0 -2015,9,28,4,30,0,100.0,20,1000.0 -2015,9,28,5,0,0,100.0,20,1000.0 -2015,9,28,5,30,0,100.0,20,1000.0 -2015,9,28,6,0,0,100.0,20,1000.0 -2015,9,28,6,30,2,100.0,20,1000.0 -2015,9,28,7,0,11,100.0,21,1000.0 -2015,9,28,7,30,10,100.0,21,1000.0 -2015,9,28,8,0,89,98.77,22,1000.0 -2015,9,28,8,30,175,92.97,23,1000.0 -2015,9,28,9,0,257,89.54,24,1000.0 -2015,9,28,9,30,314,89.52,24,1000.0 -2015,9,28,10,0,166,82.08,25,1000.0 -2015,9,28,10,30,269,82.05,25,1000.0 -2015,9,28,11,0,318,81.19,26,1000.0 -2015,9,28,11,30,477,81.16,26,1000.0 -2015,9,28,12,0,586,77.33,26,1000.0 -2015,9,28,12,30,609,82.01,25,1000.0 -2015,9,28,13,0,518,83.44,25,1000.0 -2015,9,28,13,30,334,83.42,25,1000.0 -2015,9,28,14,0,372,85.33,25,1000.0 -2015,9,28,14,30,320,90.54,24,1000.0 -2015,9,28,15,0,185,93.18,24,1000.0 -2015,9,28,15,30,176,93.17,24,1000.0 -2015,9,28,16,0,197,95.44,24,1000.0 -2015,9,28,16,30,135,95.45,24,1000.0 -2015,9,28,17,0,86,96.56,24,1000.0 -2015,9,28,17,30,38,100.0,23,1000.0 -2015,9,28,18,0,4,100.0,23,1000.0 -2015,9,28,18,30,0,100.0,23,1000.0 -2015,9,28,19,0,0,100.0,23,1000.0 -2015,9,28,19,30,0,100.0,23,1000.0 -2015,9,28,20,0,0,100.0,23,1000.0 -2015,9,28,20,30,0,100.0,23,1000.0 -2015,9,28,21,0,0,100.0,23,1000.0 -2015,9,28,21,30,0,100.0,23,1000.0 -2015,9,28,22,0,0,100.0,23,1000.0 -2015,9,28,22,30,0,100.0,22,1000.0 -2015,9,28,23,0,0,100.0,22,1000.0 -2015,9,28,23,30,0,100.0,22,1000.0 -2015,9,29,0,0,0,100.0,22,1000.0 -2015,9,29,0,30,0,100.0,22,1000.0 -2015,9,29,1,0,0,100.0,22,1000.0 -2015,9,29,1,30,0,100.0,22,1000.0 -2015,9,29,2,0,0,100.0,22,1000.0 -2015,9,29,2,30,0,100.0,21,1000.0 -2015,9,29,3,0,0,100.0,21,1000.0 -2015,9,29,3,30,0,100.0,21,1000.0 -2015,9,29,4,0,0,100.0,21,1000.0 -2015,9,29,4,30,0,100.0,21,1000.0 -2015,9,29,5,0,0,100.0,21,1000.0 -2015,9,29,5,30,0,100.0,21,1000.0 -2015,9,29,6,0,0,100.0,21,1000.0 -2015,9,29,6,30,25,100.0,21,1000.0 -2015,9,29,7,0,110,99.86,22,1000.0 -2015,9,29,7,30,214,94.04,23,1000.0 -2015,9,29,8,0,322,91.48,24,1000.0 -2015,9,29,8,30,427,86.21000000000001,25,1000.0 -2015,9,29,9,0,525,81.77,26,1000.0 -2015,9,29,9,30,614,77.11,27,1000.0 -2015,9,29,10,0,690,73.23,28,1000.0 -2015,9,29,10,30,754,73.22,28,1000.0 -2015,9,29,11,0,602,68.76,29,1000.0 -2015,9,29,11,30,626,68.74,29,1000.0 -2015,9,29,12,0,637,63.93,30,1000.0 -2015,9,29,12,30,848,63.89,30,1000.0 -2015,9,29,13,0,829,62.84,30,1000.0 -2015,9,29,13,30,793,62.82,30,1000.0 -2015,9,29,14,0,742,58.44,31,1000.0 -2015,9,29,14,30,675,61.86,30,1000.0 -2015,9,29,15,0,263,61.68,30,1000.0 -2015,9,29,15,30,355,61.68,30,1000.0 -2015,9,29,16,0,283,62.940000000000005,30,1000.0 -2015,9,29,16,30,232,66.67,29,1000.0 -2015,9,29,17,0,146,76.67,28,1000.0 -2015,9,29,17,30,83,81.3,27,1000.0 -2015,9,29,18,0,10,88.35000000000001,26,1000.0 -2015,9,29,18,30,0,93.76,25,1000.0 -2015,9,29,19,0,0,92.64,25,1000.0 -2015,9,29,19,30,0,98.35000000000001,25,1000.0 -2015,9,29,20,0,0,98.31,25,1000.0 -2015,9,29,20,30,0,98.32000000000001,24,1000.0 -2015,9,29,21,0,0,97.47,24,1000.0 -2015,9,29,21,30,0,97.48,24,1000.0 -2015,9,29,22,0,0,96.02,24,1000.0 -2015,9,29,22,30,0,100.0,23,1000.0 -2015,9,29,23,0,0,100.0,23,1010.0 -2015,9,29,23,30,0,100.0,23,1010.0 -2015,9,30,0,0,0,98.37,23,1010.0 -2015,9,30,0,30,0,100.0,22,1010.0 -2015,9,30,1,0,0,100.0,22,1010.0 -2015,9,30,1,30,0,100.0,22,1010.0 -2015,9,30,2,0,0,100.0,22,1010.0 -2015,9,30,2,30,0,100.0,21,1010.0 -2015,9,30,3,0,0,100.0,21,1010.0 -2015,9,30,3,30,0,100.0,21,1010.0 -2015,9,30,4,0,0,100.0,21,1010.0 -2015,9,30,4,30,0,100.0,21,1010.0 -2015,9,30,5,0,0,100.0,21,1010.0 -2015,9,30,5,30,0,100.0,21,1010.0 -2015,9,30,6,0,0,99.68,21,1010.0 -2015,9,30,6,30,23,99.71000000000001,21,1010.0 -2015,9,30,7,0,106,96.47,22,1010.0 -2015,9,30,7,30,208,90.82000000000001,23,1010.0 -2015,9,30,8,0,317,83.76,25,1010.0 -2015,9,30,8,30,423,78.96000000000001,26,1010.0 -2015,9,30,9,0,523,68.11,28,1010.0 -2015,9,30,9,30,613,68.11,28,1010.0 -2015,9,30,10,0,692,61.940000000000005,29,1010.0 -2015,9,30,10,30,756,61.92,29,1010.0 -2015,9,30,11,0,805,56.83,30,1010.0 -2015,9,30,11,30,838,56.81,30,1010.0 -2015,9,30,12,0,851,52.22,31,1010.0 -2015,9,30,12,30,849,52.2,31,1010.0 -2015,9,30,13,0,829,47.95,32,1010.0 -2015,9,30,13,30,793,47.93,32,1010.0 -2015,9,30,14,0,740,46.74,32,1010.0 -2015,9,30,14,30,673,46.730000000000004,32,1000.0 -2015,9,30,15,0,591,46.410000000000004,32,1000.0 -2015,9,30,15,30,499,49.11,31,1000.0 -2015,9,30,16,0,397,50.17,31,1000.0 -2015,9,30,16,30,290,53.13,30,1010.0 -2015,9,30,17,0,183,64.14,29,1010.0 -2015,9,30,17,30,82,72.05,27,1010.0 -2015,9,30,18,0,0,75.78,26,1010.0 -2015,9,30,18,30,0,80.42,25,1010.0 -2015,9,30,19,0,0,77.58,25,1010.0 -2015,9,30,19,30,0,82.37,24,1010.0 -2015,9,30,20,0,0,80.63,24,1010.0 -2015,9,30,20,30,0,80.64,24,1010.0 -2015,9,30,21,0,0,79.26,24,1010.0 -2015,9,30,21,30,0,84.17,23,1010.0 -2015,9,30,22,0,0,82.76,23,1010.0 -2015,9,30,22,30,0,87.92,22,1010.0 -2015,9,30,23,0,0,86.78,22,1010.0 -2015,9,30,23,30,0,92.22,22,1010.0 -2015,10,1,0,0,0,91.13,22,1010.0 -2015,10,1,0,30,0,91.13,21,1010.0 -2015,10,1,1,0,0,90.07000000000001,21,1010.0 -2015,10,1,1,30,0,95.79,20,1010.0 -2015,10,1,2,0,0,94.63,20,1010.0 -2015,10,1,2,30,0,94.64,20,1010.0 -2015,10,1,3,0,0,94.09,20,1010.0 -2015,10,1,3,30,0,94.10000000000001,20,1010.0 -2015,10,1,4,0,0,94.51,20,1010.0 -2015,10,1,4,30,0,100.0,20,1010.0 -2015,10,1,5,0,0,100.0,20,1010.0 -2015,10,1,5,30,0,100.0,20,1010.0 -2015,10,1,6,0,0,96.06,20,1010.0 -2015,10,1,6,30,16,96.09,20,1010.0 -2015,10,1,7,0,80,92.51,21,1010.0 -2015,10,1,7,30,208,87.06,22,1010.0 -2015,10,1,8,0,317,82.96000000000001,23,1010.0 -2015,10,1,8,30,423,78.13,24,1010.0 -2015,10,1,9,0,526,72.28,25,1010.0 -2015,10,1,9,30,617,68.12,26,1010.0 -2015,10,1,10,0,697,61.86,27,1010.0 -2015,10,1,10,30,762,58.34,28,1010.0 -2015,10,1,11,0,812,53.27,29,1010.0 -2015,10,1,11,30,844,53.25,29,1010.0 -2015,10,1,12,0,859,48.370000000000005,30,1010.0 -2015,10,1,12,30,856,48.34,30,1010.0 -2015,10,1,13,0,836,46.4,31,1010.0 -2015,10,1,13,30,799,46.38,31,1010.0 -2015,10,1,14,0,744,42.25,31,1010.0 -2015,10,1,14,30,675,42.24,31,1010.0 -2015,10,1,15,0,588,41.26,31,1010.0 -2015,10,1,15,30,494,43.67,30,1010.0 -2015,10,1,16,0,390,44.01,30,1010.0 -2015,10,1,16,30,283,49.39,29,1010.0 -2015,10,1,17,0,175,60.300000000000004,28,1010.0 -2015,10,1,17,30,76,67.86,26,1010.0 -2015,10,1,18,0,0,69.97,24,1010.0 -2015,10,1,18,30,0,74.32000000000001,23,1010.0 -2015,10,1,19,0,0,71.51,23,1010.0 -2015,10,1,19,30,0,76.0,22,1010.0 -2015,10,1,20,0,0,74.05,22,1010.0 -2015,10,1,20,30,0,74.06,22,1010.0 -2015,10,1,21,0,0,72.03,22,1010.0 -2015,10,1,21,30,0,76.56,21,1010.0 -2015,10,1,22,0,0,74.23,21,1010.0 -2015,10,1,22,30,0,78.93,20,1010.0 -2015,10,1,23,0,0,76.59,20,1010.0 -2015,10,1,23,30,0,81.47,19,1010.0 -2015,10,2,0,0,0,78.8,19,1010.0 -2015,10,2,0,30,0,83.86,19,1010.0 -2015,10,2,1,0,0,81.22,19,1010.0 -2015,10,2,1,30,0,81.22,18,1010.0 -2015,10,2,2,0,0,78.31,18,1010.0 -2015,10,2,2,30,0,83.39,17,1010.0 -2015,10,2,3,0,0,79.64,17,1010.0 -2015,10,2,3,30,0,79.65,17,1010.0 -2015,10,2,4,0,0,77.65,17,1010.0 -2015,10,2,4,30,0,82.75,16,1010.0 -2015,10,2,5,0,0,81.23,16,1010.0 -2015,10,2,5,30,0,86.60000000000001,16,1010.0 -2015,10,2,6,0,0,85.33,16,1010.0 -2015,10,2,6,30,23,80.06,16,1010.0 -2015,10,2,7,0,112,73.29,17,1010.0 -2015,10,2,7,30,221,68.83,18,1010.0 -2015,10,2,8,0,336,57.17,20,1010.0 -2015,10,2,8,30,447,53.76,21,1010.0 -2015,10,2,9,0,552,48.88,22,1010.0 -2015,10,2,9,30,645,48.870000000000005,22,1010.0 -2015,10,2,10,0,726,45.18,23,1010.0 -2015,10,2,10,30,792,42.53,24,1010.0 -2015,10,2,11,0,841,39.15,25,1010.0 -2015,10,2,11,30,873,39.13,26,1010.0 -2015,10,2,12,0,887,35.71,27,1010.0 -2015,10,2,12,30,884,35.69,27,1010.0 -2015,10,2,13,0,863,32.57,28,1010.0 -2015,10,2,13,30,824,32.55,28,1010.0 -2015,10,2,14,0,769,30.01,28,1000.0 -2015,10,2,14,30,699,30.0,28,1000.0 -2015,10,2,15,0,613,29.95,28,1000.0 -2015,10,2,15,30,517,31.75,27,1000.0 -2015,10,2,16,0,413,33.86,27,1000.0 -2015,10,2,16,30,302,38.09,25,1000.0 -2015,10,2,17,0,190,49.160000000000004,24,1000.0 -2015,10,2,17,30,84,55.46,22,1000.0 -2015,10,2,18,0,0,61.08,20,1000.0 -2015,10,2,18,30,0,64.99,19,1000.0 -2015,10,2,19,0,0,62.28,19,1000.0 -2015,10,2,19,30,0,66.31,18,1010.0 -2015,10,2,20,0,0,64.33,18,1010.0 -2015,10,2,20,30,0,68.52,17,1010.0 -2015,10,2,21,0,0,67.25,17,1010.0 -2015,10,2,21,30,0,71.64,16,1010.0 -2015,10,2,22,0,0,71.04,16,1010.0 -2015,10,2,22,30,0,75.72,15,1010.0 -2015,10,2,23,0,0,75.82000000000001,15,1010.0 -2015,10,2,23,30,0,75.81,15,1010.0 -2015,10,3,0,0,0,76.28,15,1010.0 -2015,10,3,0,30,0,81.34,14,1010.0 -2015,10,3,1,0,0,81.71000000000001,14,1010.0 -2015,10,3,1,30,0,81.7,14,1000.0 -2015,10,3,2,0,0,82.11,14,1000.0 -2015,10,3,2,30,0,87.61,14,1000.0 -2015,10,3,3,0,0,88.55,14,1000.0 -2015,10,3,3,30,0,88.54,13,1000.0 -2015,10,3,4,0,0,90.25,13,1000.0 -2015,10,3,4,30,0,90.25,13,1000.0 -2015,10,3,5,0,0,93.13,13,1000.0 -2015,10,3,5,30,0,93.15,13,1000.0 -2015,10,3,6,0,0,96.28,13,1010.0 -2015,10,3,6,30,22,90.25,14,1010.0 -2015,10,3,7,0,111,87.98,15,1010.0 -2015,10,3,7,30,220,82.56,16,1010.0 -2015,10,3,8,0,335,74.56,18,1010.0 -2015,10,3,8,30,445,70.05,19,1010.0 -2015,10,3,9,0,548,60.09,21,1010.0 -2015,10,3,9,30,641,56.53,22,1010.0 -2015,10,3,10,0,721,51.57,23,1010.0 -2015,10,3,10,30,786,48.550000000000004,24,1010.0 -2015,10,3,11,0,835,44.88,25,1010.0 -2015,10,3,11,30,867,44.85,25,1000.0 -2015,10,3,12,0,880,41.34,26,1000.0 -2015,10,3,12,30,876,41.31,26,1000.0 -2015,10,3,13,0,853,40.1,27,1000.0 -2015,10,3,13,30,814,40.08,27,1000.0 -2015,10,3,14,0,755,36.87,27,1000.0 -2015,10,3,14,30,685,36.86,27,1000.0 -2015,10,3,15,0,597,35.93,27,1000.0 -2015,10,3,15,30,502,35.93,27,1000.0 -2015,10,3,16,0,394,36.5,27,1000.0 -2015,10,3,16,30,284,38.71,26,1000.0 -2015,10,3,17,0,172,51.910000000000004,25,1000.0 -2015,10,3,17,30,71,55.11,24,1000.0 -2015,10,3,18,0,0,52.02,23,1000.0 -2015,10,3,18,30,0,55.28,22,1000.0 -2015,10,3,19,0,0,54.95,22,1000.0 -2015,10,3,19,30,0,58.42,21,1000.0 -2015,10,3,20,0,0,63.89,20,1000.0 -2015,10,3,20,30,0,67.97,19,1000.0 -2015,10,3,21,0,0,68.63,19,1000.0 -2015,10,3,21,30,0,73.06,18,1000.0 -2015,10,3,22,0,0,74.32000000000001,18,1000.0 -2015,10,3,22,30,0,79.15,17,1000.0 -2015,10,3,23,0,0,81.52,17,1000.0 -2015,10,3,23,30,0,81.53,17,1000.0 -2015,10,4,0,0,0,83.27,17,1010.0 -2015,10,4,0,30,0,88.74,17,1010.0 -2015,10,4,1,0,0,89.68,17,1010.0 -2015,10,4,1,30,0,89.69,16,1010.0 -2015,10,4,2,0,0,89.72,16,1010.0 -2015,10,4,2,30,0,89.73,16,1010.0 -2015,10,4,3,0,0,89.76,16,1010.0 -2015,10,4,3,30,0,95.7,15,1010.0 -2015,10,4,4,0,0,95.46000000000001,15,1010.0 -2015,10,4,4,30,0,100.0,14,1010.0 -2015,10,4,5,0,0,100.0,14,1010.0 -2015,10,4,5,30,0,100.0,14,1010.0 -2015,10,4,6,0,0,100.0,14,1010.0 -2015,10,4,6,30,10,95.23,15,1010.0 -2015,10,4,7,0,57,88.55,16,1010.0 -2015,10,4,7,30,203,83.13,17,1010.0 -2015,10,4,8,0,315,76.76,18,1010.0 -2015,10,4,8,30,421,72.12,19,1010.0 -2015,10,4,9,0,524,67.55,21,1010.0 -2015,10,4,9,30,615,63.51,22,1010.0 -2015,10,4,10,0,694,54.54,23,1010.0 -2015,10,4,10,30,758,51.35,24,1010.0 -2015,10,4,11,0,807,47.86,25,1010.0 -2015,10,4,11,30,839,47.83,25,1010.0 -2015,10,4,12,0,854,44.95,26,1010.0 -2015,10,4,12,30,850,44.92,26,1010.0 -2015,10,4,13,0,829,41.95,27,1010.0 -2015,10,4,13,30,790,41.93,27,1010.0 -2015,10,4,14,0,736,38.97,28,1010.0 -2015,10,4,14,30,666,38.96,28,1010.0 -2015,10,4,15,0,583,38.14,28,1010.0 -2015,10,4,15,30,489,40.42,27,1010.0 -2015,10,4,16,0,387,40.97,27,1010.0 -2015,10,4,16,30,279,43.45,26,1010.0 -2015,10,4,17,0,171,56.550000000000004,25,1010.0 -2015,10,4,17,30,71,63.75,23,1010.0 -2015,10,4,18,0,0,65.85,22,1010.0 -2015,10,4,18,30,0,70.01,21,1010.0 -2015,10,4,19,0,0,67.68,21,1010.0 -2015,10,4,19,30,0,71.99,20,1010.0 -2015,10,4,20,0,0,71.51,20,1010.0 -2015,10,4,20,30,0,76.09,19,1010.0 -2015,10,4,21,0,0,76.58,19,1010.0 -2015,10,4,21,30,0,76.59,19,1010.0 -2015,10,4,22,0,0,77.33,19,1010.0 -2015,10,4,22,30,0,82.31,18,1010.0 -2015,10,4,23,0,0,83.09,18,1010.0 -2015,10,4,23,30,0,88.48,17,1010.0 -2015,10,5,0,0,0,88.7,17,1010.0 -2015,10,5,0,30,0,88.7,17,1010.0 -2015,10,5,1,0,0,88.95,17,1010.0 -2015,10,5,1,30,0,94.77,16,1010.0 -2015,10,5,2,0,0,95.06,16,1010.0 -2015,10,5,2,30,0,95.06,16,1010.0 -2015,10,5,3,0,0,95.23,16,1010.0 -2015,10,5,3,30,0,95.24,16,1010.0 -2015,10,5,4,0,0,95.15,16,1010.0 -2015,10,5,4,30,0,100.0,15,1010.0 -2015,10,5,5,0,0,100.0,15,1010.0 -2015,10,5,5,30,0,100.0,15,1010.0 -2015,10,5,6,0,0,100.0,15,1010.0 -2015,10,5,6,30,17,94.63,16,1010.0 -2015,10,5,7,0,97,88.88,17,1010.0 -2015,10,5,7,30,198,83.47,18,1010.0 -2015,10,5,8,0,305,77.29,20,1010.0 -2015,10,5,8,30,410,72.66,21,1010.0 -2015,10,5,9,0,509,69.31,22,1010.0 -2015,10,5,9,30,598,65.21000000000001,22,1010.0 -2015,10,5,10,0,675,62.940000000000005,23,1010.0 -2015,10,5,10,30,738,59.26,24,1010.0 -2015,10,5,11,0,785,57.26,25,1010.0 -2015,10,5,11,30,817,53.95,26,1010.0 -2015,10,5,12,0,833,52.07,27,1010.0 -2015,10,5,12,30,830,52.050000000000004,27,1010.0 -2015,10,5,13,0,809,50.02,28,1010.0 -2015,10,5,13,30,771,50.0,28,1010.0 -2015,10,5,14,0,715,50.550000000000004,29,1010.0 -2015,10,5,14,30,647,50.54,29,1010.0 -2015,10,5,15,0,562,47.78,29,1010.0 -2015,10,5,15,30,470,50.63,28,1010.0 -2015,10,5,16,0,365,50.94,28,1010.0 -2015,10,5,16,30,260,54.01,27,1010.0 -2015,10,5,17,0,153,64.49,26,1010.0 -2015,10,5,17,30,60,72.63,24,1010.0 -2015,10,5,18,0,0,76.96000000000001,23,1010.0 -2015,10,5,18,30,0,81.78,22,1010.0 -2015,10,5,19,0,0,79.75,22,1010.0 -2015,10,5,19,30,0,84.79,21,1010.0 -2015,10,5,20,0,0,83.68,21,1010.0 -2015,10,5,20,30,0,83.7,21,1010.0 -2015,10,5,21,0,0,82.81,21,1010.0 -2015,10,5,21,30,0,88.06,20,1010.0 -2015,10,5,22,0,0,87.07000000000001,20,1010.0 -2015,10,5,22,30,0,87.07000000000001,20,1010.0 -2015,10,5,23,0,0,85.95,20,1010.0 -2015,10,5,23,30,0,91.43,19,1010.0 -2015,10,6,0,0,0,90.10000000000001,19,1010.0 -2015,10,6,0,30,0,90.10000000000001,19,1010.0 -2015,10,6,1,0,0,88.75,19,1010.0 -2015,10,6,1,30,0,94.46000000000001,18,1010.0 -2015,10,6,2,0,0,93.17,18,1010.0 -2015,10,6,2,30,0,93.17,18,1010.0 -2015,10,6,3,0,0,92.48,18,1010.0 -2015,10,6,3,30,0,92.49,18,1010.0 -2015,10,6,4,0,0,92.42,18,1010.0 -2015,10,6,4,30,0,98.44,18,1010.0 -2015,10,6,5,0,0,98.59,18,1010.0 -2015,10,6,5,30,0,98.61,18,1010.0 -2015,10,6,6,0,0,99.09,18,1010.0 -2015,10,6,6,30,15,93.08,18,1010.0 -2015,10,6,7,0,92,88.72,19,1010.0 -2015,10,6,7,30,191,83.41,20,1010.0 -2015,10,6,8,0,297,76.61,22,1010.0 -2015,10,6,8,30,401,67.92,24,1010.0 -2015,10,6,9,0,499,60.17,26,1010.0 -2015,10,6,9,30,512,56.730000000000004,27,1010.0 -2015,10,6,10,0,558,52.99,28,1010.0 -2015,10,6,10,30,728,52.97,28,1010.0 -2015,10,6,11,0,775,50.050000000000004,29,1010.0 -2015,10,6,11,30,806,50.03,29,1010.0 -2015,10,6,12,0,827,47.28,30,1010.0 -2015,10,6,12,30,823,47.25,30,1010.0 -2015,10,6,13,0,803,44.38,31,1010.0 -2015,10,6,13,30,765,44.36,31,1010.0 -2015,10,6,14,0,711,43.83,31,1010.0 -2015,10,6,14,30,642,43.82,31,1010.0 -2015,10,6,15,0,560,43.26,31,1010.0 -2015,10,6,15,30,468,45.79,30,1010.0 -2015,10,6,16,0,365,46.08,30,1010.0 -2015,10,6,16,30,260,48.81,29,1010.0 -2015,10,6,17,0,154,60.1,28,1010.0 -2015,10,6,17,30,59,63.71,27,1010.0 -2015,10,6,18,0,0,69.63,26,1010.0 -2015,10,6,18,30,0,73.89,25,1010.0 -2015,10,6,19,0,0,74.67,25,1010.0 -2015,10,6,19,30,0,79.27,24,1010.0 -2015,10,6,20,0,0,79.78,24,1010.0 -2015,10,6,20,30,0,84.73,23,1010.0 -2015,10,6,21,0,0,84.41,23,1010.0 -2015,10,6,21,30,0,89.68,22,1010.0 -2015,10,6,22,0,0,89.31,22,1010.0 -2015,10,6,22,30,0,89.3,22,1010.0 -2015,10,6,23,0,0,89.34,22,1010.0 -2015,10,6,23,30,0,94.95,21,1010.0 -2015,10,7,0,0,0,95.23,21,1010.0 -2015,10,7,0,30,0,95.22,21,1010.0 -2015,10,7,1,0,0,95.48,21,1010.0 -2015,10,7,1,30,0,95.47,21,1010.0 -2015,10,7,2,0,0,95.56,21,1010.0 -2015,10,7,2,30,0,100.0,20,1010.0 -2015,10,7,3,0,0,100.0,20,1010.0 -2015,10,7,3,30,0,100.0,20,1010.0 -2015,10,7,4,0,0,100.0,20,1010.0 -2015,10,7,4,30,0,100.0,19,1010.0 -2015,10,7,5,0,0,100.0,19,1010.0 -2015,10,7,5,30,0,100.0,19,1010.0 -2015,10,7,6,0,0,100.0,19,1010.0 -2015,10,7,6,30,13,100.0,20,1010.0 -2015,10,7,7,0,87,96.28,21,1010.0 -2015,10,7,7,30,185,90.60000000000001,22,1010.0 -2015,10,7,8,0,290,80.22,24,1010.0 -2015,10,7,8,30,393,75.58,26,1010.0 -2015,10,7,9,0,490,61.620000000000005,28,1010.0 -2015,10,7,9,30,578,58.13,28,1010.0 -2015,10,7,10,0,654,53.29,29,1010.0 -2015,10,7,10,30,716,53.28,29,1010.0 -2015,10,7,11,0,763,50.29,30,1010.0 -2015,10,7,11,30,793,50.27,30,1010.0 -2015,10,7,12,0,814,47.61,31,1010.0 -2015,10,7,12,30,810,47.58,31,1010.0 -2015,10,7,13,0,788,47.46,31,1010.0 -2015,10,7,13,30,750,47.44,31,1010.0 -2015,10,7,14,0,621,47.300000000000004,31,1010.0 -2015,10,7,14,30,502,47.28,31,1010.0 -2015,10,7,15,0,435,47.51,31,1010.0 -2015,10,7,15,30,282,50.300000000000004,30,1010.0 -2015,10,7,16,0,307,51.35,30,1010.0 -2015,10,7,16,30,193,54.39,29,1010.0 -2015,10,7,17,0,85,65.08,28,1010.0 -2015,10,7,17,30,31,73.17,27,1010.0 -2015,10,7,18,0,0,79.99,26,1010.0 -2015,10,7,18,30,0,80.01,25,1010.0 -2015,10,7,19,0,0,78.64,25,1010.0 -2015,10,7,19,30,0,83.48,24,1010.0 -2015,10,7,20,0,0,84.81,24,1010.0 -2015,10,7,20,30,0,84.81,24,1010.0 -2015,10,7,21,0,0,86.24,24,1010.0 -2015,10,7,21,30,0,91.58,23,1010.0 -2015,10,7,22,0,0,92.72,23,1010.0 -2015,10,7,22,30,0,92.71000000000001,23,1010.0 -2015,10,7,23,0,0,93.35000000000001,23,1010.0 -2015,10,7,23,30,0,93.34,23,1010.0 -2015,10,8,0,0,0,93.06,23,1010.0 -2015,10,8,0,30,0,98.86,23,1010.0 -2015,10,8,1,0,0,97.52,23,1010.0 -2015,10,8,1,30,0,97.51,22,1010.0 -2015,10,8,2,0,0,96.47,22,1010.0 -2015,10,8,2,30,0,96.46000000000001,22,1010.0 -2015,10,8,3,0,0,96.63,22,1010.0 -2015,10,8,3,30,0,100.0,22,1010.0 -2015,10,8,4,0,0,100.0,22,1010.0 -2015,10,8,4,30,0,100.0,21,1010.0 -2015,10,8,5,0,0,100.0,21,1010.0 -2015,10,8,5,30,0,100.0,21,1010.0 -2015,10,8,6,0,0,100.0,21,1010.0 -2015,10,8,6,30,6,100.0,22,1010.0 -2015,10,8,7,0,43,100.0,23,1010.0 -2015,10,8,7,30,158,94.96000000000001,24,1010.0 -2015,10,8,8,0,286,82.93,25,1010.0 -2015,10,8,8,30,299,78.17,26,1010.0 -2015,10,8,9,0,400,67.05,27,1010.0 -2015,10,8,9,30,484,63.25,28,1010.0 -2015,10,8,10,0,509,56.160000000000004,29,1010.0 -2015,10,8,10,30,558,56.15,29,1010.0 -2015,10,8,11,0,589,54.870000000000005,30,1010.0 -2015,10,8,11,30,626,54.85,30,1010.0 -2015,10,8,12,0,523,51.24,30,1010.0 -2015,10,8,12,30,546,51.22,30,1010.0 -2015,10,8,13,0,486,50.870000000000005,30,1010.0 -2015,10,8,13,30,489,50.85,30,1010.0 -2015,10,8,14,0,556,50.7,30,1010.0 -2015,10,8,14,30,493,53.69,29,1010.0 -2015,10,8,15,0,338,54.72,29,1010.0 -2015,10,8,15,30,373,57.980000000000004,28,1010.0 -2015,10,8,16,0,220,62.35,28,1010.0 -2015,10,8,16,30,207,66.11,27,1010.0 -2015,10,8,17,0,107,77.82000000000001,26,1010.0 -2015,10,8,17,30,37,82.58,25,1010.0 -2015,10,8,18,0,0,82.93,25,1010.0 -2015,10,8,18,30,0,88.03,24,1010.0 -2015,10,8,19,0,0,89.35000000000001,24,1010.0 -2015,10,8,19,30,0,89.35000000000001,24,1010.0 -2015,10,8,20,0,0,90.63,24,1010.0 -2015,10,8,20,30,0,96.24000000000001,23,1010.0 -2015,10,8,21,0,0,97.7,23,1010.0 -2015,10,8,21,30,0,97.7,23,1010.0 -2015,10,8,22,0,0,98.75,23,1010.0 -2015,10,8,22,30,0,98.76,23,1010.0 -2015,10,8,23,0,0,98.93,23,1010.0 -2015,10,8,23,30,0,98.95,23,1010.0 -2015,10,9,0,0,0,98.37,23,1010.0 -2015,10,9,0,30,0,98.38,23,1010.0 -2015,10,9,1,0,0,97.91,23,1010.0 -2015,10,9,1,30,0,97.91,23,1010.0 -2015,10,9,2,0,0,97.51,23,1010.0 -2015,10,9,2,30,0,100.0,22,1010.0 -2015,10,9,3,0,0,100.0,22,1010.0 -2015,10,9,3,30,0,100.0,22,1010.0 -2015,10,9,4,0,0,100.0,22,1010.0 -2015,10,9,4,30,0,100.0,22,1010.0 -2015,10,9,5,0,0,100.0,22,1010.0 -2015,10,9,5,30,0,100.0,21,1010.0 -2015,10,9,6,0,0,100.0,21,1010.0 -2015,10,9,6,30,3,100.0,22,1010.0 -2015,10,9,7,0,23,99.01,23,1010.0 -2015,10,9,7,30,125,99.04,23,1010.0 -2015,10,9,8,0,154,93.10000000000001,24,1010.0 -2015,10,9,8,30,200,87.72,25,1010.0 -2015,10,9,9,0,334,78.0,26,1010.0 -2015,10,9,9,30,445,73.55,27,1010.0 -2015,10,9,10,0,545,63.910000000000004,28,1010.0 -2015,10,9,10,30,596,63.89,28,1010.0 -2015,10,9,11,0,624,56.800000000000004,29,1010.0 -2015,10,9,11,30,669,56.78,29,1010.0 -2015,10,9,12,0,658,51.54,30,1010.0 -2015,10,9,12,30,650,51.52,30,1010.0 -2015,10,9,13,0,607,50.31,30,1010.0 -2015,10,9,13,30,620,50.29,30,1010.0 -2015,10,9,14,0,473,49.67,30,1010.0 -2015,10,9,14,30,410,49.67,30,1010.0 -2015,10,9,15,0,423,49.730000000000004,30,1010.0 -2015,10,9,15,30,310,52.67,29,1010.0 -2015,10,9,16,0,302,55.77,29,1010.0 -2015,10,9,16,30,226,59.11,28,1010.0 -2015,10,9,17,0,88,71.13,28,1010.0 -2015,10,9,17,30,29,75.44,27,1010.0 -2015,10,9,18,0,0,73.61,26,1010.0 -2015,10,9,18,30,0,78.11,25,1010.0 -2015,10,9,19,0,0,79.08,25,1010.0 -2015,10,9,19,30,0,83.96000000000001,24,1010.0 -2015,10,9,20,0,0,82.68,24,1010.0 -2015,10,9,20,30,0,87.81,23,1010.0 -2015,10,9,21,0,0,86.2,23,1010.0 -2015,10,9,21,30,0,86.2,23,1010.0 -2015,10,9,22,0,0,84.60000000000001,23,1010.0 -2015,10,9,22,30,0,89.86,22,1010.0 -2015,10,9,23,0,0,88.15,22,1010.0 -2015,10,9,23,30,0,88.15,22,1010.0 -2015,10,10,0,0,0,86.78,22,1010.0 -2015,10,10,0,30,0,92.24,21,1010.0 -2015,10,10,1,0,0,90.41,21,1010.0 -2015,10,10,1,30,0,90.41,21,1010.0 -2015,10,10,2,0,0,88.38,21,1010.0 -2015,10,10,2,30,0,93.98,20,1010.0 -2015,10,10,3,0,0,91.65,20,1010.0 -2015,10,10,3,30,0,91.66,20,1010.0 -2015,10,10,4,0,0,89.72,20,1010.0 -2015,10,10,4,30,0,89.74,20,1010.0 -2015,10,10,5,0,0,88.63,20,1010.0 -2015,10,10,5,30,0,94.32000000000001,19,1010.0 -2015,10,10,6,0,0,93.93,19,1010.0 -2015,10,10,6,30,9,93.95,19,1010.0 -2015,10,10,7,0,79,88.74,20,1010.0 -2015,10,10,7,30,174,83.48,21,1010.0 -2015,10,10,8,0,275,79.68,23,1010.0 -2015,10,10,8,30,377,75.01,24,1010.0 -2015,10,10,9,0,481,67.29,25,1010.0 -2015,10,10,9,30,569,63.410000000000004,26,1010.0 -2015,10,10,10,0,647,58.7,27,1010.0 -2015,10,10,10,30,709,55.35,28,1010.0 -2015,10,10,11,0,758,50.46,29,1010.0 -2015,10,10,11,30,788,50.43,29,1010.0 -2015,10,10,12,0,808,46.730000000000004,30,1010.0 -2015,10,10,12,30,805,46.7,30,1010.0 -2015,10,10,13,0,786,43.480000000000004,31,1010.0 -2015,10,10,13,30,748,43.45,31,1010.0 -2015,10,10,14,0,697,42.9,31,1010.0 -2015,10,10,14,30,629,42.89,31,1010.0 -2015,10,10,15,0,541,42.24,31,1010.0 -2015,10,10,15,30,448,44.71,30,1010.0 -2015,10,10,16,0,350,44.160000000000004,30,1010.0 -2015,10,10,16,30,245,49.56,29,1010.0 -2015,10,10,17,0,142,62.09,28,1010.0 -2015,10,10,17,30,49,69.87,26,1010.0 -2015,10,10,18,0,0,71.97,25,1010.0 -2015,10,10,18,30,0,76.44,24,1010.0 -2015,10,10,19,0,0,71.63,23,1010.0 -2015,10,10,19,30,0,76.12,22,1010.0 -2015,10,10,20,0,0,72.94,22,1010.0 -2015,10,10,20,30,0,77.55,21,1010.0 -2015,10,10,21,0,0,75.72,21,1010.0 -2015,10,10,21,30,0,80.52,20,1010.0 -2015,10,10,22,0,0,79.14,20,1010.0 -2015,10,10,22,30,0,84.19,19,1010.0 -2015,10,10,23,0,0,83.09,19,1010.0 -2015,10,10,23,30,0,88.43,18,1010.0 -2015,10,11,0,0,0,88.02,18,1010.0 -2015,10,11,0,30,0,88.02,18,1010.0 -2015,10,11,1,0,0,88.25,18,1010.0 -2015,10,11,1,30,0,88.23,18,1010.0 -2015,10,11,2,0,0,88.68,18,1010.0 -2015,10,11,2,30,0,94.42,18,1010.0 -2015,10,11,3,0,0,95.12,18,1010.0 -2015,10,11,3,30,0,95.11,18,1010.0 -2015,10,11,4,0,0,96.19,18,1010.0 -2015,10,11,4,30,0,96.19,17,1010.0 -2015,10,11,5,0,0,97.22,17,1010.0 -2015,10,11,5,30,0,97.22,17,1010.0 -2015,10,11,6,0,0,98.37,18,1010.0 -2015,10,11,6,30,11,92.39,19,1010.0 -2015,10,11,7,0,87,86.04,20,1010.0 -2015,10,11,7,30,187,80.92,21,1010.0 -2015,10,11,8,0,293,73.79,23,1010.0 -2015,10,11,8,30,398,69.48,24,1010.0 -2015,10,11,9,0,495,59.300000000000004,26,1010.0 -2015,10,11,9,30,583,55.9,27,1010.0 -2015,10,11,10,0,657,52.22,28,1010.0 -2015,10,11,10,30,719,49.26,29,1010.0 -2015,10,11,11,0,763,47.58,30,1010.0 -2015,10,11,11,30,793,47.550000000000004,30,1010.0 -2015,10,11,12,0,815,45.800000000000004,31,1010.0 -2015,10,11,12,30,811,45.76,31,1010.0 -2015,10,11,13,0,788,43.82,32,1010.0 -2015,10,11,13,30,749,43.79,32,1010.0 -2015,10,11,14,0,694,44.35,32,1010.0 -2015,10,11,14,30,624,46.910000000000004,31,1010.0 -2015,10,11,15,0,535,47.4,31,1000.0 -2015,10,11,15,30,442,50.17,30,1000.0 -2015,10,11,16,0,341,51.050000000000004,30,1000.0 -2015,10,11,16,30,236,54.07,29,1000.0 -2015,10,11,17,0,133,61.32,28,1000.0 -2015,10,11,17,30,43,68.93,26,1000.0 -2015,10,11,18,0,0,77.18,25,1000.0 -2015,10,11,18,30,0,81.94,24,1000.0 -2015,10,11,19,0,0,85.25,24,1010.0 -2015,10,11,19,30,0,90.55,23,1010.0 -2015,10,11,20,0,0,93.69,23,1010.0 -2015,10,11,20,30,0,93.69,23,1010.0 -2015,10,11,21,0,0,95.16,23,1010.0 -2015,10,11,21,30,0,100.0,22,1010.0 -2015,10,11,22,0,0,100.0,22,1010.0 -2015,10,11,22,30,0,100.0,22,1010.0 -2015,10,11,23,0,0,100.0,22,1010.0 -2015,10,11,23,30,0,100.0,22,1010.0 -2015,10,12,0,0,0,99.56,22,1010.0 -2015,10,12,0,30,0,100.0,22,1010.0 -2015,10,12,1,0,0,100.0,22,1010.0 -2015,10,12,1,30,0,100.0,21,1000.0 -2015,10,12,2,0,0,100.0,21,1000.0 -2015,10,12,2,30,0,100.0,21,1000.0 -2015,10,12,3,0,0,100.0,21,1000.0 -2015,10,12,3,30,0,100.0,21,1000.0 -2015,10,12,4,0,0,100.0,21,1000.0 -2015,10,12,4,30,0,100.0,21,1000.0 -2015,10,12,5,0,0,100.0,21,1000.0 -2015,10,12,5,30,0,100.0,21,1000.0 -2015,10,12,6,0,0,100.0,21,1000.0 -2015,10,12,6,30,10,98.69,22,1000.0 -2015,10,12,7,0,81,95.34,23,1000.0 -2015,10,12,7,30,178,89.79,24,1010.0 -2015,10,12,8,0,280,80.33,26,1010.0 -2015,10,12,8,30,382,75.76,27,1010.0 -2015,10,12,9,0,477,69.36,28,1010.0 -2015,10,12,9,30,563,65.45,29,1010.0 -2015,10,12,10,0,637,60.050000000000004,30,1010.0 -2015,10,12,10,30,698,60.03,30,1000.0 -2015,10,12,11,0,742,55.58,31,1000.0 -2015,10,12,11,30,771,55.56,31,1000.0 -2015,10,12,12,0,780,51.96,32,1000.0 -2015,10,12,12,30,776,51.93,32,1000.0 -2015,10,12,13,0,753,51.76,33,1000.0 -2015,10,12,13,30,714,51.74,32,1000.0 -2015,10,12,14,0,659,51.84,32,1000.0 -2015,10,12,14,30,590,51.83,32,1000.0 -2015,10,12,15,0,509,52.06,32,1000.0 -2015,10,12,15,30,418,55.09,31,1000.0 -2015,10,12,16,0,321,55.83,31,1000.0 -2015,10,12,16,30,219,59.120000000000005,30,1000.0 -2015,10,12,17,0,122,65.65,29,1000.0 -2015,10,12,17,30,37,69.58,28,1000.0 -2015,10,12,18,0,0,77.02,27,1000.0 -2015,10,12,18,30,0,81.7,26,1000.0 -2015,10,12,19,0,0,83.93,26,1000.0 -2015,10,12,19,30,0,89.07000000000001,25,1000.0 -2015,10,12,20,0,0,91.5,25,1000.0 -2015,10,12,20,30,0,91.52,25,1000.0 -2015,10,12,21,0,0,93.08,25,1000.0 -2015,10,12,21,30,0,98.8,24,1000.0 -2015,10,12,22,0,0,99.82000000000001,24,1000.0 -2015,10,12,22,30,0,99.82000000000001,24,1000.0 -2015,10,12,23,0,0,100.0,24,1000.0 -2015,10,12,23,30,0,100.0,24,1000.0 -2015,10,13,0,0,0,100.0,24,1000.0 -2015,10,13,0,30,0,100.0,24,1000.0 -2015,10,13,1,0,0,100.0,24,1000.0 -2015,10,13,1,30,0,100.0,24,1000.0 -2015,10,13,2,0,0,100.0,24,1000.0 -2015,10,13,2,30,0,100.0,24,1000.0 -2015,10,13,3,0,0,100.0,24,1010.0 -2015,10,13,3,30,0,100.0,24,1010.0 -2015,10,13,4,0,0,100.0,24,1010.0 -2015,10,13,4,30,0,100.0,23,1010.0 -2015,10,13,5,0,0,100.0,23,1010.0 -2015,10,13,5,30,0,100.0,23,1010.0 -2015,10,13,6,0,0,100.0,23,1010.0 -2015,10,13,6,30,0,100.0,24,1010.0 -2015,10,13,7,0,21,94.54,25,1010.0 -2015,10,13,7,30,167,89.14,26,1010.0 -2015,10,13,8,0,273,79.43,27,1010.0 -2015,10,13,8,30,375,74.94,28,1010.0 -2015,10,13,9,0,476,62.76,29,1010.0 -2015,10,13,9,30,564,62.76,29,1010.0 -2015,10,13,10,0,643,54.06,30,1010.0 -2015,10,13,10,30,707,51.06,31,1010.0 -2015,10,13,11,0,758,45.52,32,1010.0 -2015,10,13,11,30,790,45.51,32,1010.0 -2015,10,13,12,0,808,40.25,33,1010.0 -2015,10,13,12,30,806,40.24,33,1010.0 -2015,10,13,13,0,790,34.78,34,1010.0 -2015,10,13,13,30,753,34.77,34,1010.0 -2015,10,13,14,0,704,30.94,34,1010.0 -2015,10,13,14,30,636,30.93,34,1010.0 -2015,10,13,15,0,556,27.060000000000002,34,1010.0 -2015,10,13,15,30,462,28.61,33,1010.0 -2015,10,13,16,0,361,27.96,33,1010.0 -2015,10,13,16,30,252,31.32,30,1010.0 -2015,10,13,17,0,145,48.21,28,1010.0 -2015,10,13,17,30,46,54.21,26,1010.0 -2015,10,13,18,0,0,51.64,25,1010.0 -2015,10,13,18,30,0,54.82,24,1010.0 -2015,10,13,19,0,0,54.56,23,1010.0 -2015,10,13,19,30,0,57.980000000000004,22,1010.0 -2015,10,13,20,0,0,56.34,22,1010.0 -2015,10,13,20,30,0,59.89,21,1010.0 -2015,10,13,21,0,0,57.94,21,1010.0 -2015,10,13,21,30,0,61.620000000000005,20,1010.0 -2015,10,13,22,0,0,64.28,20,1010.0 -2015,10,13,22,30,0,64.28,19,1010.0 -2015,10,13,23,0,0,63.79,19,1010.0 -2015,10,13,23,30,0,67.9,18,1010.0 -2015,10,14,0,0,0,67.05,18,1010.0 -2015,10,14,0,30,0,71.41,18,1010.0 -2015,10,14,1,0,0,70.21000000000001,18,1010.0 -2015,10,14,1,30,0,70.21000000000001,17,1010.0 -2015,10,14,2,0,0,68.97,17,1010.0 -2015,10,14,2,30,0,68.97,17,1010.0 -2015,10,14,3,0,0,67.69,17,1010.0 -2015,10,14,3,30,0,72.12,16,1010.0 -2015,10,14,4,0,0,71.06,16,1010.0 -2015,10,14,4,30,0,71.08,16,1010.0 -2015,10,14,5,0,0,70.64,16,1010.0 -2015,10,14,5,30,0,70.65,16,1010.0 -2015,10,14,6,0,0,71.22,16,1010.0 -2015,10,14,6,30,0,66.88,17,1010.0 -2015,10,14,7,0,93,68.15,18,1010.0 -2015,10,14,7,30,200,60.2,20,1010.0 -2015,10,14,8,0,312,47.75,22,1010.0 -2015,10,14,8,30,420,44.95,23,1010.0 -2015,10,14,9,0,521,43.49,25,1010.0 -2015,10,14,9,30,612,38.660000000000004,27,1010.0 -2015,10,14,10,0,690,26.12,30,1010.0 -2015,10,14,10,30,753,26.11,31,1010.0 -2015,10,14,11,0,800,23.57,32,1010.0 -2015,10,14,11,30,830,23.56,32,1010.0 -2015,10,14,12,0,840,22.72,32,1010.0 -2015,10,14,12,30,835,22.71,32,1010.0 -2015,10,14,13,0,810,21.85,33,1010.0 -2015,10,14,13,30,770,23.1,33,1010.0 -2015,10,14,14,0,711,23.5,33,1010.0 -2015,10,14,14,30,639,23.5,32,1010.0 -2015,10,14,15,0,552,24.3,32,1010.0 -2015,10,14,15,30,456,25.72,31,1010.0 -2015,10,14,16,0,350,29.94,30,1010.0 -2015,10,14,16,30,241,33.6,28,1010.0 -2015,10,14,17,0,133,50.39,26,1010.0 -2015,10,14,17,30,39,56.76,24,1010.0 -2015,10,14,18,0,0,62.300000000000004,23,1010.0 -2015,10,14,18,30,0,66.2,22,1010.0 -2015,10,14,19,0,0,69.42,22,1010.0 -2015,10,14,19,30,0,73.79,21,1010.0 -2015,10,14,20,0,0,77.65,21,1010.0 -2015,10,14,20,30,0,82.58,20,1010.0 -2015,10,14,21,0,0,84.86,20,1010.0 -2015,10,14,21,30,0,84.86,20,1010.0 -2015,10,14,22,0,0,85.62,20,1010.0 -2015,10,14,22,30,0,91.08,19,1010.0 -2015,10,14,23,0,0,91.34,19,1010.0 -2015,10,14,23,30,0,91.33,19,1010.0 -2015,10,15,0,0,0,91.5,19,1010.0 -2015,10,15,0,30,0,91.49,19,1010.0 -2015,10,15,1,0,0,91.94,19,1010.0 -2015,10,15,1,30,0,91.93,19,1010.0 -2015,10,15,2,0,0,92.37,19,1010.0 -2015,10,15,2,30,0,92.36,19,1010.0 -2015,10,15,3,0,0,92.60000000000001,19,1010.0 -2015,10,15,3,30,0,92.60000000000001,19,1010.0 -2015,10,15,4,0,0,92.72,19,1010.0 -2015,10,15,4,30,0,92.74,19,1010.0 -2015,10,15,5,0,0,93.07000000000001,19,1010.0 -2015,10,15,5,30,0,93.09,19,1010.0 -2015,10,15,6,0,0,93.59,19,1010.0 -2015,10,15,6,30,0,93.62,19,1010.0 -2015,10,15,7,0,85,90.94,20,1010.0 -2015,10,15,7,30,189,85.55,21,1010.0 -2015,10,15,8,0,299,81.2,22,1010.0 -2015,10,15,8,30,406,71.99,24,1010.0 -2015,10,15,9,0,508,50.33,27,1010.0 -2015,10,15,9,30,598,47.47,28,1010.0 -2015,10,15,10,0,677,36.32,30,1010.0 -2015,10,15,10,30,740,36.31,30,1010.0 -2015,10,15,11,0,788,32.82,31,1010.0 -2015,10,15,11,30,819,32.81,31,1010.0 -2015,10,15,12,0,834,29.96,32,1010.0 -2015,10,15,12,30,829,29.94,32,1010.0 -2015,10,15,13,0,807,27.68,33,1010.0 -2015,10,15,13,30,768,29.27,32,1010.0 -2015,10,15,14,0,712,28.95,32,1010.0 -2015,10,15,14,30,640,30.63,32,1010.0 -2015,10,15,15,0,555,31.0,32,1010.0 -2015,10,15,15,30,459,32.82,31,1010.0 -2015,10,15,16,0,354,35.13,30,1010.0 -2015,10,15,16,30,244,39.43,28,1010.0 -2015,10,15,17,0,135,55.22,26,1010.0 -2015,10,15,17,30,39,62.2,24,1010.0 -2015,10,15,18,0,0,72.48,23,1010.0 -2015,10,15,18,30,0,77.02,22,1010.0 -2015,10,15,19,0,0,82.23,22,1010.0 -2015,10,15,19,30,0,87.42,21,1010.0 -2015,10,15,20,0,0,91.75,21,1010.0 -2015,10,15,20,30,0,97.57000000000001,21,1010.0 -2015,10,15,21,0,0,100.0,21,1010.0 -2015,10,15,21,30,0,100.0,20,1010.0 -2015,10,15,22,0,0,100.0,20,1010.0 -2015,10,15,22,30,0,100.0,20,1010.0 -2015,10,15,23,0,0,100.0,20,1010.0 -2015,10,15,23,30,0,100.0,19,1010.0 -2015,10,16,0,0,0,100.0,19,1010.0 -2015,10,16,0,30,0,100.0,19,1010.0 -2015,10,16,1,0,0,100.0,19,1010.0 -2015,10,16,1,30,0,100.0,19,1010.0 -2015,10,16,2,0,0,100.0,19,1010.0 -2015,10,16,2,30,0,100.0,19,1010.0 -2015,10,16,3,0,0,100.0,19,1010.0 -2015,10,16,3,30,0,100.0,19,1010.0 -2015,10,16,4,0,0,100.0,19,1010.0 -2015,10,16,4,30,0,100.0,18,1010.0 -2015,10,16,5,0,0,100.0,18,1010.0 -2015,10,16,5,30,0,100.0,18,1010.0 -2015,10,16,6,0,0,100.0,18,1010.0 -2015,10,16,6,30,0,100.0,19,1010.0 -2015,10,16,7,0,81,100.0,20,1020.0 -2015,10,16,7,30,183,96.52,21,1020.0 -2015,10,16,8,0,291,84.34,23,1020.0 -2015,10,16,8,30,396,79.44,24,1020.0 -2015,10,16,9,0,495,61.93,26,1020.0 -2015,10,16,9,30,585,58.39,27,1020.0 -2015,10,16,10,0,661,47.68,28,1020.0 -2015,10,16,10,30,725,44.99,29,1020.0 -2015,10,16,11,0,771,38.02,30,1020.0 -2015,10,16,11,30,802,38.0,30,1020.0 -2015,10,16,12,0,815,32.88,31,1010.0 -2015,10,16,12,30,811,32.87,31,1010.0 -2015,10,16,13,0,788,29.3,32,1010.0 -2015,10,16,13,30,749,29.29,32,1010.0 -2015,10,16,14,0,693,28.36,32,1010.0 -2015,10,16,14,30,622,30.0,31,1010.0 -2015,10,16,15,0,536,30.02,31,1010.0 -2015,10,16,15,30,441,31.78,30,1010.0 -2015,10,16,16,0,337,33.81,30,1010.0 -2015,10,16,16,30,229,37.95,28,1010.0 -2015,10,16,17,0,123,58.300000000000004,27,1010.0 -2015,10,16,17,30,33,61.86,25,1010.0 -2015,10,16,18,0,0,65.84,24,1010.0 -2015,10,16,18,30,0,69.94,23,1010.0 -2015,10,16,19,0,0,70.65,23,1010.0 -2015,10,16,19,30,0,70.67,23,1010.0 -2015,10,16,20,0,0,71.03,23,1010.0 -2015,10,16,20,30,0,75.48,22,1010.0 -2015,10,16,21,0,0,75.39,22,1010.0 -2015,10,16,21,30,0,80.13,21,1010.0 -2015,10,16,22,0,0,78.86,21,1010.0 -2015,10,16,22,30,0,83.86,20,1010.0 -2015,10,16,23,0,0,80.86,20,1010.0 -2015,10,16,23,30,0,86.02,19,1010.0 -2015,10,17,0,0,0,81.91,19,1020.0 -2015,10,17,0,30,0,81.91,19,1020.0 -2015,10,17,1,0,0,77.28,19,1020.0 -2015,10,17,1,30,0,82.25,19,1020.0 -2015,10,17,2,0,0,77.73,19,1020.0 -2015,10,17,2,30,0,77.73,18,1020.0 -2015,10,17,3,0,0,75.29,18,1020.0 -2015,10,17,3,30,0,80.19,17,1020.0 -2015,10,17,4,0,0,78.43,17,1020.0 -2015,10,17,4,30,0,83.57000000000001,17,1020.0 -2015,10,17,5,0,0,80.63,17,1020.0 -2015,10,17,5,30,0,80.66,16,1020.0 -2015,10,17,6,0,0,76.68,16,1020.0 -2015,10,17,6,30,0,76.71000000000001,16,1020.0 -2015,10,17,7,0,53,67.42,17,1020.0 -2015,10,17,7,30,145,63.33,18,1020.0 -2015,10,17,8,0,239,52.550000000000004,19,1020.0 -2015,10,17,8,30,399,49.410000000000004,20,1020.0 -2015,10,17,9,0,398,41.57,22,1020.0 -2015,10,17,9,30,586,39.1,23,1020.0 -2015,10,17,10,0,664,34.15,24,1020.0 -2015,10,17,10,30,727,32.160000000000004,25,1020.0 -2015,10,17,11,0,774,31.25,26,1020.0 -2015,10,17,11,30,804,31.240000000000002,26,1020.0 -2015,10,17,12,0,696,30.060000000000002,27,1020.0 -2015,10,17,12,30,671,30.05,27,1020.0 -2015,10,17,13,0,664,28.51,28,1020.0 -2015,10,17,13,30,629,28.5,28,1020.0 -2015,10,17,14,0,579,26.67,29,1020.0 -2015,10,17,14,30,620,28.25,28,1020.0 -2015,10,17,15,0,531,27.91,28,1020.0 -2015,10,17,15,30,435,29.59,27,1020.0 -2015,10,17,16,0,330,30.04,27,1020.0 -2015,10,17,16,30,223,33.81,25,1020.0 -2015,10,17,17,0,118,45.59,24,1020.0 -2015,10,17,17,30,29,51.44,22,1020.0 -2015,10,17,18,0,0,58.46,20,1020.0 -2015,10,17,18,30,0,58.47,20,1020.0 -2015,10,17,19,0,0,55.84,20,1020.0 -2015,10,17,19,30,0,59.42,19,1020.0 -2015,10,17,20,0,0,57.58,19,1020.0 -2015,10,17,20,30,0,61.29,18,1020.0 -2015,10,17,21,0,0,58.300000000000004,18,1020.0 -2015,10,17,21,30,0,62.08,17,1020.0 -2015,10,17,22,0,0,58.78,17,1020.0 -2015,10,17,22,30,0,62.620000000000005,16,1020.0 -2015,10,17,23,0,0,59.480000000000004,16,1020.0 -2015,10,17,23,30,0,63.4,15,1020.0 -2015,10,18,0,0,0,61.83,15,1020.0 -2015,10,18,0,30,0,61.83,15,1020.0 -2015,10,18,1,0,0,60.94,15,1020.0 -2015,10,18,1,30,0,64.99,14,1020.0 -2015,10,18,2,0,0,64.33,14,1020.0 -2015,10,18,2,30,0,64.33,14,1020.0 -2015,10,18,3,0,0,64.2,14,1020.0 -2015,10,18,3,30,0,68.51,13,1020.0 -2015,10,18,4,0,0,68.4,13,1020.0 -2015,10,18,4,30,0,68.41,13,1020.0 -2015,10,18,5,0,0,67.92,13,1020.0 -2015,10,18,5,30,0,67.94,13,1020.0 -2015,10,18,6,0,0,67.84,13,1020.0 -2015,10,18,6,30,0,67.86,13,1020.0 -2015,10,18,7,0,76,63.57,14,1020.0 -2015,10,18,7,30,176,59.63,15,1020.0 -2015,10,18,8,0,283,55.14,16,1020.0 -2015,10,18,8,30,389,51.76,17,1020.0 -2015,10,18,9,0,488,43.86,19,1020.0 -2015,10,18,9,30,577,41.22,20,1020.0 -2015,10,18,10,0,653,35.550000000000004,22,1020.0 -2015,10,18,10,30,715,33.45,23,1020.0 -2015,10,18,11,0,761,31.38,24,1020.0 -2015,10,18,11,30,791,31.36,25,1020.0 -2015,10,18,12,0,803,30.07,26,1020.0 -2015,10,18,12,30,798,30.05,26,1020.0 -2015,10,18,13,0,775,28.93,26,1020.0 -2015,10,18,13,30,735,28.92,26,1020.0 -2015,10,18,14,0,678,27.810000000000002,27,1020.0 -2015,10,18,14,30,608,29.48,26,1020.0 -2015,10,18,15,0,522,29.84,26,1020.0 -2015,10,18,15,30,427,31.66,25,1020.0 -2015,10,18,16,0,325,32.35,25,1020.0 -2015,10,18,16,30,218,36.46,23,1020.0 -2015,10,18,17,0,115,48.870000000000005,22,1020.0 -2015,10,18,17,30,28,55.24,20,1020.0 -2015,10,18,18,0,0,61.77,19,1020.0 -2015,10,18,18,30,0,65.76,18,1020.0 -2015,10,18,19,0,0,66.18,18,1020.0 -2015,10,18,19,30,0,66.19,18,1020.0 -2015,10,18,20,0,0,66.39,18,1020.0 -2015,10,18,20,30,0,70.7,17,1020.0 -2015,10,18,21,0,0,70.21000000000001,17,1020.0 -2015,10,18,21,30,0,74.79,16,1020.0 -2015,10,18,22,0,0,73.08,16,1020.0 -2015,10,18,22,30,0,77.89,16,1020.0 -2015,10,18,23,0,0,75.41,16,1020.0 -2015,10,18,23,30,0,75.4,15,1020.0 -2015,10,19,0,0,0,72.32000000000001,15,1020.0 -2015,10,19,0,30,0,77.13,14,1020.0 -2015,10,19,1,0,0,74.2,14,1020.0 -2015,10,19,1,30,0,74.19,14,1020.0 -2015,10,19,2,0,0,72.46000000000001,14,1020.0 -2015,10,19,2,30,0,77.31,13,1020.0 -2015,10,19,3,0,0,77.43,13,1020.0 -2015,10,19,3,30,0,77.43,13,1020.0 -2015,10,19,4,0,0,78.55,13,1020.0 -2015,10,19,4,30,0,83.86,12,1020.0 -2015,10,19,5,0,0,84.96000000000001,12,1020.0 -2015,10,19,5,30,0,84.97,12,1020.0 -2015,10,19,6,0,0,85.93,12,1020.0 -2015,10,19,6,30,0,80.49,13,1020.0 -2015,10,19,7,0,69,76.66,14,1020.0 -2015,10,19,7,30,166,71.89,15,1020.0 -2015,10,19,8,0,272,63.74,17,1020.0 -2015,10,19,8,30,377,56.230000000000004,19,1020.0 -2015,10,19,9,0,477,48.03,21,1020.0 -2015,10,19,9,30,566,45.19,22,1020.0 -2015,10,19,10,0,644,39.1,24,1020.0 -2015,10,19,10,30,707,36.800000000000004,24,1020.0 -2015,10,19,11,0,755,32.05,25,1020.0 -2015,10,19,11,30,786,32.03,25,1020.0 -2015,10,19,12,0,806,28.94,26,1020.0 -2015,10,19,12,30,801,28.92,26,1020.0 -2015,10,19,13,0,779,26.64,27,1020.0 -2015,10,19,13,30,739,26.63,27,1010.0 -2015,10,19,14,0,684,26.34,27,1010.0 -2015,10,19,14,30,612,27.93,26,1010.0 -2015,10,19,15,0,529,28.310000000000002,26,1010.0 -2015,10,19,15,30,433,30.03,25,1010.0 -2015,10,19,16,0,330,31.830000000000002,25,1010.0 -2015,10,19,16,30,222,35.88,23,1010.0 -2015,10,19,17,0,116,50.45,22,1010.0 -2015,10,19,17,30,27,57.08,20,1010.0 -2015,10,19,18,0,0,68.95,18,1010.0 -2015,10,19,18,30,0,68.95,18,1010.0 -2015,10,19,19,0,0,75.29,18,1020.0 -2015,10,19,19,30,0,80.18,17,1020.0 -2015,10,19,20,0,0,87.17,17,1020.0 -2015,10,19,20,30,0,87.16,17,1010.0 -2015,10,19,21,0,0,93.09,17,1010.0 -2015,10,19,21,30,0,93.08,17,1010.0 -2015,10,19,22,0,0,97.78,17,1010.0 -2015,10,19,22,30,0,97.76,17,1010.0 -2015,10,19,23,0,0,100.0,17,1010.0 -2015,10,19,23,30,0,100.0,17,1010.0 -2015,10,20,0,0,0,100.0,17,1010.0 -2015,10,20,0,30,0,100.0,17,1010.0 -2015,10,20,1,0,0,100.0,18,1010.0 -2015,10,20,1,30,0,100.0,18,1010.0 -2015,10,20,2,0,0,100.0,18,1010.0 -2015,10,20,2,30,0,100.0,18,1010.0 -2015,10,20,3,0,0,100.0,18,1010.0 -2015,10,20,3,30,0,100.0,18,1010.0 -2015,10,20,4,0,0,100.0,18,1010.0 -2015,10,20,4,30,0,100.0,18,1010.0 -2015,10,20,5,0,0,100.0,19,1010.0 -2015,10,20,5,30,0,100.0,19,1010.0 -2015,10,20,6,0,0,100.0,19,1010.0 -2015,10,20,6,30,0,100.0,19,1010.0 -2015,10,20,7,0,4,100.0,20,1010.0 -2015,10,20,7,30,68,97.08,21,1010.0 -2015,10,20,8,0,112,95.14,22,1010.0 -2015,10,20,8,30,146,89.57000000000001,23,1010.0 -2015,10,20,9,0,106,85.66,25,1010.0 -2015,10,20,9,30,240,80.69,25,1010.0 -2015,10,20,10,0,99,74.82000000000001,26,1010.0 -2015,10,20,10,30,174,70.52,27,1010.0 -2015,10,20,11,0,222,65.04,28,1010.0 -2015,10,20,11,30,245,65.0,28,1010.0 -2015,10,20,12,0,416,64.06,28,1010.0 -2015,10,20,12,30,481,64.02,28,1010.0 -2015,10,20,13,0,466,59.93,29,1010.0 -2015,10,20,13,30,559,63.46,29,1010.0 -2015,10,20,14,0,262,63.29,29,1010.0 -2015,10,20,14,30,162,63.28,28,1010.0 -2015,10,20,15,0,163,63.67,28,1010.0 -2015,10,20,15,30,91,67.5,27,1010.0 -2015,10,20,16,0,154,73.09,27,1010.0 -2015,10,20,16,30,87,77.56,26,1010.0 -2015,10,20,17,0,43,80.91,25,1010.0 -2015,10,20,17,30,20,85.89,24,1010.0 -2015,10,20,18,0,0,94.76,23,1010.0 -2015,10,20,18,30,0,100.0,22,1010.0 -2015,10,20,19,0,0,100.0,22,1010.0 -2015,10,20,19,30,0,100.0,22,1010.0 -2015,10,20,20,0,0,100.0,22,1010.0 -2015,10,20,20,30,0,100.0,22,1010.0 -2015,10,20,21,0,0,100.0,22,1010.0 -2015,10,20,21,30,0,100.0,22,1010.0 -2015,10,20,22,0,0,100.0,22,1010.0 -2015,10,20,22,30,0,100.0,22,1010.0 -2015,10,20,23,0,0,100.0,22,1010.0 -2015,10,20,23,30,0,100.0,22,1010.0 -2015,10,21,0,0,0,100.0,22,1010.0 -2015,10,21,0,30,0,100.0,22,1010.0 -2015,10,21,1,0,0,100.0,22,1010.0 -2015,10,21,1,30,0,100.0,22,1010.0 -2015,10,21,2,0,0,100.0,22,1010.0 -2015,10,21,2,30,0,100.0,22,1010.0 -2015,10,21,3,0,0,100.0,22,1010.0 -2015,10,21,3,30,0,100.0,22,1010.0 -2015,10,21,4,0,0,100.0,22,1010.0 -2015,10,21,4,30,0,100.0,22,1010.0 -2015,10,21,5,0,0,100.0,22,1010.0 -2015,10,21,5,30,0,100.0,22,1010.0 -2015,10,21,6,0,0,100.0,22,1010.0 -2015,10,21,6,30,0,100.0,22,1010.0 -2015,10,21,7,0,61,100.0,22,1010.0 -2015,10,21,7,30,75,100.0,22,1010.0 -2015,10,21,8,0,98,99.22,23,1010.0 -2015,10,21,8,30,137,93.46000000000001,24,1010.0 -2015,10,21,9,0,175,86.24,25,1010.0 -2015,10,21,9,30,208,81.28,26,1010.0 -2015,10,21,10,0,238,72.58,27,1010.0 -2015,10,21,10,30,467,72.57000000000001,27,1010.0 -2015,10,21,11,0,499,66.3,28,1010.0 -2015,10,21,11,30,519,66.28,28,1010.0 -2015,10,21,12,0,524,64.86,28,1010.0 -2015,10,21,12,30,520,64.82000000000001,28,1010.0 -2015,10,21,13,0,733,64.22,28,1010.0 -2015,10,21,13,30,531,64.19,28,1010.0 -2015,10,21,14,0,481,64.27,28,1010.0 -2015,10,21,14,30,569,68.11,28,1010.0 -2015,10,21,15,0,487,68.33,28,1010.0 -2015,10,21,15,30,395,72.46000000000001,27,1010.0 -2015,10,21,16,0,242,73.05,26,1010.0 -2015,10,21,16,30,194,77.5,25,1010.0 -2015,10,21,17,0,96,79.54,25,1010.0 -2015,10,21,17,30,19,84.43,24,1010.0 -2015,10,21,18,0,0,87.21000000000001,24,1010.0 -2015,10,21,18,30,0,92.62,23,1010.0 -2015,10,21,19,0,0,94.76,23,1010.0 -2015,10,21,19,30,0,94.78,23,1010.0 -2015,10,21,20,0,0,96.32000000000001,23,1010.0 -2015,10,21,20,30,0,96.33,23,1010.0 -2015,10,21,21,0,0,97.18,23,1010.0 -2015,10,21,21,30,0,97.17,23,1010.0 -2015,10,21,22,0,0,97.60000000000001,23,1010.0 -2015,10,21,22,30,0,100.0,23,1010.0 -2015,10,21,23,0,0,100.0,23,1010.0 -2015,10,21,23,30,0,100.0,23,1010.0 -2015,10,22,0,0,0,100.0,23,1010.0 -2015,10,22,0,30,0,100.0,23,1010.0 -2015,10,22,1,0,0,98.81,23,1010.0 -2015,10,22,1,30,0,98.78,23,1010.0 -2015,10,22,2,0,0,99.25,23,1010.0 -2015,10,22,2,30,0,99.23,23,1010.0 -2015,10,22,3,0,0,99.72,23,1010.0 -2015,10,22,3,30,0,99.71000000000001,23,1010.0 -2015,10,22,4,0,0,99.91,23,1010.0 -2015,10,22,4,30,0,99.91,23,1010.0 -2015,10,22,5,0,0,99.8,23,1010.0 -2015,10,22,5,30,0,99.81,23,1010.0 -2015,10,22,6,0,0,99.92,23,1010.0 -2015,10,22,6,30,0,99.94,23,1010.0 -2015,10,22,7,0,51,100.0,24,1010.0 -2015,10,22,7,30,137,100.0,24,1010.0 -2015,10,22,8,0,66,97.01,24,1010.0 -2015,10,22,8,30,112,97.02,24,1010.0 -2015,10,22,9,0,122,91.39,25,1010.0 -2015,10,22,9,30,97,91.37,25,1010.0 -2015,10,22,10,0,279,84.16,26,1010.0 -2015,10,22,10,30,308,84.13,26,1010.0 -2015,10,22,11,0,289,78.22,27,1010.0 -2015,10,22,11,30,386,78.18,27,1010.0 -2015,10,22,12,0,270,78.11,27,1010.0 -2015,10,22,12,30,378,78.07000000000001,27,1010.0 -2015,10,22,13,0,439,78.85000000000001,27,1010.0 -2015,10,22,13,30,411,83.58,26,1010.0 -2015,10,22,14,0,489,85.04,26,1010.0 -2015,10,22,14,30,336,85.02,26,1010.0 -2015,10,22,15,0,169,86.65,26,1010.0 -2015,10,22,15,30,361,91.93,25,1010.0 -2015,10,22,16,0,265,93.39,25,1010.0 -2015,10,22,16,30,169,93.4,25,1010.0 -2015,10,22,17,0,79,93.82000000000001,25,1010.0 -2015,10,22,17,30,10,99.59,24,1010.0 -2015,10,22,18,0,0,99.51,24,1010.0 -2015,10,22,18,30,0,99.53,24,1010.0 -2015,10,22,19,0,0,99.72,24,1010.0 -2015,10,22,19,30,0,99.73,24,1010.0 -2015,10,22,20,0,0,99.95,24,1010.0 -2015,10,22,20,30,0,99.95,24,1010.0 -2015,10,22,21,0,0,100.0,24,1010.0 -2015,10,22,21,30,0,100.0,24,1010.0 -2015,10,22,22,0,0,100.0,24,1010.0 -2015,10,22,22,30,0,100.0,24,1010.0 -2015,10,22,23,0,0,100.0,24,1010.0 -2015,10,22,23,30,0,100.0,24,1010.0 -2015,10,23,0,0,0,100.0,24,1010.0 -2015,10,23,0,30,0,100.0,24,1010.0 -2015,10,23,1,0,0,99.72,24,1010.0 -2015,10,23,1,30,0,99.71000000000001,24,1010.0 -2015,10,23,2,0,0,99.28,24,1010.0 -2015,10,23,2,30,0,99.26,24,1010.0 -2015,10,23,3,0,0,98.82000000000001,24,1010.0 -2015,10,23,3,30,0,98.81,24,1010.0 -2015,10,23,4,0,0,98.44,24,1010.0 -2015,10,23,4,30,0,98.44,24,1010.0 -2015,10,23,5,0,0,98.10000000000001,24,1010.0 -2015,10,23,5,30,0,98.10000000000001,24,1010.0 -2015,10,23,6,0,0,98.3,24,1010.0 -2015,10,23,6,30,0,98.3,24,1010.0 -2015,10,23,7,0,11,99.5,24,1010.0 -2015,10,23,7,30,29,99.49000000000001,24,1010.0 -2015,10,23,8,0,26,100.0,24,1010.0 -2015,10,23,8,30,133,100.0,24,1010.0 -2015,10,23,9,0,254,97.8,25,1010.0 -2015,10,23,9,30,324,97.8,25,1010.0 -2015,10,23,10,0,253,90.92,26,1010.0 -2015,10,23,10,30,367,90.91,26,1010.0 -2015,10,23,11,0,453,83.13,27,1010.0 -2015,10,23,11,30,432,83.11,27,1010.0 -2015,10,23,12,0,533,80.81,28,1010.0 -2015,10,23,12,30,539,80.79,28,1010.0 -2015,10,23,13,0,341,75.02,28,1010.0 -2015,10,23,13,30,250,79.5,28,1010.0 -2015,10,23,14,0,363,79.02,28,1010.0 -2015,10,23,14,30,250,79.01,27,1010.0 -2015,10,23,15,0,192,79.58,27,1010.0 -2015,10,23,15,30,138,84.39,26,1010.0 -2015,10,23,16,0,103,86.19,26,1010.0 -2015,10,23,16,30,49,91.45,25,1010.0 -2015,10,23,17,0,24,93.64,25,1010.0 -2015,10,23,17,30,4,99.39,24,1010.0 -2015,10,23,18,0,0,100.0,24,1010.0 -2015,10,23,18,30,0,100.0,24,1010.0 -2015,10,23,19,0,0,100.0,24,1010.0 -2015,10,23,19,30,0,100.0,24,1010.0 -2015,10,23,20,0,0,100.0,24,1010.0 -2015,10,23,20,30,0,100.0,24,1010.0 -2015,10,23,21,0,0,100.0,24,1010.0 -2015,10,23,21,30,0,100.0,24,1010.0 -2015,10,23,22,0,0,100.0,24,1010.0 -2015,10,23,22,30,0,100.0,24,1010.0 -2015,10,23,23,0,0,99.56,24,1010.0 -2015,10,23,23,30,0,100.0,24,1010.0 -2015,10,24,0,0,0,100.0,24,1010.0 -2015,10,24,0,30,0,100.0,23,1010.0 -2015,10,24,1,0,0,100.0,23,1010.0 -2015,10,24,1,30,0,100.0,23,1010.0 -2015,10,24,2,0,0,100.0,23,1010.0 -2015,10,24,2,30,0,100.0,23,1010.0 -2015,10,24,3,0,0,100.0,23,1010.0 -2015,10,24,3,30,0,100.0,23,1010.0 -2015,10,24,4,0,0,100.0,23,1010.0 -2015,10,24,4,30,0,100.0,23,1010.0 -2015,10,24,5,0,0,100.0,23,1010.0 -2015,10,24,5,30,0,100.0,23,1010.0 -2015,10,24,6,0,0,100.0,23,1010.0 -2015,10,24,6,30,0,100.0,23,1010.0 -2015,10,24,7,0,2,100.0,23,1010.0 -2015,10,24,7,30,3,100.0,23,1010.0 -2015,10,24,8,0,31,100.0,24,1010.0 -2015,10,24,8,30,91,100.0,24,1010.0 -2015,10,24,9,0,140,94.52,25,1010.0 -2015,10,24,9,30,146,94.51,25,1010.0 -2015,10,24,10,0,135,88.72,25,1010.0 -2015,10,24,10,30,52,88.69,25,1010.0 -2015,10,24,11,0,77,85.29,25,1010.0 -2015,10,24,11,30,216,90.5,24,1000.0 -2015,10,24,12,0,107,90.06,24,1000.0 -2015,10,24,12,30,31,90.0,24,1000.0 -2015,10,24,13,0,300,90.66,24,1000.0 -2015,10,24,13,30,234,90.60000000000001,24,1000.0 -2015,10,24,14,0,148,92.4,24,1000.0 -2015,10,24,14,30,60,98.09,23,1000.0 -2015,10,24,15,0,58,99.84,23,1000.0 -2015,10,24,15,30,89,99.83,23,1000.0 -2015,10,24,16,0,43,100.0,23,1000.0 -2015,10,24,16,30,79,100.0,23,1000.0 -2015,10,24,17,0,37,99.49000000000001,23,1000.0 -2015,10,24,17,30,6,100.0,23,1000.0 -2015,10,24,18,0,0,100.0,23,1000.0 -2015,10,24,18,30,0,100.0,22,1000.0 -2015,10,24,19,0,0,100.0,22,1000.0 -2015,10,24,19,30,0,100.0,22,1000.0 -2015,10,24,20,0,0,100.0,22,1000.0 -2015,10,24,20,30,0,100.0,22,1000.0 -2015,10,24,21,0,0,99.8,22,1000.0 -2015,10,24,21,30,0,100.0,21,1000.0 -2015,10,24,22,0,0,100.0,21,1000.0 -2015,10,24,22,30,0,100.0,21,1000.0 -2015,10,24,23,0,0,100.0,21,1000.0 -2015,10,24,23,30,0,100.0,21,1000.0 -2015,10,25,0,0,0,100.0,21,1000.0 -2015,10,25,0,30,0,100.0,21,1000.0 -2015,10,25,1,0,0,100.0,21,1000.0 -2015,10,25,1,30,0,100.0,21,1000.0 -2015,10,25,2,0,0,100.0,21,1000.0 -2015,10,25,2,30,0,100.0,21,1000.0 -2015,10,25,3,0,0,100.0,21,1000.0 -2015,10,25,3,30,0,100.0,21,1000.0 -2015,10,25,4,0,0,100.0,21,1000.0 -2015,10,25,4,30,0,100.0,20,1000.0 -2015,10,25,5,0,0,100.0,20,1000.0 -2015,10,25,5,30,0,100.0,19,1000.0 -2015,10,25,6,0,0,100.0,19,1000.0 -2015,10,25,6,30,0,100.0,19,1000.0 -2015,10,25,7,0,59,100.0,19,1000.0 -2015,10,25,7,30,8,100.0,19,1000.0 -2015,10,25,8,0,34,100.0,19,1000.0 -2015,10,25,8,30,56,100.0,19,1000.0 -2015,10,25,9,0,17,100.0,20,1000.0 -2015,10,25,9,30,74,100.0,20,1000.0 -2015,10,25,10,0,98,97.21000000000001,20,1000.0 -2015,10,25,10,30,120,97.2,20,1000.0 -2015,10,25,11,0,112,95.57000000000001,20,1000.0 -2015,10,25,11,30,140,95.55,20,1000.0 -2015,10,25,12,0,80,92.96000000000001,20,1000.0 -2015,10,25,12,30,92,98.88,20,1000.0 -2015,10,25,13,0,167,96.0,20,1000.0 -2015,10,25,13,30,57,95.98,19,1000.0 -2015,10,25,14,0,24,93.98,19,1000.0 -2015,10,25,14,30,79,93.98,19,1000.0 -2015,10,25,15,0,102,92.8,19,1000.0 -2015,10,25,15,30,181,98.78,18,1000.0 -2015,10,25,16,0,109,97.06,18,1000.0 -2015,10,25,16,30,104,97.07000000000001,18,1000.0 -2015,10,25,17,0,49,94.5,18,1000.0 -2015,10,25,17,30,8,100.0,17,1000.0 -2015,10,25,18,0,0,97.34,17,1000.0 -2015,10,25,18,30,0,100.0,16,1000.0 -2015,10,25,19,0,0,100.0,16,1000.0 -2015,10,25,19,30,0,100.0,16,1000.0 -2015,10,25,20,0,0,96.73,16,1000.0 -2015,10,25,20,30,0,96.73,16,1000.0 -2015,10,25,21,0,0,94.14,16,1000.0 -2015,10,25,21,30,0,100.0,16,1000.0 -2015,10,25,22,0,0,98.82000000000001,16,1000.0 -2015,10,25,22,30,0,98.82000000000001,15,1000.0 -2015,10,25,23,0,0,98.26,15,1000.0 -2015,10,25,23,30,0,98.25,15,1000.0 -2015,10,26,0,0,0,97.88,15,1000.0 -2015,10,26,0,30,0,97.87,15,1000.0 -2015,10,26,1,0,0,96.63,15,1000.0 -2015,10,26,1,30,0,96.61,15,1000.0 -2015,10,26,2,0,0,94.22,15,1000.0 -2015,10,26,2,30,0,100.0,14,1000.0 -2015,10,26,3,0,0,97.76,14,1000.0 -2015,10,26,3,30,0,97.75,14,1000.0 -2015,10,26,4,0,0,96.38,14,1000.0 -2015,10,26,4,30,0,96.4,14,1000.0 -2015,10,26,5,0,0,95.71000000000001,14,1000.0 -2015,10,26,5,30,0,95.75,14,1000.0 -2015,10,26,6,0,0,94.97,14,1000.0 -2015,10,26,6,30,0,95.02,14,1000.0 -2015,10,26,7,0,54,88.99,15,1000.0 -2015,10,26,7,30,145,89.02,15,1000.0 -2015,10,26,8,0,246,84.82000000000001,16,1010.0 -2015,10,26,8,30,345,79.61,17,1010.0 -2015,10,26,9,0,442,77.69,18,1010.0 -2015,10,26,9,30,527,77.67,19,1000.0 -2015,10,26,10,0,603,76.76,20,1000.0 -2015,10,26,10,30,663,72.12,20,1000.0 -2015,10,26,11,0,709,70.92,21,1000.0 -2015,10,26,11,30,738,70.89,21,1000.0 -2015,10,26,12,0,752,68.93,22,1000.0 -2015,10,26,12,30,746,68.89,22,1000.0 -2015,10,26,13,0,180,70.68,22,1000.0 -2015,10,26,13,30,170,70.67,22,1000.0 -2015,10,26,14,0,133,71.74,22,1000.0 -2015,10,26,14,30,101,71.74,22,1000.0 -2015,10,26,15,0,159,72.09,22,1000.0 -2015,10,26,15,30,75,76.63,21,1000.0 -2015,10,26,16,0,281,76.99,21,1000.0 -2015,10,26,16,30,180,81.9,20,1000.0 -2015,10,26,17,0,84,82.34,20,1000.0 -2015,10,26,17,30,12,87.61,19,1000.0 -2015,10,26,18,0,0,87.22,19,1000.0 -2015,10,26,18,30,0,92.86,18,1000.0 -2015,10,26,19,0,0,92.34,18,1000.0 -2015,10,26,19,30,0,92.35000000000001,18,1000.0 -2015,10,26,20,0,0,91.68,18,1000.0 -2015,10,26,20,30,0,97.64,17,1000.0 -2015,10,26,21,0,0,97.04,17,1000.0 -2015,10,26,21,30,0,97.04,17,1000.0 -2015,10,26,22,0,0,96.32000000000001,17,1000.0 -2015,10,26,22,30,0,96.32000000000001,17,1000.0 -2015,10,26,23,0,0,95.73,17,1000.0 -2015,10,26,23,30,0,95.72,17,1000.0 -2015,10,27,0,0,0,95.2,17,1000.0 -2015,10,27,0,30,0,100.0,16,1000.0 -2015,10,27,1,0,0,100.0,16,1000.0 -2015,10,27,1,30,0,100.0,16,1000.0 -2015,10,27,2,0,0,99.56,16,1000.0 -2015,10,27,2,30,0,99.56,16,1000.0 -2015,10,27,3,0,0,98.82000000000001,16,1000.0 -2015,10,27,3,30,0,98.82000000000001,16,1000.0 -2015,10,27,4,0,0,98.0,16,1000.0 -2015,10,27,4,30,0,100.0,15,1000.0 -2015,10,27,5,0,0,100.0,15,1000.0 -2015,10,27,5,30,0,100.0,15,1000.0 -2015,10,27,6,0,0,100.0,15,1000.0 -2015,10,27,6,30,0,100.0,15,1000.0 -2015,10,27,7,0,57,98.04,16,1010.0 -2015,10,27,7,30,153,92.04,17,1010.0 -2015,10,27,8,0,258,90.17,18,1010.0 -2015,10,27,8,30,362,84.71000000000001,19,1010.0 -2015,10,27,9,0,461,81.36,20,1010.0 -2015,10,27,9,30,549,76.49,21,1010.0 -2015,10,27,10,0,624,72.77,22,1010.0 -2015,10,27,10,30,686,72.74,22,1000.0 -2015,10,27,11,0,731,69.39,23,1000.0 -2015,10,27,11,30,760,69.36,23,1000.0 -2015,10,27,12,0,773,65.88,24,1000.0 -2015,10,27,12,30,767,65.86,24,1000.0 -2015,10,27,13,0,743,65.68,24,1000.0 -2015,10,27,13,30,703,65.66,24,1000.0 -2015,10,27,14,0,647,64.77,25,1000.0 -2015,10,27,14,30,576,64.76,24,1000.0 -2015,10,27,15,0,493,63.42,24,1000.0 -2015,10,27,15,30,399,67.34,24,1000.0 -2015,10,27,16,0,297,69.57000000000001,24,1000.0 -2015,10,27,16,30,191,73.91,22,1000.0 -2015,10,27,17,0,90,82.01,21,1000.0 -2015,10,27,17,30,12,87.21000000000001,20,1000.0 -2015,10,27,18,0,0,81.26,20,1000.0 -2015,10,27,18,30,0,81.28,19,1000.0 -2015,10,27,19,0,0,77.60000000000001,19,1000.0 -2015,10,27,19,30,0,82.60000000000001,18,1000.0 -2015,10,27,20,0,0,80.94,18,1000.0 -2015,10,27,20,30,0,86.2,17,1000.0 -2015,10,27,21,0,0,86.47,17,1000.0 -2015,10,27,21,30,0,86.47,17,1000.0 -2015,10,27,22,0,0,88.43,17,1000.0 -2015,10,27,22,30,0,94.22,17,1000.0 -2015,10,27,23,0,0,98.19,17,1000.0 -2015,10,27,23,30,0,98.19,16,1000.0 -2015,10,28,0,0,0,100.0,16,1000.0 -2015,10,28,0,30,0,100.0,16,1000.0 -2015,10,28,1,0,0,100.0,16,1000.0 -2015,10,28,1,30,0,100.0,16,1000.0 -2015,10,28,2,0,0,100.0,16,1000.0 -2015,10,28,2,30,0,100.0,16,1000.0 -2015,10,28,3,0,0,100.0,16,1000.0 -2015,10,28,3,30,0,100.0,16,1000.0 -2015,10,28,4,0,0,100.0,16,1000.0 -2015,10,28,4,30,0,100.0,16,1000.0 -2015,10,28,5,0,0,100.0,16,1000.0 -2015,10,28,5,30,0,100.0,16,1000.0 -2015,10,28,6,0,0,100.0,17,1000.0 -2015,10,28,6,30,0,100.0,17,1000.0 -2015,10,28,7,0,55,100.0,18,1000.0 -2015,10,28,7,30,151,99.06,19,1000.0 -2015,10,28,8,0,254,97.38,20,1000.0 -2015,10,28,8,30,358,91.59,21,1000.0 -2015,10,28,9,0,453,82.57000000000001,23,1000.0 -2015,10,28,9,30,540,77.76,24,1000.0 -2015,10,28,10,0,613,70.42,25,1000.0 -2015,10,28,10,30,675,70.42,25,1000.0 -2015,10,28,11,0,720,65.66,26,1000.0 -2015,10,28,11,30,751,65.63,26,1000.0 -2015,10,28,12,0,763,57.54,26,1000.0 -2015,10,28,12,30,759,57.52,26,1000.0 -2015,10,28,13,0,739,54.660000000000004,26,1000.0 -2015,10,28,13,30,700,57.980000000000004,25,1000.0 -2015,10,28,14,0,578,56.120000000000005,25,1000.0 -2015,10,28,14,30,439,56.120000000000005,25,1000.0 -2015,10,28,15,0,281,56.1,25,1000.0 -2015,10,28,15,30,355,59.550000000000004,24,1000.0 -2015,10,28,16,0,177,66.72,23,1000.0 -2015,10,28,16,30,113,70.9,22,1000.0 -2015,10,28,17,0,52,78.29,21,1000.0 -2015,10,28,17,30,0,83.28,20,1000.0 -2015,10,28,18,0,0,86.04,19,1000.0 -2015,10,28,18,30,0,91.61,18,1000.0 -2015,10,28,19,0,0,90.53,18,1000.0 -2015,10,28,19,30,0,90.55,18,1000.0 -2015,10,28,20,0,0,89.0,18,1010.0 -2015,10,28,20,30,0,94.79,17,1010.0 -2015,10,28,21,0,0,93.11,17,1010.0 -2015,10,28,21,30,0,99.21000000000001,16,1010.0 -2015,10,28,22,0,0,96.82000000000001,16,1010.0 -2015,10,28,22,30,0,96.82000000000001,16,1010.0 -2015,10,28,23,0,0,94.62,16,1010.0 -2015,10,28,23,30,0,100.0,15,1010.0 -2015,10,29,0,0,0,98.87,15,1010.0 -2015,10,29,0,30,0,98.87,15,1010.0 -2015,10,29,1,0,0,97.60000000000001,15,1010.0 -2015,10,29,1,30,0,100.0,14,1010.0 -2015,10,29,2,0,0,100.0,14,1010.0 -2015,10,29,2,30,0,100.0,14,1010.0 -2015,10,29,3,0,0,100.0,14,1010.0 -2015,10,29,3,30,0,100.0,14,1010.0 -2015,10,29,4,0,0,100.0,14,1010.0 -2015,10,29,4,30,0,100.0,13,1010.0 -2015,10,29,5,0,0,100.0,13,1010.0 -2015,10,29,5,30,0,100.0,13,1010.0 -2015,10,29,6,0,0,100.0,13,1010.0 -2015,10,29,6,30,0,100.0,14,1010.0 -2015,10,29,7,0,52,100.0,15,1010.0 -2015,10,29,7,30,144,96.43,16,1010.0 -2015,10,29,8,0,246,89.4,18,1010.0 -2015,10,29,8,30,348,84.0,19,1010.0 -2015,10,29,9,0,442,78.5,21,1010.0 -2015,10,29,9,30,528,73.86,22,1010.0 -2015,10,29,10,0,600,69.81,23,1010.0 -2015,10,29,10,30,660,69.79,23,1010.0 -2015,10,29,11,0,702,66.92,24,1010.0 -2015,10,29,11,30,730,66.89,24,1010.0 -2015,10,29,12,0,741,64.05,25,1010.0 -2015,10,29,12,30,734,64.02,25,1010.0 -2015,10,29,13,0,705,64.94,26,1010.0 -2015,10,29,13,30,664,64.91,26,1010.0 -2015,10,29,14,0,604,65.92,26,1010.0 -2015,10,29,14,30,534,65.91,25,1010.0 -2015,10,29,15,0,452,67.28,25,1010.0 -2015,10,29,15,30,361,71.41,24,1010.0 -2015,10,29,16,0,261,74.60000000000001,24,1010.0 -2015,10,29,16,30,163,79.21000000000001,23,1010.0 -2015,10,29,17,0,71,87.22,22,1010.0 -2015,10,29,17,30,0,92.72,21,1010.0 -2015,10,29,18,0,0,94.93,20,1010.0 -2015,10,29,18,30,0,94.95,20,1010.0 -2015,10,29,19,0,0,95.39,20,1010.0 -2015,10,29,19,30,0,100.0,19,1010.0 -2015,10,29,20,0,0,100.0,19,1010.0 -2015,10,29,20,30,0,100.0,19,1010.0 -2015,10,29,21,0,0,100.0,19,1010.0 -2015,10,29,21,30,0,100.0,19,1010.0 -2015,10,29,22,0,0,100.0,19,1010.0 -2015,10,29,22,30,0,100.0,19,1010.0 -2015,10,29,23,0,0,100.0,19,1010.0 -2015,10,29,23,30,0,100.0,19,1010.0 -2015,10,30,0,0,0,100.0,20,1010.0 -2015,10,30,0,30,0,100.0,20,1010.0 -2015,10,30,1,0,0,100.0,20,1010.0 -2015,10,30,1,30,0,100.0,20,1010.0 -2015,10,30,2,0,0,100.0,20,1010.0 -2015,10,30,2,30,0,100.0,20,1010.0 -2015,10,30,3,0,0,100.0,20,1000.0 -2015,10,30,3,30,0,100.0,20,1000.0 -2015,10,30,4,0,0,100.0,21,1000.0 -2015,10,30,4,30,0,100.0,21,1000.0 -2015,10,30,5,0,0,100.0,21,1000.0 -2015,10,30,5,30,0,100.0,21,1000.0 -2015,10,30,6,0,0,100.0,21,1010.0 -2015,10,30,6,30,0,100.0,21,1010.0 -2015,10,30,7,0,0,98.71000000000001,22,1010.0 -2015,10,30,7,30,2,98.72,22,1010.0 -2015,10,30,8,0,36,100.0,22,1010.0 -2015,10,30,8,30,37,100.0,22,1010.0 -2015,10,30,9,0,47,97.19,23,1010.0 -2015,10,30,9,30,104,97.2,23,1010.0 -2015,10,30,10,0,104,93.65,24,1010.0 -2015,10,30,10,30,33,93.64,24,1010.0 -2015,10,30,11,0,94,94.53,24,1010.0 -2015,10,30,11,30,153,94.49,24,1010.0 -2015,10,30,12,0,257,91.41,24,1000.0 -2015,10,30,12,30,267,91.35000000000001,24,1000.0 -2015,10,30,13,0,306,85.76,24,1000.0 -2015,10,30,13,30,323,85.7,24,1000.0 -2015,10,30,14,0,235,81.89,24,1000.0 -2015,10,30,14,30,286,81.84,24,1000.0 -2015,10,30,15,0,220,81.57000000000001,24,1000.0 -2015,10,30,15,30,269,86.59,23,1000.0 -2015,10,30,16,0,92,88.39,23,1000.0 -2015,10,30,16,30,40,88.38,23,1000.0 -2015,10,30,17,0,17,88.9,23,1000.0 -2015,10,30,17,30,0,94.47,22,1000.0 -2015,10,30,18,0,0,95.58,22,1000.0 -2015,10,30,18,30,0,95.61,22,1000.0 -2015,10,30,19,0,0,97.86,22,1000.0 -2015,10,30,19,30,0,97.88,22,1000.0 -2015,10,30,20,0,0,94.36,23,1000.0 -2015,10,30,20,30,0,94.36,23,1000.0 -2015,10,30,21,0,0,96.21000000000001,23,1000.0 -2015,10,30,21,30,0,96.21000000000001,23,1000.0 -2015,10,30,22,0,0,97.48,23,1000.0 -2015,10,30,22,30,0,97.46000000000001,23,1000.0 -2015,10,30,23,0,0,98.72,23,1000.0 -2015,10,30,23,30,0,98.7,23,1000.0 -2015,10,31,0,0,0,100.0,23,1000.0 -2015,10,31,0,30,0,100.0,23,1000.0 -2015,10,31,1,0,0,100.0,23,1000.0 -2015,10,31,1,30,0,100.0,23,1000.0 -2015,10,31,2,0,0,100.0,23,1000.0 -2015,10,31,2,30,0,100.0,23,1000.0 -2015,10,31,3,0,0,100.0,24,1000.0 -2015,10,31,3,30,0,100.0,24,1000.0 -2015,10,31,4,0,0,100.0,24,1000.0 -2015,10,31,4,30,0,100.0,24,1000.0 -2015,10,31,5,0,0,100.0,24,1000.0 -2015,10,31,5,30,0,100.0,24,1000.0 -2015,10,31,6,0,0,100.0,24,1000.0 -2015,10,31,6,30,0,100.0,24,1000.0 -2015,10,31,7,0,0,100.0,24,1000.0 -2015,10,31,7,30,2,100.0,24,1000.0 -2015,10,31,8,0,10,100.0,25,1000.0 -2015,10,31,8,30,13,100.0,25,1000.0 -2015,10,31,9,0,132,100.0,25,1000.0 -2015,10,31,9,30,10,100.0,25,1000.0 -2015,10,31,10,0,117,100.0,26,1000.0 -2015,10,31,10,30,221,100.0,26,1000.0 -2015,10,31,11,0,266,100.0,26,1000.0 -2015,10,31,11,30,149,100.0,26,1000.0 -2015,10,31,12,0,170,100.0,26,1000.0 -2015,10,31,12,30,329,100.0,26,1000.0 -2015,10,31,13,0,157,100.0,26,1000.0 -2015,10,31,13,30,56,100.0,26,1000.0 -2015,10,31,14,0,186,100.0,26,1000.0 -2015,10,31,14,30,43,100.0,26,1000.0 -2015,10,31,15,0,50,98.77,26,1000.0 -2015,10,31,15,30,100,100.0,25,1000.0 -2015,10,31,16,0,95,100.0,25,1000.0 -2015,10,31,16,30,38,100.0,24,1000.0 -2015,10,31,17,0,17,100.0,23,1000.0 -2015,10,31,17,30,0,100.0,22,1000.0 -2015,10,31,18,0,0,100.0,22,1000.0 -2015,10,31,18,30,0,100.0,21,1000.0 -2015,10,31,19,0,0,100.0,21,1000.0 -2015,10,31,19,30,0,100.0,21,1000.0 -2015,10,31,20,0,0,100.0,21,1000.0 -2015,10,31,20,30,0,100.0,20,1000.0 -2015,10,31,21,0,0,100.0,20,1000.0 -2015,10,31,21,30,0,100.0,19,1000.0 -2015,10,31,22,0,0,100.0,19,1000.0 -2015,10,31,22,30,0,100.0,19,1000.0 -2015,10,31,23,0,0,100.0,19,1000.0 -2015,10,31,23,30,0,100.0,19,1000.0 -2015,11,1,0,0,0,99.73,19,1000.0 -2015,11,1,0,30,0,100.0,18,1010.0 -2015,11,1,1,0,0,100.0,18,1010.0 -2015,11,1,1,30,0,100.0,18,1010.0 -2015,11,1,2,0,0,100.0,18,1010.0 -2015,11,1,2,30,0,100.0,18,1010.0 -2015,11,1,3,0,0,100.0,18,1010.0 -2015,11,1,3,30,0,100.0,17,1010.0 -2015,11,1,4,0,0,100.0,17,1010.0 -2015,11,1,4,30,0,100.0,17,1010.0 -2015,11,1,5,0,0,100.0,17,1010.0 -2015,11,1,5,30,0,100.0,17,1010.0 -2015,11,1,6,0,0,100.0,17,1010.0 -2015,11,1,6,30,0,100.0,17,1010.0 -2015,11,1,7,0,9,97.82000000000001,18,1010.0 -2015,11,1,7,30,28,97.84,18,1010.0 -2015,11,1,8,0,40,95.35000000000001,19,1010.0 -2015,11,1,8,30,11,95.37,19,1010.0 -2015,11,1,9,0,77,94.46000000000001,20,1010.0 -2015,11,1,9,30,109,94.47,20,1010.0 -2015,11,1,10,0,50,90.24,21,1010.0 -2015,11,1,10,30,27,90.23,21,1010.0 -2015,11,1,11,0,30,90.97,21,1010.0 -2015,11,1,11,30,216,90.94,21,1010.0 -2015,11,1,12,0,218,91.12,21,1010.0 -2015,11,1,12,30,213,91.08,21,1010.0 -2015,11,1,13,0,117,90.06,22,1010.0 -2015,11,1,13,30,58,90.04,21,1010.0 -2015,11,1,14,0,165,88.95,21,1010.0 -2015,11,1,14,30,40,88.95,21,1010.0 -2015,11,1,15,0,18,87.95,21,1010.0 -2015,11,1,15,30,203,93.54,21,1010.0 -2015,11,1,16,0,62,93.2,21,1010.0 -2015,11,1,16,30,6,99.17,20,1010.0 -2015,11,1,17,0,2,99.2,19,1010.0 -2015,11,1,17,30,0,100.0,18,1010.0 -2015,11,1,18,0,0,100.0,18,1010.0 -2015,11,1,18,30,0,100.0,17,1010.0 -2015,11,1,19,0,0,100.0,17,1010.0 -2015,11,1,19,30,0,100.0,17,1010.0 -2015,11,1,20,0,0,100.0,17,1010.0 -2015,11,1,20,30,0,100.0,16,1010.0 -2015,11,1,21,0,0,100.0,16,1010.0 -2015,11,1,21,30,0,100.0,16,1010.0 -2015,11,1,22,0,0,100.0,16,1010.0 -2015,11,1,22,30,0,100.0,16,1010.0 -2015,11,1,23,0,0,100.0,16,1010.0 -2015,11,1,23,30,0,100.0,15,1010.0 -2015,11,2,0,0,0,100.0,15,1010.0 -2015,11,2,0,30,0,100.0,15,1010.0 -2015,11,2,1,0,0,100.0,15,1010.0 -2015,11,2,1,30,0,100.0,15,1010.0 -2015,11,2,2,0,0,100.0,15,1010.0 -2015,11,2,2,30,0,100.0,15,1010.0 -2015,11,2,3,0,0,100.0,15,1010.0 -2015,11,2,3,30,0,100.0,14,1010.0 -2015,11,2,4,0,0,100.0,14,1010.0 -2015,11,2,4,30,0,100.0,14,1010.0 -2015,11,2,5,0,0,100.0,14,1010.0 -2015,11,2,5,30,0,100.0,14,1010.0 -2015,11,2,6,0,0,100.0,14,1010.0 -2015,11,2,6,30,0,100.0,14,1010.0 -2015,11,2,7,0,46,100.0,15,1010.0 -2015,11,2,7,30,138,97.14,16,1010.0 -2015,11,2,8,0,241,99.18,17,1010.0 -2015,11,2,8,30,72,93.14,18,1010.0 -2015,11,2,9,0,92,92.79,19,1010.0 -2015,11,2,9,30,111,87.22,20,1010.0 -2015,11,2,10,0,126,82.19,21,1010.0 -2015,11,2,10,30,662,82.17,21,1010.0 -2015,11,2,11,0,706,77.57000000000001,22,1010.0 -2015,11,2,11,30,734,77.54,22,1010.0 -2015,11,2,12,0,747,73.53,23,1010.0 -2015,11,2,12,30,740,73.5,23,1010.0 -2015,11,2,13,0,715,69.57000000000001,24,1010.0 -2015,11,2,13,30,675,69.55,24,1010.0 -2015,11,2,14,0,618,69.51,24,1010.0 -2015,11,2,14,30,548,69.5,24,1010.0 -2015,11,2,15,0,464,68.98,24,1010.0 -2015,11,2,15,30,371,73.25,23,1010.0 -2015,11,2,16,0,271,75.31,23,1010.0 -2015,11,2,16,30,169,80.02,22,1010.0 -2015,11,2,17,0,72,79.98,22,1010.0 -2015,11,2,17,30,0,85.01,21,1010.0 -2015,11,2,18,0,0,77.72,21,1010.0 -2015,11,2,18,30,0,82.66,20,1010.0 -2015,11,2,19,0,0,82.22,20,1010.0 -2015,11,2,19,30,0,87.48,19,1010.0 -2015,11,2,20,0,0,86.7,19,1010.0 -2015,11,2,20,30,0,92.29,19,1010.0 -2015,11,2,21,0,0,92.28,19,1010.0 -2015,11,2,21,30,0,92.28,18,1010.0 -2015,11,2,22,0,0,92.65,18,1010.0 -2015,11,2,22,30,0,98.66,17,1010.0 -2015,11,2,23,0,0,99.21000000000001,17,1010.0 -2015,11,2,23,30,0,99.21000000000001,17,1010.0 -2015,11,3,0,0,0,99.81,17,1010.0 -2015,11,3,0,30,0,100.0,16,1010.0 -2015,11,3,1,0,0,100.0,16,1010.0 -2015,11,3,1,30,0,100.0,16,1010.0 -2015,11,3,2,0,0,100.0,16,1010.0 -2015,11,3,2,30,0,100.0,16,1010.0 -2015,11,3,3,0,0,100.0,16,1010.0 -2015,11,3,3,30,0,100.0,16,1010.0 -2015,11,3,4,0,0,100.0,16,1010.0 -2015,11,3,4,30,0,100.0,16,1010.0 -2015,11,3,5,0,0,100.0,16,1010.0 -2015,11,3,5,30,0,100.0,16,1010.0 -2015,11,3,6,0,0,100.0,16,1010.0 -2015,11,3,6,30,0,100.0,16,1010.0 -2015,11,3,7,0,42,100.0,17,1010.0 -2015,11,3,7,30,132,97.68,18,1010.0 -2015,11,3,8,0,235,91.84,20,1010.0 -2015,11,3,8,30,336,86.37,21,1010.0 -2015,11,3,9,0,433,82.38,22,1010.0 -2015,11,3,9,30,519,82.36,22,1010.0 -2015,11,3,10,0,595,77.64,23,1010.0 -2015,11,3,10,30,655,77.61,23,1010.0 -2015,11,3,11,0,701,73.42,24,1010.0 -2015,11,3,11,30,729,73.4,24,1010.0 -2015,11,3,12,0,739,73.3,25,1010.0 -2015,11,3,12,30,732,73.27,25,1010.0 -2015,11,3,13,0,708,68.76,25,1010.0 -2015,11,3,13,30,668,68.75,25,1010.0 -2015,11,3,14,0,612,68.25,25,1010.0 -2015,11,3,14,30,288,72.43,25,1010.0 -2015,11,3,15,0,461,72.17,25,1010.0 -2015,11,3,15,30,368,72.17,24,1010.0 -2015,11,3,16,0,268,75.02,24,1010.0 -2015,11,3,16,30,165,84.64,22,1010.0 -2015,11,3,17,0,69,92.58,21,1010.0 -2015,11,3,17,30,0,98.46000000000001,20,1010.0 -2015,11,3,18,0,0,93.35000000000001,20,1010.0 -2015,11,3,18,30,0,99.34,19,1010.0 -2015,11,3,19,0,0,99.29,19,1010.0 -2015,11,3,19,30,0,99.3,19,1010.0 -2015,11,3,20,0,0,100.0,19,1010.0 -2015,11,3,20,30,0,100.0,18,1010.0 -2015,11,3,21,0,0,100.0,18,1010.0 -2015,11,3,21,30,0,100.0,18,1010.0 -2015,11,3,22,0,0,100.0,18,1010.0 -2015,11,3,22,30,0,100.0,17,1010.0 -2015,11,3,23,0,0,100.0,17,1010.0 -2015,11,3,23,30,0,100.0,17,1010.0 -2015,11,4,0,0,0,100.0,17,1010.0 -2015,11,4,0,30,0,100.0,17,1010.0 -2015,11,4,1,0,0,100.0,17,1010.0 -2015,11,4,1,30,0,100.0,17,1010.0 -2015,11,4,2,0,0,100.0,17,1010.0 -2015,11,4,2,30,0,100.0,17,1010.0 -2015,11,4,3,0,0,100.0,18,1010.0 -2015,11,4,3,30,0,100.0,18,1010.0 -2015,11,4,4,0,0,100.0,18,1010.0 -2015,11,4,4,30,0,100.0,18,1010.0 -2015,11,4,5,0,0,100.0,18,1010.0 -2015,11,4,5,30,0,100.0,18,1010.0 -2015,11,4,6,0,0,100.0,18,1010.0 -2015,11,4,6,30,0,100.0,18,1010.0 -2015,11,4,7,0,38,100.0,19,1010.0 -2015,11,4,7,30,122,98.25,20,1010.0 -2015,11,4,8,0,219,96.63,21,1010.0 -2015,11,4,8,30,316,90.93,22,1010.0 -2015,11,4,9,0,122,87.55,23,1010.0 -2015,11,4,9,30,86,87.55,23,1010.0 -2015,11,4,10,0,562,83.21000000000001,24,1010.0 -2015,11,4,10,30,620,83.2,24,1010.0 -2015,11,4,11,0,416,79.08,25,1010.0 -2015,11,4,11,30,433,79.05,25,1010.0 -2015,11,4,12,0,552,75.14,26,1010.0 -2015,11,4,12,30,302,75.11,26,1010.0 -2015,11,4,13,0,292,75.57000000000001,26,1010.0 -2015,11,4,13,30,361,75.54,26,1010.0 -2015,11,4,14,0,573,75.82000000000001,26,1010.0 -2015,11,4,14,30,404,75.81,26,1010.0 -2015,11,4,15,0,427,75.84,26,1010.0 -2015,11,4,15,30,338,80.46000000000001,25,1010.0 -2015,11,4,16,0,135,81.16,25,1010.0 -2015,11,4,16,30,147,86.15,24,1010.0 -2015,11,4,17,0,60,92.36,23,1010.0 -2015,11,4,17,30,0,98.13,22,1010.0 -2015,11,4,18,0,0,97.18,22,1010.0 -2015,11,4,18,30,0,100.0,22,1010.0 -2015,11,4,19,0,0,100.0,22,1010.0 -2015,11,4,19,30,0,100.0,21,1010.0 -2015,11,4,20,0,0,100.0,21,1010.0 -2015,11,4,20,30,0,100.0,21,1010.0 -2015,11,4,21,0,0,100.0,21,1010.0 -2015,11,4,21,30,0,100.0,21,1010.0 -2015,11,4,22,0,0,100.0,21,1010.0 -2015,11,4,22,30,0,100.0,21,1010.0 -2015,11,4,23,0,0,100.0,21,1010.0 -2015,11,4,23,30,0,100.0,21,1010.0 -2015,11,5,0,0,0,100.0,21,1010.0 -2015,11,5,0,30,0,100.0,21,1010.0 -2015,11,5,1,0,0,100.0,21,1010.0 -2015,11,5,1,30,0,100.0,21,1010.0 -2015,11,5,2,0,0,100.0,21,1010.0 -2015,11,5,2,30,0,100.0,21,1010.0 -2015,11,5,3,0,0,100.0,21,1010.0 -2015,11,5,3,30,0,100.0,21,1010.0 -2015,11,5,4,0,0,100.0,21,1010.0 -2015,11,5,4,30,0,100.0,21,1010.0 -2015,11,5,5,0,0,100.0,21,1010.0 -2015,11,5,5,30,0,100.0,21,1010.0 -2015,11,5,6,0,0,100.0,21,1010.0 -2015,11,5,6,30,0,100.0,21,1010.0 -2015,11,5,7,0,35,100.0,22,1010.0 -2015,11,5,7,30,117,96.86,23,1010.0 -2015,11,5,8,0,213,95.35000000000001,24,1010.0 -2015,11,5,8,30,309,95.36,24,1010.0 -2015,11,5,9,0,401,92.44,25,1010.0 -2015,11,5,9,30,484,87.13,26,1010.0 -2015,11,5,10,0,555,83.0,27,1010.0 -2015,11,5,10,30,316,82.98,27,1010.0 -2015,11,5,11,0,339,83.45,27,1010.0 -2015,11,5,11,30,419,83.41,27,1010.0 -2015,11,5,12,0,419,78.76,28,1010.0 -2015,11,5,12,30,679,78.73,28,1010.0 -2015,11,5,13,0,659,78.28,28,1010.0 -2015,11,5,13,30,621,78.26,28,1010.0 -2015,11,5,14,0,227,77.64,28,1010.0 -2015,11,5,14,30,222,82.3,27,1010.0 -2015,11,5,15,0,418,81.65,27,1010.0 -2015,11,5,15,30,330,86.59,26,1010.0 -2015,11,5,16,0,238,86.49,26,1010.0 -2015,11,5,16,30,143,91.78,25,1010.0 -2015,11,5,17,0,57,91.82000000000001,25,1010.0 -2015,11,5,17,30,0,97.48,24,1010.0 -2015,11,5,18,0,0,96.7,24,1010.0 -2015,11,5,18,30,0,100.0,23,1010.0 -2015,11,5,19,0,0,100.0,23,1010.0 -2015,11,5,19,30,0,100.0,23,1010.0 -2015,11,5,20,0,0,100.0,23,1010.0 -2015,11,5,20,30,0,100.0,23,1010.0 -2015,11,5,21,0,0,100.0,23,1010.0 -2015,11,5,21,30,0,100.0,22,1010.0 -2015,11,5,22,0,0,100.0,22,1010.0 -2015,11,5,22,30,0,100.0,22,1010.0 -2015,11,5,23,0,0,100.0,22,1010.0 -2015,11,5,23,30,0,100.0,22,1010.0 -2015,11,6,0,0,0,100.0,22,1010.0 -2015,11,6,0,30,0,100.0,22,1010.0 -2015,11,6,1,0,0,100.0,22,1010.0 -2015,11,6,1,30,0,100.0,22,1010.0 -2015,11,6,2,0,0,100.0,22,1010.0 -2015,11,6,2,30,0,100.0,22,1010.0 -2015,11,6,3,0,0,100.0,22,1010.0 -2015,11,6,3,30,0,100.0,21,1010.0 -2015,11,6,4,0,0,100.0,21,1010.0 -2015,11,6,4,30,0,100.0,21,1010.0 -2015,11,6,5,0,0,100.0,21,1010.0 -2015,11,6,5,30,0,100.0,21,1010.0 -2015,11,6,6,0,0,100.0,21,1010.0 -2015,11,6,6,30,0,100.0,21,1010.0 -2015,11,6,7,0,33,100.0,22,1010.0 -2015,11,6,7,30,115,100.0,23,1010.0 -2015,11,6,8,0,213,100.0,24,1010.0 -2015,11,6,8,30,239,100.0,24,1010.0 -2015,11,6,9,0,311,95.34,24,1010.0 -2015,11,6,9,30,487,95.33,24,1010.0 -2015,11,6,10,0,383,89.06,25,1010.0 -2015,11,6,10,30,488,83.92,26,1010.0 -2015,11,6,11,0,524,78.71000000000001,27,1010.0 -2015,11,6,11,30,144,78.68,27,1010.0 -2015,11,6,12,0,145,78.23,28,1010.0 -2015,11,6,12,30,199,78.2,28,1010.0 -2015,11,6,13,0,147,73.38,28,1010.0 -2015,11,6,13,30,212,73.36,28,1010.0 -2015,11,6,14,0,523,73.22,28,1010.0 -2015,11,6,14,30,390,77.61,28,1010.0 -2015,11,6,15,0,247,78.07000000000001,28,1010.0 -2015,11,6,15,30,196,78.07000000000001,27,1010.0 -2015,11,6,16,0,195,80.96000000000001,27,1010.0 -2015,11,6,16,30,145,85.85000000000001,26,1010.0 -2015,11,6,17,0,57,91.24,25,1010.0 -2015,11,6,17,30,0,96.86,24,1010.0 -2015,11,6,18,0,0,99.62,23,1010.0 -2015,11,6,18,30,0,99.64,23,1010.0 -2015,11,6,19,0,0,99.14,23,1010.0 -2015,11,6,19,30,0,100.0,22,1010.0 -2015,11,6,20,0,0,100.0,22,1010.0 -2015,11,6,20,30,0,100.0,22,1010.0 -2015,11,6,21,0,0,100.0,22,1010.0 -2015,11,6,21,30,0,100.0,22,1010.0 -2015,11,6,22,0,0,100.0,22,1010.0 -2015,11,6,22,30,0,100.0,21,1010.0 -2015,11,6,23,0,0,100.0,21,1010.0 -2015,11,6,23,30,0,100.0,21,1010.0 -2015,11,7,0,0,0,100.0,21,1010.0 -2015,11,7,0,30,0,100.0,21,1010.0 -2015,11,7,1,0,0,100.0,21,1010.0 -2015,11,7,1,30,0,100.0,21,1010.0 -2015,11,7,2,0,0,100.0,21,1010.0 -2015,11,7,2,30,0,100.0,20,1010.0 -2015,11,7,3,0,0,100.0,20,1010.0 -2015,11,7,3,30,0,100.0,20,1010.0 -2015,11,7,4,0,0,100.0,20,1010.0 -2015,11,7,4,30,0,100.0,20,1010.0 -2015,11,7,5,0,0,100.0,20,1010.0 -2015,11,7,5,30,0,100.0,19,1010.0 -2015,11,7,6,0,0,100.0,19,1010.0 -2015,11,7,6,30,0,100.0,19,1010.0 -2015,11,7,7,0,14,100.0,20,1010.0 -2015,11,7,7,30,51,100.0,20,1010.0 -2015,11,7,8,0,96,100.0,20,1010.0 -2015,11,7,8,30,140,95.78,21,1010.0 -2015,11,7,9,0,182,94.76,22,1010.0 -2015,11,7,9,30,55,94.78,22,1010.0 -2015,11,7,10,0,112,90.85000000000001,23,1010.0 -2015,11,7,10,30,90,90.85000000000001,23,1010.0 -2015,11,7,11,0,191,89.41,23,1010.0 -2015,11,7,11,30,219,89.39,23,1010.0 -2015,11,7,12,0,166,85.61,23,1010.0 -2015,11,7,12,30,161,90.94,22,1010.0 -2015,11,7,13,0,134,85.82000000000001,22,1010.0 -2015,11,7,13,30,30,91.22,21,1010.0 -2015,11,7,14,0,240,90.5,20,1010.0 -2015,11,7,14,30,219,96.31,19,1010.0 -2015,11,7,15,0,89,90.65,19,1010.0 -2015,11,7,15,30,145,96.5,18,1010.0 -2015,11,7,16,0,140,93.7,18,1010.0 -2015,11,7,16,30,19,93.71000000000001,18,1010.0 -2015,11,7,17,0,7,92.71000000000001,18,1010.0 -2015,11,7,17,30,0,98.73,17,1010.0 -2015,11,7,18,0,0,98.39,17,1010.0 -2015,11,7,18,30,0,98.41,17,1010.0 -2015,11,7,19,0,0,98.18,17,1010.0 -2015,11,7,19,30,0,98.2,17,1010.0 -2015,11,7,20,0,0,97.62,17,1010.0 -2015,11,7,20,30,0,100.0,17,1010.0 -2015,11,7,21,0,0,100.0,17,1010.0 -2015,11,7,21,30,0,100.0,16,1010.0 -2015,11,7,22,0,0,99.98,16,1010.0 -2015,11,7,22,30,0,100.0,15,1010.0 -2015,11,7,23,0,0,100.0,15,1010.0 -2015,11,7,23,30,0,100.0,15,1010.0 -2015,11,8,0,0,0,97.02,15,1010.0 -2015,11,8,0,30,0,100.0,14,1010.0 -2015,11,8,1,0,0,97.0,14,1010.0 -2015,11,8,1,30,0,100.0,13,1010.0 -2015,11,8,2,0,0,97.26,13,1010.0 -2015,11,8,2,30,0,100.0,12,1010.0 -2015,11,8,3,0,0,98.51,12,1010.0 -2015,11,8,3,30,0,98.52,12,1010.0 -2015,11,8,4,0,0,94.65,12,1010.0 -2015,11,8,4,30,0,100.0,11,1010.0 -2015,11,8,5,0,0,98.13,11,1010.0 -2015,11,8,5,30,0,98.15,11,1010.0 -2015,11,8,6,0,0,96.0,11,1020.0 -2015,11,8,6,30,0,96.01,11,1020.0 -2015,11,8,7,0,32,95.28,11,1020.0 -2015,11,8,7,30,115,89.22,12,1020.0 -2015,11,8,8,0,213,84.16,13,1020.0 -2015,11,8,8,30,311,84.16,13,1020.0 -2015,11,8,9,0,281,80.63,14,1020.0 -2015,11,8,9,30,490,75.58,15,1020.0 -2015,11,8,10,0,564,74.64,16,1020.0 -2015,11,8,10,30,624,70.03,17,1020.0 -2015,11,8,11,0,669,70.72,18,1020.0 -2015,11,8,11,30,698,70.68,19,1010.0 -2015,11,8,12,0,710,71.13,20,1010.0 -2015,11,8,12,30,706,71.09,20,1010.0 -2015,11,8,13,0,684,70.73,21,1010.0 -2015,11,8,13,30,646,70.7,21,1010.0 -2015,11,8,14,0,592,68.89,21,1010.0 -2015,11,8,14,30,524,68.87,21,1010.0 -2015,11,8,15,0,443,70.07000000000001,21,1010.0 -2015,11,8,15,30,352,74.51,20,1010.0 -2015,11,8,16,0,254,75.61,20,1010.0 -2015,11,8,16,30,153,80.45,19,1010.0 -2015,11,8,17,0,60,87.58,18,1010.0 -2015,11,8,17,30,0,93.29,17,1010.0 -2015,11,8,18,0,0,95.35000000000001,17,1010.0 -2015,11,8,18,30,0,95.38,16,1010.0 -2015,11,8,19,0,0,93.08,16,1010.0 -2015,11,8,19,30,0,99.24000000000001,15,1010.0 -2015,11,8,20,0,0,96.84,15,1010.0 -2015,11,8,20,30,0,100.0,15,1010.0 -2015,11,8,21,0,0,100.0,15,1010.0 -2015,11,8,21,30,0,100.0,14,1010.0 -2015,11,8,22,0,0,97.59,14,1010.0 -2015,11,8,22,30,0,100.0,13,1010.0 -2015,11,8,23,0,0,100.0,13,1010.0 -2015,11,8,23,30,0,100.0,13,1010.0 -2015,11,9,0,0,0,98.03,13,1010.0 -2015,11,9,0,30,0,100.0,13,1010.0 -2015,11,9,1,0,0,100.0,13,1010.0 -2015,11,9,1,30,0,100.0,13,1010.0 -2015,11,9,2,0,0,100.0,13,1010.0 -2015,11,9,2,30,0,100.0,12,1010.0 -2015,11,9,3,0,0,100.0,12,1010.0 -2015,11,9,3,30,0,100.0,12,1010.0 -2015,11,9,4,0,0,99.47,12,1010.0 -2015,11,9,4,30,0,100.0,12,1010.0 -2015,11,9,5,0,0,100.0,12,1010.0 -2015,11,9,5,30,0,100.0,12,1010.0 -2015,11,9,6,0,0,97.82000000000001,12,1010.0 -2015,11,9,6,30,0,97.84,12,1010.0 -2015,11,9,7,0,31,97.8,12,1010.0 -2015,11,9,7,30,117,91.62,13,1010.0 -2015,11,9,8,0,217,86.47,14,1020.0 -2015,11,9,8,30,316,81.08,15,1020.0 -2015,11,9,9,0,411,70.01,17,1020.0 -2015,11,9,9,30,496,65.73,18,1020.0 -2015,11,9,10,0,568,64.57000000000001,19,1020.0 -2015,11,9,10,30,628,64.55,19,1010.0 -2015,11,9,11,0,671,63.81,20,1010.0 -2015,11,9,11,30,699,63.78,20,1010.0 -2015,11,9,12,0,708,63.36,21,1010.0 -2015,11,9,12,30,702,63.33,21,1010.0 -2015,11,9,13,0,678,63.26,22,1010.0 -2015,11,9,13,30,639,63.230000000000004,22,1010.0 -2015,11,9,14,0,583,65.88,23,1010.0 -2015,11,9,14,30,515,65.86,23,1010.0 -2015,11,9,15,0,433,67.15,23,1010.0 -2015,11,9,15,30,342,67.14,22,1010.0 -2015,11,9,16,0,245,69.97,22,1010.0 -2015,11,9,16,30,146,74.37,21,1010.0 -2015,11,9,17,0,55,71.9,21,1010.0 -2015,11,9,17,30,0,76.47,20,1010.0 -2015,11,9,18,0,0,71.7,20,1010.0 -2015,11,9,18,30,0,76.28,19,1010.0 -2015,11,9,19,0,0,76.12,19,1010.0 -2015,11,9,19,30,0,81.03,18,1010.0 -2015,11,9,20,0,0,81.33,18,1010.0 -2015,11,9,20,30,0,86.62,18,1010.0 -2015,11,9,21,0,0,86.72,18,1010.0 -2015,11,9,21,30,0,86.73,17,1010.0 -2015,11,9,22,0,0,86.57000000000001,17,1010.0 -2015,11,9,22,30,0,92.23,16,1010.0 -2015,11,9,23,0,0,92.54,16,1010.0 -2015,11,9,23,30,0,92.54,16,1010.0 -2015,11,10,0,0,0,93.24,16,1010.0 -2015,11,10,0,30,0,99.4,16,1010.0 -2015,11,10,1,0,0,99.94,16,1010.0 -2015,11,10,1,30,0,99.94,15,1010.0 -2015,11,10,2,0,0,100.0,15,1010.0 -2015,11,10,2,30,0,100.0,15,1010.0 -2015,11,10,3,0,0,100.0,15,1010.0 -2015,11,10,3,30,0,100.0,15,1010.0 -2015,11,10,4,0,0,100.0,16,1010.0 -2015,11,10,4,30,0,100.0,15,1010.0 -2015,11,10,5,0,0,100.0,15,1010.0 -2015,11,10,5,30,0,100.0,15,1010.0 -2015,11,10,6,0,0,100.0,15,1010.0 -2015,11,10,6,30,0,100.0,15,1010.0 -2015,11,10,7,0,27,100.0,16,1010.0 -2015,11,10,7,30,108,95.76,17,1010.0 -2015,11,10,8,0,204,91.2,19,1010.0 -2015,11,10,8,30,301,85.73,20,1010.0 -2015,11,10,9,0,393,83.38,21,1010.0 -2015,11,10,9,30,215,78.44,22,1010.0 -2015,11,10,10,0,247,73.78,23,1010.0 -2015,11,10,10,30,277,73.75,23,1010.0 -2015,11,10,11,0,297,70.72,24,1010.0 -2015,11,10,11,30,283,70.68,24,1010.0 -2015,11,10,12,0,318,72.63,24,1010.0 -2015,11,10,12,30,291,72.58,24,1010.0 -2015,11,10,13,0,302,74.01,25,1010.0 -2015,11,10,13,30,315,73.97,24,1010.0 -2015,11,10,14,0,308,74.96000000000001,24,1010.0 -2015,11,10,14,30,163,74.94,24,1010.0 -2015,11,10,15,0,190,76.07000000000001,24,1010.0 -2015,11,10,15,30,218,80.77,23,1010.0 -2015,11,10,16,0,233,82.78,23,1010.0 -2015,11,10,16,30,138,87.94,22,1010.0 -2015,11,10,17,0,51,93.79,21,1010.0 -2015,11,10,17,30,0,99.75,20,1010.0 -2015,11,10,18,0,0,97.51,20,1010.0 -2015,11,10,18,30,0,97.52,20,1010.0 -2015,11,10,19,0,0,97.3,20,1010.0 -2015,11,10,19,30,0,100.0,19,1010.0 -2015,11,10,20,0,0,100.0,19,1010.0 -2015,11,10,20,30,0,100.0,19,1010.0 -2015,11,10,21,0,0,100.0,19,1010.0 -2015,11,10,21,30,0,100.0,19,1010.0 -2015,11,10,22,0,0,100.0,19,1010.0 -2015,11,10,22,30,0,100.0,19,1010.0 -2015,11,10,23,0,0,100.0,19,1010.0 -2015,11,10,23,30,0,100.0,19,1010.0 -2015,11,11,0,0,0,100.0,20,1010.0 -2015,11,11,0,30,0,100.0,20,1010.0 -2015,11,11,1,0,0,100.0,21,1010.0 -2015,11,11,1,30,0,100.0,21,1010.0 -2015,11,11,2,0,0,100.0,21,1010.0 -2015,11,11,2,30,0,100.0,21,1010.0 -2015,11,11,3,0,0,100.0,21,1010.0 -2015,11,11,3,30,0,100.0,21,1010.0 -2015,11,11,4,0,0,100.0,22,1010.0 -2015,11,11,4,30,0,100.0,22,1010.0 -2015,11,11,5,0,0,100.0,22,1010.0 -2015,11,11,5,30,0,100.0,22,1010.0 -2015,11,11,6,0,0,99.74000000000001,22,1010.0 -2015,11,11,6,30,0,99.76,22,1010.0 -2015,11,11,7,0,24,100.0,22,1010.0 -2015,11,11,7,30,41,100.0,22,1010.0 -2015,11,11,8,0,121,99.66,23,1010.0 -2015,11,11,8,30,180,93.85000000000001,24,1010.0 -2015,11,11,9,0,239,90.35000000000001,25,1010.0 -2015,11,11,9,30,290,90.34,25,1010.0 -2015,11,11,10,0,323,84.61,26,1010.0 -2015,11,11,10,30,358,84.58,26,1010.0 -2015,11,11,11,0,384,79.71000000000001,27,1010.0 -2015,11,11,11,30,400,79.68,27,1010.0 -2015,11,11,12,0,265,79.62,27,1010.0 -2015,11,11,12,30,288,79.59,27,1010.0 -2015,11,11,13,0,446,79.63,28,1010.0 -2015,11,11,13,30,610,79.61,27,1000.0 -2015,11,11,14,0,556,79.98,27,1000.0 -2015,11,11,14,30,356,79.97,27,1000.0 -2015,11,11,15,0,399,80.74,27,1000.0 -2015,11,11,15,30,312,85.62,26,1000.0 -2015,11,11,16,0,220,87.14,26,1000.0 -2015,11,11,16,30,39,92.45,25,1000.0 -2015,11,11,17,0,45,98.39,24,1000.0 -2015,11,11,17,30,0,98.41,24,1000.0 -2015,11,11,18,0,0,98.2,24,1000.0 -2015,11,11,18,30,0,100.0,23,1010.0 -2015,11,11,19,0,0,100.0,23,1010.0 -2015,11,11,19,30,0,100.0,23,1010.0 -2015,11,11,20,0,0,100.0,23,1010.0 -2015,11,11,20,30,0,100.0,23,1010.0 -2015,11,11,21,0,0,100.0,23,1010.0 -2015,11,11,21,30,0,100.0,23,1010.0 -2015,11,11,22,0,0,100.0,23,1010.0 -2015,11,11,22,30,0,100.0,22,1010.0 -2015,11,11,23,0,0,100.0,22,1010.0 -2015,11,11,23,30,0,100.0,21,1010.0 -2015,11,12,0,0,0,100.0,21,1010.0 -2015,11,12,0,30,0,100.0,20,1010.0 -2015,11,12,1,0,0,100.0,20,1010.0 -2015,11,12,1,30,0,100.0,19,1010.0 -2015,11,12,2,0,0,99.02,18,1010.0 -2015,11,12,2,30,0,100.0,17,1010.0 -2015,11,12,3,0,0,88.77,17,1010.0 -2015,11,12,3,30,0,94.60000000000001,16,1010.0 -2015,11,12,4,0,0,85.92,15,1010.0 -2015,11,12,4,30,0,85.95,15,1010.0 -2015,11,12,5,0,0,78.55,15,1010.0 -2015,11,12,5,30,0,83.81,14,1010.0 -2015,11,12,6,0,0,80.9,14,1010.0 -2015,11,12,6,30,0,80.95,14,1010.0 -2015,11,12,7,0,26,80.78,14,1010.0 -2015,11,12,7,30,108,80.83,14,1010.0 -2015,11,12,8,0,60,75.54,15,1020.0 -2015,11,12,8,30,88,75.57000000000001,15,1020.0 -2015,11,12,9,0,268,67.22,16,1020.0 -2015,11,12,9,30,482,67.23,16,1020.0 -2015,11,12,10,0,555,60.300000000000004,17,1020.0 -2015,11,12,10,30,614,60.300000000000004,17,1020.0 -2015,11,12,11,0,658,56.81,18,1020.0 -2015,11,12,11,30,458,56.79,18,1020.0 -2015,11,12,12,0,464,53.72,19,1020.0 -2015,11,12,12,30,690,53.7,19,1020.0 -2015,11,12,13,0,667,53.730000000000004,19,1010.0 -2015,11,12,13,30,628,53.71,19,1010.0 -2015,11,12,14,0,572,53.7,20,1010.0 -2015,11,12,14,30,504,53.69,19,1010.0 -2015,11,12,15,0,422,55.050000000000004,19,1010.0 -2015,11,12,15,30,332,58.59,18,1010.0 -2015,11,12,16,0,235,64.05,18,1010.0 -2015,11,12,16,30,138,68.21000000000001,17,1010.0 -2015,11,12,17,0,49,76.95,17,1010.0 -2015,11,12,17,30,0,76.97,16,1010.0 -2015,11,12,18,0,0,75.71000000000001,16,1010.0 -2015,11,12,18,30,0,80.73,15,1020.0 -2015,11,12,19,0,0,80.57000000000001,15,1020.0 -2015,11,12,19,30,0,80.59,15,1020.0 -2015,11,12,20,0,0,80.58,15,1020.0 -2015,11,12,20,30,0,85.94,14,1020.0 -2015,11,12,21,0,0,85.13,14,1020.0 -2015,11,12,21,30,0,85.14,14,1020.0 -2015,11,12,22,0,0,83.97,14,1020.0 -2015,11,12,22,30,0,83.97,14,1020.0 -2015,11,12,23,0,0,83.03,14,1020.0 -2015,11,12,23,30,0,88.60000000000001,13,1020.0 -2015,11,13,0,0,0,87.71000000000001,13,1020.0 -2015,11,13,0,30,0,87.71000000000001,13,1020.0 -2015,11,13,1,0,0,86.89,13,1020.0 -2015,11,13,1,30,0,86.9,13,1020.0 -2015,11,13,2,0,0,85.82000000000001,13,1020.0 -2015,11,13,2,30,0,85.81,13,1020.0 -2015,11,13,3,0,0,84.65,13,1020.0 -2015,11,13,3,30,0,84.64,13,1020.0 -2015,11,13,4,0,0,83.88,13,1020.0 -2015,11,13,4,30,0,83.89,13,1020.0 -2015,11,13,5,0,0,83.81,13,1020.0 -2015,11,13,5,30,0,83.84,13,1020.0 -2015,11,13,6,0,0,83.83,13,1020.0 -2015,11,13,6,30,0,83.85000000000001,13,1020.0 -2015,11,13,7,0,18,84.14,13,1020.0 -2015,11,13,7,30,85,84.15,13,1020.0 -2015,11,13,8,0,165,79.37,14,1020.0 -2015,11,13,8,30,282,79.38,14,1020.0 -2015,11,13,9,0,301,73.22,15,1020.0 -2015,11,13,9,30,380,73.22,15,1020.0 -2015,11,13,10,0,384,65.4,16,1020.0 -2015,11,13,10,30,502,65.39,16,1020.0 -2015,11,13,11,0,542,59.68,17,1020.0 -2015,11,13,11,30,550,59.660000000000004,17,1020.0 -2015,11,13,12,0,512,59.29,17,1020.0 -2015,11,13,12,30,499,59.28,17,1020.0 -2015,11,13,13,0,432,59.45,18,1020.0 -2015,11,13,13,30,377,59.44,17,1020.0 -2015,11,13,14,0,307,59.95,17,1020.0 -2015,11,13,14,30,365,59.95,17,1020.0 -2015,11,13,15,0,196,61.75,17,1020.0 -2015,11,13,15,30,252,65.8,16,1020.0 -2015,11,13,16,0,179,69.89,16,1020.0 -2015,11,13,16,30,103,74.5,15,1020.0 -2015,11,13,17,0,36,78.65,15,1020.0 -2015,11,13,17,30,0,83.9,14,1020.0 -2015,11,13,18,0,0,83.07000000000001,14,1020.0 -2015,11,13,18,30,0,83.09,14,1020.0 -2015,11,13,19,0,0,83.63,14,1020.0 -2015,11,13,19,30,0,83.65,14,1020.0 -2015,11,13,20,0,0,83.56,14,1020.0 -2015,11,13,20,30,0,89.16,13,1020.0 -2015,11,13,21,0,0,88.39,13,1020.0 -2015,11,13,21,30,0,88.39,13,1020.0 -2015,11,13,22,0,0,87.17,13,1020.0 -2015,11,13,22,30,0,93.06,12,1020.0 -2015,11,13,23,0,0,90.96000000000001,12,1020.0 -2015,11,13,23,30,0,90.94,12,1020.0 -2015,11,14,0,0,0,88.85000000000001,12,1020.0 -2015,11,14,0,30,0,94.9,12,1020.0 -2015,11,14,1,0,0,93.11,12,1020.0 -2015,11,14,1,30,0,93.10000000000001,11,1020.0 -2015,11,14,2,0,0,91.77,11,1020.0 -2015,11,14,2,30,0,91.76,11,1020.0 -2015,11,14,3,0,0,91.14,11,1020.0 -2015,11,14,3,30,0,91.14,11,1020.0 -2015,11,14,4,0,0,91.15,11,1020.0 -2015,11,14,4,30,0,91.18,11,1020.0 -2015,11,14,5,0,0,91.51,11,1020.0 -2015,11,14,5,30,0,91.55,11,1020.0 -2015,11,14,6,0,0,91.85000000000001,11,1020.0 -2015,11,14,6,30,0,91.87,11,1020.0 -2015,11,14,7,0,12,86.44,12,1020.0 -2015,11,14,7,30,58,86.45,12,1020.0 -2015,11,14,8,0,193,82.41,13,1020.0 -2015,11,14,8,30,290,77.24,14,1020.0 -2015,11,14,9,0,383,67.34,16,1020.0 -2015,11,14,9,30,467,67.34,17,1020.0 -2015,11,14,10,0,539,63.43,18,1020.0 -2015,11,14,10,30,598,59.550000000000004,18,1020.0 -2015,11,14,11,0,642,56.71,19,1020.0 -2015,11,14,11,30,669,56.68,19,1020.0 -2015,11,14,12,0,682,57.08,19,1020.0 -2015,11,14,12,30,676,57.050000000000004,19,1020.0 -2015,11,14,13,0,654,57.32,20,1020.0 -2015,11,14,13,30,615,57.300000000000004,19,1020.0 -2015,11,14,14,0,503,57.34,19,1020.0 -2015,11,14,14,30,385,57.34,19,1020.0 -2015,11,14,15,0,371,58.76,19,1020.0 -2015,11,14,15,30,324,62.54,18,1020.0 -2015,11,14,16,0,229,71.23,17,1020.0 -2015,11,14,16,30,133,75.88,16,1020.0 -2015,11,14,17,0,46,76.39,16,1020.0 -2015,11,14,17,30,0,81.46000000000001,15,1020.0 -2015,11,14,18,0,0,80.23,15,1020.0 -2015,11,14,18,30,0,85.60000000000001,15,1020.0 -2015,11,14,19,0,0,85.0,15,1020.0 -2015,11,14,19,30,0,85.01,14,1020.0 -2015,11,14,20,0,0,84.79,14,1020.0 -2015,11,14,20,30,0,84.79,14,1020.0 -2015,11,14,21,0,0,85.43,14,1020.0 -2015,11,14,21,30,0,85.43,14,1020.0 -2015,11,14,22,0,0,85.54,14,1020.0 -2015,11,14,22,30,0,85.54,14,1020.0 -2015,11,14,23,0,0,83.48,14,1020.0 -2015,11,14,23,30,0,89.06,13,1020.0 -2015,11,15,0,0,0,86.61,13,1020.0 -2015,11,15,0,30,0,86.59,13,1020.0 -2015,11,15,1,0,0,85.09,13,1020.0 -2015,11,15,1,30,0,90.82000000000001,12,1020.0 -2015,11,15,2,0,0,90.29,12,1020.0 -2015,11,15,2,30,0,90.28,12,1020.0 -2015,11,15,3,0,0,90.5,12,1020.0 -2015,11,15,3,30,0,90.49,12,1020.0 -2015,11,15,4,0,0,90.7,12,1020.0 -2015,11,15,4,30,0,90.7,12,1020.0 -2015,11,15,5,0,0,90.37,12,1020.0 -2015,11,15,5,30,0,90.37,12,1020.0 -2015,11,15,6,0,0,90.08,12,1020.0 -2015,11,15,6,30,0,90.10000000000001,12,1020.0 -2015,11,15,7,0,16,91.15,12,1020.0 -2015,11,15,7,30,82,85.38,13,1020.0 -2015,11,15,8,0,150,82.89,14,1020.0 -2015,11,15,8,30,282,77.72,15,1020.0 -2015,11,15,9,0,373,77.23,16,1020.0 -2015,11,15,9,30,280,72.47,17,1020.0 -2015,11,15,10,0,363,67.94,19,1020.0 -2015,11,15,10,30,403,67.91,19,1020.0 -2015,11,15,11,0,630,68.73,20,1020.0 -2015,11,15,11,30,658,68.69,20,1020.0 -2015,11,15,12,0,671,68.29,21,1020.0 -2015,11,15,12,30,666,68.26,21,1020.0 -2015,11,15,13,0,643,67.38,22,1020.0 -2015,11,15,13,30,605,67.35,22,1010.0 -2015,11,15,14,0,551,69.8,22,1010.0 -2015,11,15,14,30,484,69.78,22,1010.0 -2015,11,15,15,0,404,71.61,22,1010.0 -2015,11,15,15,30,315,76.10000000000001,21,1010.0 -2015,11,15,16,0,221,78.88,21,1010.0 -2015,11,15,16,30,126,89.23,19,1010.0 -2015,11,15,17,0,43,95.72,18,1010.0 -2015,11,15,17,30,0,100.0,17,1010.0 -2015,11,15,18,0,0,99.60000000000001,17,1010.0 -2015,11,15,18,30,0,99.60000000000001,17,1010.0 -2015,11,15,19,0,0,100.0,17,1010.0 -2015,11,15,19,30,0,100.0,16,1010.0 -2015,11,15,20,0,0,100.0,16,1010.0 -2015,11,15,20,30,0,100.0,16,1010.0 -2015,11,15,21,0,0,100.0,16,1010.0 -2015,11,15,21,30,0,100.0,16,1010.0 -2015,11,15,22,0,0,100.0,16,1010.0 -2015,11,15,22,30,0,100.0,16,1010.0 -2015,11,15,23,0,0,100.0,16,1010.0 -2015,11,15,23,30,0,100.0,16,1010.0 -2015,11,16,0,0,0,100.0,16,1010.0 -2015,11,16,0,30,0,100.0,16,1010.0 -2015,11,16,1,0,0,100.0,17,1010.0 -2015,11,16,1,30,0,100.0,17,1010.0 -2015,11,16,2,0,0,100.0,17,1010.0 -2015,11,16,2,30,0,100.0,17,1010.0 -2015,11,16,3,0,0,100.0,17,1010.0 -2015,11,16,3,30,0,100.0,17,1010.0 -2015,11,16,4,0,0,100.0,17,1010.0 -2015,11,16,4,30,0,100.0,17,1010.0 -2015,11,16,5,0,0,100.0,18,1010.0 -2015,11,16,5,30,0,100.0,18,1010.0 -2015,11,16,6,0,0,100.0,18,1010.0 -2015,11,16,6,30,0,100.0,18,1010.0 -2015,11,16,7,0,1,100.0,18,1010.0 -2015,11,16,7,30,7,100.0,19,1010.0 -2015,11,16,8,0,33,100.0,20,1010.0 -2015,11,16,8,30,88,100.0,20,1010.0 -2015,11,16,9,0,114,100.0,21,1010.0 -2015,11,16,9,30,70,95.97,22,1010.0 -2015,11,16,10,0,139,95.01,23,1010.0 -2015,11,16,10,30,143,94.97,23,1010.0 -2015,11,16,11,0,154,92.34,24,1010.0 -2015,11,16,11,30,330,92.28,24,1010.0 -2015,11,16,12,0,460,93.83,24,1010.0 -2015,11,16,12,30,446,93.77,24,1010.0 -2015,11,16,13,0,360,94.73,24,1000.0 -2015,11,16,13,30,339,94.69,24,1000.0 -2015,11,16,14,0,262,95.06,24,1000.0 -2015,11,16,14,30,301,95.03,24,1000.0 -2015,11,16,15,0,297,94.77,24,1000.0 -2015,11,16,15,30,167,100.0,23,1000.0 -2015,11,16,16,0,155,100.0,23,1000.0 -2015,11,16,16,30,87,100.0,23,1000.0 -2015,11,16,17,0,28,99.39,23,1000.0 -2015,11,16,17,30,0,100.0,23,1000.0 -2015,11,16,18,0,0,100.0,23,1000.0 -2015,11,16,18,30,0,100.0,22,1000.0 -2015,11,16,19,0,0,100.0,22,1000.0 -2015,11,16,19,30,0,100.0,22,1000.0 -2015,11,16,20,0,0,100.0,22,1000.0 -2015,11,16,20,30,0,100.0,22,1000.0 -2015,11,16,21,0,0,100.0,22,1000.0 -2015,11,16,21,30,0,100.0,22,1000.0 -2015,11,16,22,0,0,100.0,22,1000.0 -2015,11,16,22,30,0,100.0,22,1000.0 -2015,11,16,23,0,0,100.0,22,1000.0 -2015,11,16,23,30,0,100.0,22,1000.0 -2015,11,17,0,0,0,100.0,22,1000.0 -2015,11,17,0,30,0,100.0,22,1000.0 -2015,11,17,1,0,0,100.0,23,1000.0 -2015,11,17,1,30,0,100.0,23,1000.0 -2015,11,17,2,0,0,99.89,23,1000.0 -2015,11,17,2,30,0,99.85000000000001,23,1000.0 -2015,11,17,3,0,0,99.8,23,1000.0 -2015,11,17,3,30,0,99.75,23,1000.0 -2015,11,17,4,0,0,99.54,23,1000.0 -2015,11,17,4,30,0,99.52,23,1000.0 -2015,11,17,5,0,0,99.23,23,1000.0 -2015,11,17,5,30,0,99.26,23,1000.0 -2015,11,17,6,0,0,99.24000000000001,23,1000.0 -2015,11,17,6,30,0,99.24000000000001,23,1000.0 -2015,11,17,7,0,0,99.46000000000001,23,1000.0 -2015,11,17,7,30,2,99.44,23,1000.0 -2015,11,17,8,0,8,100.0,23,1000.0 -2015,11,17,8,30,10,100.0,23,1000.0 -2015,11,17,9,0,14,100.0,24,1000.0 -2015,11,17,9,30,70,100.0,24,1000.0 -2015,11,17,10,0,203,98.91,24,1000.0 -2015,11,17,10,30,226,98.88,24,1000.0 -2015,11,17,11,0,141,99.95,24,1000.0 -2015,11,17,11,30,73,99.92,24,1000.0 -2015,11,17,12,0,64,96.89,24,1000.0 -2015,11,17,12,30,16,100.0,23,1000.0 -2015,11,17,13,0,15,97.54,22,1000.0 -2015,11,17,13,30,13,100.0,20,1000.0 -2015,11,17,14,0,20,96.24000000000001,19,1000.0 -2015,11,17,14,30,88,100.0,18,1000.0 -2015,11,17,15,0,145,86.67,17,1000.0 -2015,11,17,15,30,11,92.38,16,1000.0 -2015,11,17,16,0,128,83.0,15,1000.0 -2015,11,17,16,30,73,88.56,14,1000.0 -2015,11,17,17,0,25,89.28,13,1000.0 -2015,11,17,17,30,0,89.32000000000001,13,1000.0 -2015,11,17,18,0,0,86.43,13,1000.0 -2015,11,17,18,30,0,92.31,12,1000.0 -2015,11,17,19,0,0,90.14,12,1000.0 -2015,11,17,19,30,0,90.17,12,1000.0 -2015,11,17,20,0,0,89.06,12,1000.0 -2015,11,17,20,30,0,89.08,12,1000.0 -2015,11,17,21,0,0,88.68,12,1000.0 -2015,11,17,21,30,0,94.74,11,1000.0 -2015,11,17,22,0,0,93.0,11,1000.0 -2015,11,17,22,30,0,93.01,11,1000.0 -2015,11,17,23,0,0,90.82000000000001,11,1000.0 -2015,11,17,23,30,0,97.06,10,1000.0 -2015,11,18,0,0,0,95.99000000000001,10,1000.0 -2015,11,18,0,30,0,95.99000000000001,10,1000.0 -2015,11,18,1,0,0,96.06,10,1000.0 -2015,11,18,1,30,0,96.06,10,1000.0 -2015,11,18,2,0,0,96.74000000000001,10,1000.0 -2015,11,18,2,30,0,100.0,9,1000.0 -2015,11,18,3,0,0,100.0,9,1000.0 -2015,11,18,3,30,0,100.0,9,1000.0 -2015,11,18,4,0,0,100.0,9,1000.0 -2015,11,18,4,30,0,100.0,9,1000.0 -2015,11,18,5,0,0,100.0,9,1000.0 -2015,11,18,5,30,0,100.0,9,1000.0 -2015,11,18,6,0,0,100.0,9,1000.0 -2015,11,18,6,30,0,100.0,9,1010.0 -2015,11,18,7,0,16,100.0,9,1010.0 -2015,11,18,7,30,96,95.64,10,1010.0 -2015,11,18,8,0,198,86.15,12,1010.0 -2015,11,18,8,30,300,80.7,13,1010.0 -2015,11,18,9,0,399,79.59,14,1010.0 -2015,11,18,9,30,487,74.63,15,1010.0 -2015,11,18,10,0,565,58.26,17,1010.0 -2015,11,18,10,30,626,54.7,18,1010.0 -2015,11,18,11,0,674,49.34,19,1010.0 -2015,11,18,11,30,703,49.32,19,1010.0 -2015,11,18,12,0,716,46.51,20,1010.0 -2015,11,18,12,30,710,46.49,20,1010.0 -2015,11,18,13,0,688,45.07,21,1000.0 -2015,11,18,13,30,648,45.050000000000004,21,1000.0 -2015,11,18,14,0,592,46.72,21,1000.0 -2015,11,18,14,30,522,46.71,21,1000.0 -2015,11,18,15,0,439,49.17,21,1000.0 -2015,11,18,15,30,346,52.28,20,1000.0 -2015,11,18,16,0,245,60.47,20,1000.0 -2015,11,18,16,30,142,68.5,18,1000.0 -2015,11,18,17,0,48,69.55,17,1000.0 -2015,11,18,17,30,0,74.13,16,1010.0 -2015,11,18,18,0,0,67.15,16,1010.0 -2015,11,18,18,30,0,71.61,15,1010.0 -2015,11,18,19,0,0,71.91,15,1010.0 -2015,11,18,19,30,0,76.71000000000001,14,1010.0 -2015,11,18,20,0,0,77.58,14,1010.0 -2015,11,18,20,30,0,82.81,13,1010.0 -2015,11,18,21,0,0,83.75,13,1010.0 -2015,11,18,21,30,0,89.44,13,1010.0 -2015,11,18,22,0,0,90.64,13,1010.0 -2015,11,18,22,30,0,90.65,12,1010.0 -2015,11,18,23,0,0,92.2,12,1010.0 -2015,11,18,23,30,0,92.21000000000001,12,1010.0 -2015,11,19,0,0,0,94.57000000000001,12,1010.0 -2015,11,19,0,30,0,94.58,12,1010.0 -2015,11,19,1,0,0,97.04,12,1010.0 -2015,11,19,1,30,0,97.05,12,1010.0 -2015,11,19,2,0,0,99.4,13,1010.0 -2015,11,19,2,30,0,99.41,13,1010.0 -2015,11,19,3,0,0,94.38,13,1010.0 -2015,11,19,3,30,0,94.4,13,1010.0 -2015,11,19,4,0,0,94.8,13,1010.0 -2015,11,19,4,30,0,100.0,13,1010.0 -2015,11,19,5,0,0,100.0,13,1010.0 -2015,11,19,5,30,0,100.0,12,1010.0 -2015,11,19,6,0,0,100.0,12,1010.0 -2015,11,19,6,30,0,100.0,12,1010.0 -2015,11,19,7,0,15,100.0,12,1010.0 -2015,11,19,7,30,91,96.96000000000001,13,1010.0 -2015,11,19,8,0,188,90.81,15,1010.0 -2015,11,19,8,30,288,85.21000000000001,16,1010.0 -2015,11,19,9,0,382,85.24,17,1010.0 -2015,11,19,9,30,468,80.06,18,1010.0 -2015,11,19,10,0,542,70.60000000000001,20,1010.0 -2015,11,19,10,30,603,66.38,21,1010.0 -2015,11,19,11,0,647,57.83,22,1010.0 -2015,11,19,11,30,676,57.81,22,1010.0 -2015,11,19,12,0,690,54.14,23,1010.0 -2015,11,19,12,30,685,54.120000000000005,23,1010.0 -2015,11,19,13,0,663,50.03,24,1010.0 -2015,11,19,13,30,625,50.02,24,1010.0 -2015,11,19,14,0,570,50.11,24,1010.0 -2015,11,19,14,30,502,53.21,23,1010.0 -2015,11,19,15,0,421,55.61,23,1010.0 -2015,11,19,15,30,330,59.09,22,1010.0 -2015,11,19,16,0,232,68.64,22,1010.0 -2015,11,19,16,30,133,77.67,20,1010.0 -2015,11,19,17,0,43,80.37,18,1010.0 -2015,11,19,17,30,0,85.62,17,1010.0 -2015,11,19,18,0,0,85.41,16,1010.0 -2015,11,19,18,30,0,91.08,16,1010.0 -2015,11,19,19,0,0,90.66,16,1010.0 -2015,11,19,19,30,0,90.68,15,1010.0 -2015,11,19,20,0,0,90.44,15,1010.0 -2015,11,19,20,30,0,96.47,15,1010.0 -2015,11,19,21,0,0,96.35000000000001,15,1010.0 -2015,11,19,21,30,0,96.35000000000001,14,1010.0 -2015,11,19,22,0,0,96.17,14,1010.0 -2015,11,19,22,30,0,100.0,14,1010.0 -2015,11,19,23,0,0,100.0,14,1010.0 -2015,11,19,23,30,0,100.0,13,1010.0 -2015,11,20,0,0,0,100.0,13,1010.0 -2015,11,20,0,30,0,100.0,12,1010.0 -2015,11,20,1,0,0,100.0,12,1010.0 -2015,11,20,1,30,0,100.0,12,1010.0 -2015,11,20,2,0,0,100.0,12,1010.0 -2015,11,20,2,30,0,100.0,12,1010.0 -2015,11,20,3,0,0,100.0,12,1010.0 -2015,11,20,3,30,0,100.0,11,1010.0 -2015,11,20,4,0,0,100.0,11,1010.0 -2015,11,20,4,30,0,100.0,11,1010.0 -2015,11,20,5,0,0,100.0,11,1010.0 -2015,11,20,5,30,0,100.0,11,1010.0 -2015,11,20,6,0,0,100.0,11,1010.0 -2015,11,20,6,30,0,100.0,11,1010.0 -2015,11,20,7,0,13,100.0,11,1010.0 -2015,11,20,7,30,87,99.64,12,1010.0 -2015,11,20,8,0,183,91.4,14,1010.0 -2015,11,20,8,30,281,85.7,15,1010.0 -2015,11,20,9,0,375,81.02,17,1010.0 -2015,11,20,9,30,460,76.07000000000001,18,1010.0 -2015,11,20,10,0,532,72.76,19,1010.0 -2015,11,20,10,30,592,68.36,20,1010.0 -2015,11,20,11,0,635,63.78,21,1010.0 -2015,11,20,11,30,663,63.75,21,1010.0 -2015,11,20,12,0,672,64.25,21,1010.0 -2015,11,20,12,30,510,64.21000000000001,21,1010.0 -2015,11,20,13,0,403,61.31,22,1010.0 -2015,11,20,13,30,379,61.29,22,1010.0 -2015,11,20,14,0,370,62.08,22,1010.0 -2015,11,20,14,30,275,65.97,21,1010.0 -2015,11,20,15,0,230,67.16,21,1010.0 -2015,11,20,15,30,207,71.41,20,1010.0 -2015,11,20,16,0,145,75.13,20,1010.0 -2015,11,20,16,30,124,85.07000000000001,18,1010.0 -2015,11,20,17,0,39,90.42,17,1010.0 -2015,11,20,17,30,0,96.35000000000001,16,1010.0 -2015,11,20,18,0,0,93.11,16,1010.0 -2015,11,20,18,30,0,93.11,16,1010.0 -2015,11,20,19,0,0,93.47,16,1010.0 -2015,11,20,19,30,0,93.46000000000001,16,1010.0 -2015,11,20,20,0,0,95.63,16,1010.0 -2015,11,20,20,30,0,95.60000000000001,16,1010.0 -2015,11,20,21,0,0,98.71000000000001,16,1010.0 -2015,11,20,21,30,0,98.68,16,1010.0 -2015,11,20,22,0,0,100.0,16,1010.0 -2015,11,20,22,30,0,100.0,16,1010.0 -2015,11,20,23,0,0,100.0,16,1010.0 -2015,11,20,23,30,0,100.0,16,1010.0 -2015,11,21,0,0,0,100.0,16,1010.0 -2015,11,21,0,30,0,100.0,16,1010.0 -2015,11,21,1,0,0,100.0,16,1010.0 -2015,11,21,1,30,0,100.0,16,1010.0 -2015,11,21,2,0,0,100.0,16,1010.0 -2015,11,21,2,30,0,100.0,16,1010.0 -2015,11,21,3,0,0,100.0,17,1010.0 -2015,11,21,3,30,0,100.0,17,1010.0 -2015,11,21,4,0,0,100.0,17,1010.0 -2015,11,21,4,30,0,100.0,17,1010.0 -2015,11,21,5,0,0,100.0,17,1010.0 -2015,11,21,5,30,0,100.0,17,1010.0 -2015,11,21,6,0,0,100.0,17,1010.0 -2015,11,21,6,30,0,100.0,17,1010.0 -2015,11,21,7,0,0,100.0,18,1010.0 -2015,11,21,7,30,3,100.0,18,1010.0 -2015,11,21,8,0,6,97.99000000000001,19,1010.0 -2015,11,21,8,30,214,98.03,19,1010.0 -2015,11,21,9,0,286,97.77,19,1010.0 -2015,11,21,9,30,60,100.0,18,1010.0 -2015,11,21,10,0,88,96.10000000000001,18,1010.0 -2015,11,21,10,30,49,96.12,18,1010.0 -2015,11,21,11,0,132,86.46000000000001,18,1010.0 -2015,11,21,11,30,154,86.46000000000001,18,1010.0 -2015,11,21,12,0,353,81.05,18,1010.0 -2015,11,21,12,30,125,86.32000000000001,18,1010.0 -2015,11,21,13,0,196,80.49,18,1010.0 -2015,11,21,13,30,307,80.51,17,1010.0 -2015,11,21,14,0,282,73.01,17,1010.0 -2015,11,21,14,30,470,77.81,16,1010.0 -2015,11,21,15,0,397,69.83,16,1010.0 -2015,11,21,15,30,310,74.46000000000001,15,1010.0 -2015,11,21,16,0,220,67.35,15,1010.0 -2015,11,21,16,30,125,71.86,14,1010.0 -2015,11,21,17,0,40,70.32000000000001,13,1010.0 -2015,11,21,17,30,0,75.11,12,1010.0 -2015,11,21,18,0,0,70.21000000000001,12,1020.0 -2015,11,21,18,30,0,75.03,11,1020.0 -2015,11,21,19,0,0,70.92,11,1020.0 -2015,11,21,19,30,0,75.82000000000001,10,1020.0 -2015,11,21,20,0,0,73.31,10,1020.0 -2015,11,21,20,30,0,78.42,9,1020.0 -2015,11,21,21,0,0,77.32000000000001,9,1020.0 -2015,11,21,21,30,0,82.74,8,1020.0 -2015,11,21,22,0,0,80.98,8,1020.0 -2015,11,21,22,30,0,86.69,7,1020.0 -2015,11,21,23,0,0,84.58,7,1020.0 -2015,11,21,23,30,0,90.58,6,1020.0 -2015,11,22,0,0,0,88.44,6,1020.0 -2015,11,22,0,30,0,88.43,6,1020.0 -2015,11,22,1,0,0,86.47,6,1020.0 -2015,11,22,1,30,0,92.66,5,1020.0 -2015,11,22,2,0,0,90.35000000000001,5,1020.0 -2015,11,22,2,30,0,96.88,4,1020.0 -2015,11,22,3,0,0,94.45,4,1020.0 -2015,11,22,3,30,0,94.46000000000001,4,1020.0 -2015,11,22,4,0,0,92.27,4,1020.0 -2015,11,22,4,30,0,99.03,3,1020.0 -2015,11,22,5,0,0,96.87,3,1020.0 -2015,11,22,5,30,0,96.91,3,1020.0 -2015,11,22,6,0,0,95.01,3,1020.0 -2015,11,22,6,30,0,95.05,3,1020.0 -2015,11,22,7,0,0,94.07000000000001,3,1020.0 -2015,11,22,7,30,94,87.7,4,1020.0 -2015,11,22,8,0,197,78.15,5,1020.0 -2015,11,22,8,30,301,72.93,6,1020.0 -2015,11,22,9,0,401,61.42,7,1020.0 -2015,11,22,9,30,491,57.36,8,1020.0 -2015,11,22,10,0,569,49.94,9,1020.0 -2015,11,22,10,30,633,49.92,9,1020.0 -2015,11,22,11,0,680,46.49,10,1020.0 -2015,11,22,11,30,711,46.46,10,1020.0 -2015,11,22,12,0,723,44.82,11,1020.0 -2015,11,22,12,30,718,44.79,11,1020.0 -2015,11,22,13,0,695,43.160000000000004,12,1020.0 -2015,11,22,13,30,655,43.14,12,1020.0 -2015,11,22,14,0,599,43.85,12,1020.0 -2015,11,22,14,30,528,43.84,12,1020.0 -2015,11,22,15,0,444,44.43,12,1020.0 -2015,11,22,15,30,349,47.46,11,1020.0 -2015,11,22,16,0,247,53.88,11,1020.0 -2015,11,22,16,30,143,61.58,9,1020.0 -2015,11,22,17,0,47,74.24,8,1020.0 -2015,11,22,17,30,0,79.48,7,1020.0 -2015,11,22,18,0,0,73.19,7,1020.0 -2015,11,22,18,30,0,73.2,7,1020.0 -2015,11,22,19,0,0,71.76,7,1020.0 -2015,11,22,19,30,0,76.88,6,1020.0 -2015,11,22,20,0,0,75.8,6,1020.0 -2015,11,22,20,30,0,75.8,6,1020.0 -2015,11,22,21,0,0,75.08,6,1020.0 -2015,11,22,21,30,0,80.46000000000001,5,1020.0 -2015,11,22,22,0,0,79.55,5,1020.0 -2015,11,22,22,30,0,79.55,5,1020.0 -2015,11,22,23,0,0,78.83,5,1020.0 -2015,11,22,23,30,0,78.83,5,1020.0 -2015,11,23,0,0,0,78.34,5,1020.0 -2015,11,23,0,30,0,78.34,5,1020.0 -2015,11,23,1,0,0,78.21000000000001,5,1020.0 -2015,11,23,1,30,0,78.21000000000001,5,1020.0 -2015,11,23,2,0,0,78.55,5,1020.0 -2015,11,23,2,30,0,84.23,4,1020.0 -2015,11,23,3,0,0,85.05,4,1020.0 -2015,11,23,3,30,0,91.25,4,1020.0 -2015,11,23,4,0,0,92.54,4,1020.0 -2015,11,23,4,30,0,92.55,3,1020.0 -2015,11,23,5,0,0,93.81,3,1020.0 -2015,11,23,5,30,0,100.0,2,1020.0 -2015,11,23,6,0,0,100.0,2,1020.0 -2015,11,23,6,30,0,100.0,2,1020.0 -2015,11,23,7,0,0,97.97,3,1020.0 -2015,11,23,7,30,90,91.34,4,1020.0 -2015,11,23,8,0,191,83.75,6,1020.0 -2015,11,23,8,30,294,78.2,7,1020.0 -2015,11,23,9,0,392,69.08,9,1020.0 -2015,11,23,9,30,480,64.6,10,1020.0 -2015,11,23,10,0,557,55.29,12,1020.0 -2015,11,23,10,30,619,51.77,13,1020.0 -2015,11,23,11,0,665,50.84,14,1020.0 -2015,11,23,11,30,696,50.82,14,1020.0 -2015,11,23,12,0,708,49.71,15,1020.0 -2015,11,23,12,30,703,49.69,15,1020.0 -2015,11,23,13,0,681,50.910000000000004,15,1020.0 -2015,11,23,13,30,642,50.89,15,1020.0 -2015,11,23,14,0,586,48.25,16,1020.0 -2015,11,23,14,30,517,51.42,15,1020.0 -2015,11,23,15,0,433,52.26,15,1020.0 -2015,11,23,15,30,339,55.74,14,1020.0 -2015,11,23,16,0,239,64.16,14,1020.0 -2015,11,23,16,30,137,73.10000000000001,12,1020.0 -2015,11,23,17,0,44,77.05,11,1020.0 -2015,11,23,17,30,0,82.36,10,1020.0 -2015,11,23,18,0,0,83.60000000000001,9,1020.0 -2015,11,23,18,30,0,83.61,9,1020.0 -2015,11,23,19,0,0,84.55,9,1020.0 -2015,11,23,19,30,0,84.55,9,1020.0 -2015,11,23,20,0,0,86.02,9,1020.0 -2015,11,23,20,30,0,86.02,9,1020.0 -2015,11,23,21,0,0,86.55,9,1020.0 -2015,11,23,21,30,0,86.54,9,1020.0 -2015,11,23,22,0,0,86.61,9,1020.0 -2015,11,23,22,30,0,86.58,9,1020.0 -2015,11,23,23,0,0,87.48,9,1020.0 -2015,11,23,23,30,0,87.46000000000001,9,1020.0 -2015,11,24,0,0,0,89.16,9,1020.0 -2015,11,24,0,30,0,89.16,9,1020.0 -2015,11,24,1,0,0,89.38,9,1020.0 -2015,11,24,1,30,0,89.37,9,1020.0 -2015,11,24,2,0,0,89.62,9,1020.0 -2015,11,24,2,30,0,89.59,9,1020.0 -2015,11,24,3,0,0,91.99,9,1020.0 -2015,11,24,3,30,0,91.98,9,1020.0 -2015,11,24,4,0,0,94.43,9,1020.0 -2015,11,24,4,30,0,94.43,9,1020.0 -2015,11,24,5,0,0,96.9,9,1020.0 -2015,11,24,5,30,0,96.9,9,1020.0 -2015,11,24,6,0,0,99.17,9,1020.0 -2015,11,24,6,30,0,99.19,9,1020.0 -2015,11,24,7,0,0,100.0,9,1020.0 -2015,11,24,7,30,38,94.9,10,1020.0 -2015,11,24,8,0,138,88.91,12,1020.0 -2015,11,24,8,30,216,83.27,13,1020.0 -2015,11,24,9,0,357,83.36,14,1020.0 -2015,11,24,9,30,441,78.14,15,1020.0 -2015,11,24,10,0,513,75.21000000000001,17,1020.0 -2015,11,24,10,30,573,70.59,18,1020.0 -2015,11,24,11,0,617,70.87,19,1020.0 -2015,11,24,11,30,252,70.84,19,1020.0 -2015,11,24,12,0,344,69.06,20,1020.0 -2015,11,24,12,30,389,69.03,20,1010.0 -2015,11,24,13,0,451,70.42,20,1010.0 -2015,11,24,13,30,431,70.4,20,1010.0 -2015,11,24,14,0,465,71.59,20,1010.0 -2015,11,24,14,30,423,71.58,20,1010.0 -2015,11,24,15,0,216,73.68,20,1010.0 -2015,11,24,15,30,278,78.38,19,1010.0 -2015,11,24,16,0,135,81.47,19,1010.0 -2015,11,24,16,30,115,86.71000000000001,18,1010.0 -2015,11,24,17,0,35,92.54,17,1010.0 -2015,11,24,17,30,0,98.61,16,1010.0 -2015,11,24,18,0,0,98.57000000000001,16,1010.0 -2015,11,24,18,30,0,100.0,15,1010.0 -2015,11,24,19,0,0,100.0,15,1010.0 -2015,11,24,19,30,0,100.0,15,1010.0 -2015,11,24,20,0,0,100.0,15,1010.0 -2015,11,24,20,30,0,100.0,15,1010.0 -2015,11,24,21,0,0,100.0,15,1010.0 -2015,11,24,21,30,0,100.0,15,1010.0 -2015,11,24,22,0,0,100.0,15,1010.0 -2015,11,24,22,30,0,100.0,15,1010.0 -2015,11,24,23,0,0,100.0,15,1010.0 -2015,11,24,23,30,0,100.0,15,1010.0 -2015,11,25,0,0,0,100.0,15,1010.0 -2015,11,25,0,30,0,100.0,15,1010.0 -2015,11,25,1,0,0,100.0,16,1010.0 -2015,11,25,1,30,0,100.0,16,1010.0 -2015,11,25,2,0,0,100.0,16,1010.0 -2015,11,25,2,30,0,100.0,16,1010.0 -2015,11,25,3,0,0,100.0,16,1010.0 -2015,11,25,3,30,0,100.0,16,1010.0 -2015,11,25,4,0,0,100.0,16,1010.0 -2015,11,25,4,30,0,100.0,16,1010.0 -2015,11,25,5,0,0,100.0,17,1010.0 -2015,11,25,5,30,0,100.0,17,1010.0 -2015,11,25,6,0,0,100.0,17,1010.0 -2015,11,25,6,30,0,100.0,17,1010.0 -2015,11,25,7,0,0,100.0,17,1010.0 -2015,11,25,7,30,31,96.98,18,1010.0 -2015,11,25,8,0,71,95.09,19,1010.0 -2015,11,25,8,30,113,95.11,19,1010.0 -2015,11,25,9,0,154,92.5,20,1010.0 -2015,11,25,9,30,213,86.98,21,1010.0 -2015,11,25,10,0,249,81.7,22,1010.0 -2015,11,25,10,30,278,81.68,22,1010.0 -2015,11,25,11,0,300,76.46000000000001,23,1010.0 -2015,11,25,11,30,631,76.43,23,1010.0 -2015,11,25,12,0,646,76.51,23,1010.0 -2015,11,25,12,30,642,76.48,23,1010.0 -2015,11,25,13,0,621,76.63,23,1010.0 -2015,11,25,13,30,584,76.61,23,1010.0 -2015,11,25,14,0,532,76.75,23,1010.0 -2015,11,25,14,30,467,76.75,23,1010.0 -2015,11,25,15,0,385,76.8,23,1010.0 -2015,11,25,15,30,299,81.60000000000001,22,1010.0 -2015,11,25,16,0,208,87.66,22,1010.0 -2015,11,25,16,30,116,93.23,20,1010.0 -2015,11,25,17,0,35,99.89,19,1010.0 -2015,11,25,17,30,0,100.0,18,1010.0 -2015,11,25,18,0,0,100.0,18,1010.0 -2015,11,25,18,30,0,100.0,18,1010.0 -2015,11,25,19,0,0,100.0,18,1010.0 -2015,11,25,19,30,0,100.0,18,1010.0 -2015,11,25,20,0,0,100.0,18,1010.0 -2015,11,25,20,30,0,100.0,18,1010.0 -2015,11,25,21,0,0,100.0,18,1010.0 -2015,11,25,21,30,0,100.0,18,1010.0 -2015,11,25,22,0,0,100.0,18,1010.0 -2015,11,25,22,30,0,100.0,18,1010.0 -2015,11,25,23,0,0,100.0,18,1010.0 -2015,11,25,23,30,0,100.0,18,1010.0 -2015,11,26,0,0,0,100.0,18,1010.0 -2015,11,26,0,30,0,100.0,18,1010.0 -2015,11,26,1,0,0,100.0,18,1010.0 -2015,11,26,1,30,0,100.0,18,1010.0 -2015,11,26,2,0,0,100.0,19,1010.0 -2015,11,26,2,30,0,100.0,19,1010.0 -2015,11,26,3,0,0,100.0,19,1010.0 -2015,11,26,3,30,0,100.0,19,1010.0 -2015,11,26,4,0,0,100.0,19,1010.0 -2015,11,26,4,30,0,100.0,19,1010.0 -2015,11,26,5,0,0,100.0,19,1010.0 -2015,11,26,5,30,0,100.0,19,1010.0 -2015,11,26,6,0,0,100.0,19,1010.0 -2015,11,26,6,30,0,100.0,19,1010.0 -2015,11,26,7,0,0,100.0,19,1020.0 -2015,11,26,7,30,10,100.0,19,1020.0 -2015,11,26,8,0,24,100.0,20,1020.0 -2015,11,26,8,30,230,100.0,20,1020.0 -2015,11,26,9,0,317,99.5,21,1020.0 -2015,11,26,9,30,397,99.51,21,1020.0 -2015,11,26,10,0,401,95.62,22,1020.0 -2015,11,26,10,30,450,95.61,22,1020.0 -2015,11,26,11,0,263,90.52,23,1020.0 -2015,11,26,11,30,306,90.48,23,1020.0 -2015,11,26,12,0,382,90.32000000000001,23,1020.0 -2015,11,26,12,30,450,90.29,23,1010.0 -2015,11,26,13,0,367,90.02,24,1010.0 -2015,11,26,13,30,346,90.0,23,1010.0 -2015,11,26,14,0,374,90.3,23,1010.0 -2015,11,26,14,30,284,90.29,23,1010.0 -2015,11,26,15,0,189,91.44,23,1010.0 -2015,11,26,15,30,146,97.16,22,1010.0 -2015,11,26,16,0,79,98.01,22,1010.0 -2015,11,26,16,30,43,100.0,21,1010.0 -2015,11,26,17,0,11,100.0,21,1010.0 -2015,11,26,17,30,0,100.0,21,1010.0 -2015,11,26,18,0,0,100.0,21,1010.0 -2015,11,26,18,30,0,100.0,21,1010.0 -2015,11,26,19,0,0,100.0,21,1010.0 -2015,11,26,19,30,0,100.0,21,1010.0 -2015,11,26,20,0,0,100.0,21,1010.0 -2015,11,26,20,30,0,100.0,20,1010.0 -2015,11,26,21,0,0,100.0,20,1010.0 -2015,11,26,21,30,0,100.0,20,1010.0 -2015,11,26,22,0,0,100.0,20,1010.0 -2015,11,26,22,30,0,100.0,20,1010.0 -2015,11,26,23,0,0,100.0,20,1010.0 -2015,11,26,23,30,0,100.0,20,1010.0 -2015,11,27,0,0,0,100.0,20,1010.0 -2015,11,27,0,30,0,100.0,20,1010.0 -2015,11,27,1,0,0,100.0,20,1010.0 -2015,11,27,1,30,0,100.0,20,1010.0 -2015,11,27,2,0,0,100.0,20,1010.0 -2015,11,27,2,30,0,100.0,20,1010.0 -2015,11,27,3,0,0,100.0,20,1010.0 -2015,11,27,3,30,0,100.0,20,1010.0 -2015,11,27,4,0,0,100.0,20,1010.0 -2015,11,27,4,30,0,100.0,20,1010.0 -2015,11,27,5,0,0,100.0,20,1010.0 -2015,11,27,5,30,0,100.0,20,1010.0 -2015,11,27,6,0,0,100.0,20,1010.0 -2015,11,27,6,30,0,100.0,20,1010.0 -2015,11,27,7,0,0,100.0,20,1010.0 -2015,11,27,7,30,14,100.0,20,1010.0 -2015,11,27,8,0,30,100.0,21,1010.0 -2015,11,27,8,30,74,100.0,21,1010.0 -2015,11,27,9,0,163,100.0,21,1010.0 -2015,11,27,9,30,176,100.0,21,1010.0 -2015,11,27,10,0,187,99.89,22,1010.0 -2015,11,27,10,30,209,99.86,22,1010.0 -2015,11,27,11,0,229,96.62,23,1010.0 -2015,11,27,11,30,374,96.58,23,1010.0 -2015,11,27,12,0,345,90.72,24,1010.0 -2015,11,27,12,30,351,90.67,24,1010.0 -2015,11,27,13,0,176,89.76,24,1010.0 -2015,11,27,13,30,245,89.73,24,1010.0 -2015,11,27,14,0,312,89.79,24,1010.0 -2015,11,27,14,30,251,95.35000000000001,23,1010.0 -2015,11,27,15,0,274,95.63,23,1010.0 -2015,11,27,15,30,210,95.64,23,1010.0 -2015,11,27,16,0,83,95.79,23,1010.0 -2015,11,27,16,30,45,100.0,22,1010.0 -2015,11,27,17,0,13,100.0,22,1010.0 -2015,11,27,17,30,0,100.0,21,1010.0 -2015,11,27,18,0,0,100.0,21,1010.0 -2015,11,27,18,30,0,100.0,21,1010.0 -2015,11,27,19,0,0,100.0,21,1010.0 -2015,11,27,19,30,0,100.0,20,1010.0 -2015,11,27,20,0,0,100.0,20,1010.0 -2015,11,27,20,30,0,100.0,20,1010.0 -2015,11,27,21,0,0,100.0,20,1010.0 -2015,11,27,21,30,0,100.0,20,1010.0 -2015,11,27,22,0,0,100.0,20,1010.0 -2015,11,27,22,30,0,100.0,19,1010.0 -2015,11,27,23,0,0,100.0,19,1010.0 -2015,11,27,23,30,0,100.0,19,1010.0 -2015,11,28,0,0,0,100.0,19,1010.0 -2015,11,28,0,30,0,100.0,19,1010.0 -2015,11,28,1,0,0,100.0,19,1010.0 -2015,11,28,1,30,0,100.0,18,1010.0 -2015,11,28,2,0,0,100.0,18,1010.0 -2015,11,28,2,30,0,100.0,18,1010.0 -2015,11,28,3,0,0,100.0,18,1010.0 -2015,11,28,3,30,0,100.0,17,1010.0 -2015,11,28,4,0,0,100.0,17,1010.0 -2015,11,28,4,30,0,100.0,17,1010.0 -2015,11,28,5,0,0,100.0,17,1010.0 -2015,11,28,5,30,0,100.0,16,1010.0 -2015,11,28,6,0,0,100.0,16,1010.0 -2015,11,28,6,30,0,100.0,15,1010.0 -2015,11,28,7,0,0,100.0,15,1010.0 -2015,11,28,7,30,4,100.0,15,1010.0 -2015,11,28,8,0,11,100.0,15,1010.0 -2015,11,28,8,30,18,100.0,15,1010.0 -2015,11,28,9,0,103,100.0,15,1010.0 -2015,11,28,9,30,109,100.0,15,1020.0 -2015,11,28,10,0,89,100.0,16,1020.0 -2015,11,28,10,30,164,100.0,16,1010.0 -2015,11,28,11,0,140,94.78,17,1010.0 -2015,11,28,11,30,124,94.74,17,1010.0 -2015,11,28,12,0,34,94.41,17,1010.0 -2015,11,28,12,30,131,94.37,17,1010.0 -2015,11,28,13,0,107,92.35000000000001,17,1010.0 -2015,11,28,13,30,117,98.36,16,1010.0 -2015,11,28,14,0,54,94.92,16,1010.0 -2015,11,28,14,30,201,100.0,15,1010.0 -2015,11,28,15,0,99,95.94,15,1010.0 -2015,11,28,15,30,35,100.0,14,1010.0 -2015,11,28,16,0,95,95.72,14,1010.0 -2015,11,28,16,30,51,100.0,13,1010.0 -2015,11,28,17,0,14,100.0,12,1010.0 -2015,11,28,17,30,0,100.0,11,1010.0 -2015,11,28,18,0,0,100.0,11,1010.0 -2015,11,28,18,30,0,100.0,10,1010.0 -2015,11,28,19,0,0,100.0,10,1010.0 -2015,11,28,19,30,0,100.0,10,1010.0 -2015,11,28,20,0,0,96.05,10,1020.0 -2015,11,28,20,30,0,100.0,9,1020.0 -2015,11,28,21,0,0,100.0,9,1020.0 -2015,11,28,21,30,0,100.0,9,1020.0 -2015,11,28,22,0,0,99.35000000000001,9,1020.0 -2015,11,28,22,30,0,99.34,9,1020.0 -2015,11,28,23,0,0,99.26,9,1020.0 -2015,11,28,23,30,0,99.24000000000001,9,1010.0 -2015,11,29,0,0,0,99.69,9,1010.0 -2015,11,29,0,30,0,99.68,9,1010.0 -2015,11,29,1,0,0,100.0,9,1010.0 -2015,11,29,1,30,0,100.0,9,1010.0 -2015,11,29,2,0,0,100.0,9,1010.0 -2015,11,29,2,30,0,100.0,9,1010.0 -2015,11,29,3,0,0,99.92,9,1010.0 -2015,11,29,3,30,0,99.91,9,1010.0 -2015,11,29,4,0,0,99.65,9,1010.0 -2015,11,29,4,30,0,99.65,9,1010.0 -2015,11,29,5,0,0,99.38,9,1010.0 -2015,11,29,5,30,0,99.4,9,1010.0 -2015,11,29,6,0,0,99.52,9,1010.0 -2015,11,29,6,30,0,99.55,9,1010.0 -2015,11,29,7,0,0,99.93,9,1020.0 -2015,11,29,7,30,17,99.94,9,1020.0 -2015,11,29,8,0,43,94.96000000000001,10,1020.0 -2015,11,29,8,30,72,94.96000000000001,10,1020.0 -2015,11,29,9,0,312,92.26,11,1020.0 -2015,11,29,9,30,393,86.34,12,1020.0 -2015,11,29,10,0,131,85.87,13,1010.0 -2015,11,29,10,30,148,85.83,13,1010.0 -2015,11,29,11,0,160,85.67,14,1010.0 -2015,11,29,11,30,181,80.28,15,1010.0 -2015,11,29,12,0,183,79.73,16,1010.0 -2015,11,29,12,30,182,79.68,16,1010.0 -2015,11,29,13,0,260,78.29,17,1010.0 -2015,11,29,13,30,168,78.25,17,1010.0 -2015,11,29,14,0,123,81.01,17,1010.0 -2015,11,29,14,30,157,81.0,17,1010.0 -2015,11,29,15,0,96,82.22,17,1010.0 -2015,11,29,15,30,280,87.60000000000001,16,1010.0 -2015,11,29,16,0,191,86.84,16,1010.0 -2015,11,29,16,30,104,92.57000000000001,15,1010.0 -2015,11,29,17,0,29,97.15,14,1010.0 -2015,11,29,17,30,0,100.0,13,1010.0 -2015,11,29,18,0,0,99.87,13,1010.0 -2015,11,29,18,30,0,100.0,12,1010.0 -2015,11,29,19,0,0,100.0,12,1010.0 -2015,11,29,19,30,0,100.0,12,1010.0 -2015,11,29,20,0,0,98.58,12,1010.0 -2015,11,29,20,30,0,100.0,11,1010.0 -2015,11,29,21,0,0,100.0,11,1010.0 -2015,11,29,21,30,0,100.0,11,1010.0 -2015,11,29,22,0,0,100.0,11,1010.0 -2015,11,29,22,30,0,100.0,11,1010.0 -2015,11,29,23,0,0,99.78,11,1010.0 -2015,11,29,23,30,0,99.76,11,1010.0 -2015,11,30,0,0,0,98.45,11,1010.0 -2015,11,30,0,30,0,100.0,11,1010.0 -2015,11,30,1,0,0,100.0,11,1010.0 -2015,11,30,1,30,0,100.0,10,1010.0 -2015,11,30,2,0,0,100.0,10,1010.0 -2015,11,30,2,30,0,100.0,10,1010.0 -2015,11,30,3,0,0,100.0,10,1010.0 -2015,11,30,3,30,0,100.0,10,1010.0 -2015,11,30,4,0,0,100.0,10,1010.0 -2015,11,30,4,30,0,100.0,10,1010.0 -2015,11,30,5,0,0,100.0,10,1010.0 -2015,11,30,5,30,0,100.0,10,1010.0 -2015,11,30,6,0,0,100.0,10,1010.0 -2015,11,30,6,30,0,100.0,10,1010.0 -2015,11,30,7,0,0,100.0,10,1010.0 -2015,11,30,7,30,14,100.0,10,1010.0 -2015,11,30,8,0,21,96.25,11,1010.0 -2015,11,30,8,30,43,90.11,12,1010.0 -2015,11,30,9,0,96,87.34,13,1010.0 -2015,11,30,9,30,169,87.34,13,1010.0 -2015,11,30,10,0,159,85.28,14,1010.0 -2015,11,30,10,30,178,85.26,14,1010.0 -2015,11,30,11,0,254,81.67,15,1010.0 -2015,11,30,11,30,341,81.64,15,1010.0 -2015,11,30,12,0,354,77.77,16,1010.0 -2015,11,30,12,30,380,77.75,16,1010.0 -2015,11,30,13,0,383,78.9,16,1010.0 -2015,11,30,13,30,213,78.89,16,1010.0 -2015,11,30,14,0,228,79.22,16,1010.0 -2015,11,30,14,30,218,84.46000000000001,15,1010.0 -2015,11,30,15,0,162,84.19,15,1010.0 -2015,11,30,15,30,147,84.19,15,1010.0 -2015,11,30,16,0,105,84.21000000000001,15,1010.0 -2015,11,30,16,30,57,89.81,14,1010.0 -2015,11,30,17,0,16,91.03,14,1010.0 -2015,11,30,17,30,0,97.15,13,1010.0 -2015,11,30,18,0,0,95.86,13,1010.0 -2015,11,30,18,30,0,95.87,13,1010.0 -2015,11,30,19,0,0,94.77,13,1010.0 -2015,11,30,19,30,0,94.79,13,1010.0 -2015,11,30,20,0,0,93.59,13,1010.0 -2015,11,30,20,30,0,93.60000000000001,13,1010.0 -2015,11,30,21,0,0,92.75,13,1010.0 -2015,11,30,21,30,0,99.02,12,1010.0 -2015,11,30,22,0,0,98.34,12,1010.0 -2015,11,30,22,30,0,98.33,12,1010.0 -2015,11,30,23,0,0,97.62,12,1010.0 -2015,11,30,23,30,0,97.61,12,1010.0 -2015,12,1,0,0,0,96.63,12,1010.0 -2015,12,1,0,30,0,96.62,12,1010.0 -2015,12,1,1,0,0,95.60000000000001,12,1010.0 -2015,12,1,1,30,0,100.0,11,1010.0 -2015,12,1,2,0,0,100.0,11,1010.0 -2015,12,1,2,30,0,100.0,11,1010.0 -2015,12,1,3,0,0,99.82000000000001,11,1010.0 -2015,12,1,3,30,0,99.82000000000001,11,1010.0 -2015,12,1,4,0,0,98.59,11,1010.0 -2015,12,1,4,30,0,98.60000000000001,11,1010.0 -2015,12,1,5,0,0,97.45,11,1010.0 -2015,12,1,5,30,0,97.46000000000001,11,1010.0 -2015,12,1,6,0,0,96.39,11,1010.0 -2015,12,1,6,30,0,96.39,11,1010.0 -2015,12,1,7,0,0,95.88,11,1010.0 -2015,12,1,7,30,7,95.88,11,1010.0 -2015,12,1,8,0,25,96.06,11,1010.0 -2015,12,1,8,30,29,96.05,11,1010.0 -2015,12,1,9,0,72,97.44,11,1010.0 -2015,12,1,9,30,135,97.43,11,1010.0 -2015,12,1,10,0,195,93.56,12,1010.0 -2015,12,1,10,30,140,93.52,12,1010.0 -2015,12,1,11,0,157,90.28,13,1010.0 -2015,12,1,11,30,320,90.24,13,1010.0 -2015,12,1,12,0,327,86.45,14,1010.0 -2015,12,1,12,30,296,86.42,14,1010.0 -2015,12,1,13,0,312,87.54,14,1010.0 -2015,12,1,13,30,292,87.52,14,1010.0 -2015,12,1,14,0,244,87.94,14,1010.0 -2015,12,1,14,30,146,87.92,14,1010.0 -2015,12,1,15,0,92,88.04,14,1010.0 -2015,12,1,15,30,67,88.03,14,1010.0 -2015,12,1,16,0,140,89.34,14,1010.0 -2015,12,1,16,30,76,95.33,13,1010.0 -2015,12,1,17,0,22,96.52,13,1010.0 -2015,12,1,17,30,0,96.55,13,1010.0 -2015,12,1,18,0,0,95.29,13,1010.0 -2015,12,1,18,30,0,100.0,12,1010.0 -2015,12,1,19,0,0,100.0,12,1010.0 -2015,12,1,19,30,0,100.0,12,1010.0 -2015,12,1,20,0,0,99.91,12,1010.0 -2015,12,1,20,30,0,99.92,12,1010.0 -2015,12,1,21,0,0,98.73,12,1010.0 -2015,12,1,21,30,0,98.74000000000001,12,1010.0 -2015,12,1,22,0,0,97.02,12,1010.0 -2015,12,1,22,30,0,100.0,11,1010.0 -2015,12,1,23,0,0,100.0,11,1010.0 -2015,12,1,23,30,0,100.0,11,1010.0 -2015,12,2,0,0,0,99.09,11,1010.0 -2015,12,2,0,30,0,99.10000000000001,11,1010.0 -2015,12,2,1,0,0,96.74000000000001,11,1010.0 -2015,12,2,1,30,0,100.0,10,1010.0 -2015,12,2,2,0,0,100.0,10,1010.0 -2015,12,2,2,30,0,100.0,10,1010.0 -2015,12,2,3,0,0,98.54,10,1010.0 -2015,12,2,3,30,0,98.55,10,1010.0 -2015,12,2,4,0,0,96.18,10,1010.0 -2015,12,2,4,30,0,100.0,9,1010.0 -2015,12,2,5,0,0,99.92,9,1010.0 -2015,12,2,5,30,0,99.96000000000001,9,1010.0 -2015,12,2,6,0,0,96.56,9,1010.0 -2015,12,2,6,30,0,96.59,9,1010.0 -2015,12,2,7,0,0,94.24,9,1010.0 -2015,12,2,7,30,14,94.27,9,1010.0 -2015,12,2,8,0,23,94.23,9,1010.0 -2015,12,2,8,30,42,94.27,9,1010.0 -2015,12,2,9,0,168,89.23,10,1010.0 -2015,12,2,9,30,181,83.5,11,1010.0 -2015,12,2,10,0,395,77.10000000000001,12,1020.0 -2015,12,2,10,30,412,72.2,13,1010.0 -2015,12,2,11,0,462,66.12,14,1010.0 -2015,12,2,11,30,533,66.1,14,1010.0 -2015,12,2,12,0,531,61.910000000000004,15,1010.0 -2015,12,2,12,30,434,61.89,15,1010.0 -2015,12,2,13,0,384,62.690000000000005,15,1010.0 -2015,12,2,13,30,456,62.67,15,1010.0 -2015,12,2,14,0,375,59.300000000000004,16,1010.0 -2015,12,2,14,30,360,59.300000000000004,16,1010.0 -2015,12,2,15,0,286,60.92,16,1010.0 -2015,12,2,15,30,193,64.95,15,1010.0 -2015,12,2,16,0,31,76.47,14,1010.0 -2015,12,2,16,30,18,81.62,13,1010.0 -2015,12,2,17,0,5,81.55,12,1010.0 -2015,12,2,17,30,0,87.14,11,1010.0 -2015,12,2,18,0,0,82.71000000000001,11,1010.0 -2015,12,2,18,30,0,88.42,10,1020.0 -2015,12,2,19,0,0,85.62,10,1020.0 -2015,12,2,19,30,0,91.58,9,1020.0 -2015,12,2,20,0,0,89.10000000000001,9,1020.0 -2015,12,2,20,30,0,89.11,9,1020.0 -2015,12,2,21,0,0,87.15,9,1020.0 -2015,12,2,21,30,0,93.26,8,1020.0 -2015,12,2,22,0,0,91.89,8,1020.0 -2015,12,2,22,30,0,98.38,8,1020.0 -2015,12,2,23,0,0,97.4,8,1020.0 -2015,12,2,23,30,0,97.41,7,1020.0 -2015,12,3,0,0,0,96.54,7,1020.0 -2015,12,3,0,30,0,100.0,6,1020.0 -2015,12,3,1,0,0,100.0,6,1020.0 -2015,12,3,1,30,0,100.0,6,1020.0 -2015,12,3,2,0,0,100.0,6,1020.0 -2015,12,3,2,30,0,100.0,6,1020.0 -2015,12,3,3,0,0,100.0,6,1020.0 -2015,12,3,3,30,0,100.0,5,1020.0 -2015,12,3,4,0,0,100.0,5,1020.0 -2015,12,3,4,30,0,100.0,5,1020.0 -2015,12,3,5,0,0,100.0,5,1020.0 -2015,12,3,5,30,0,100.0,4,1020.0 -2015,12,3,6,0,0,100.0,4,1020.0 -2015,12,3,6,30,0,100.0,4,1020.0 -2015,12,3,7,0,0,98.5,5,1020.0 -2015,12,3,7,30,62,91.94,6,1020.0 -2015,12,3,8,0,157,86.72,7,1020.0 -2015,12,3,8,30,256,81.03,8,1020.0 -2015,12,3,9,0,352,67.77,10,1020.0 -2015,12,3,9,30,439,63.410000000000004,11,1020.0 -2015,12,3,10,0,515,59.43,12,1020.0 -2015,12,3,10,30,578,59.42,13,1020.0 -2015,12,3,11,0,625,57.7,14,1020.0 -2015,12,3,11,30,657,54.050000000000004,14,1020.0 -2015,12,3,12,0,671,52.67,15,1020.0 -2015,12,3,12,30,669,52.65,15,1020.0 -2015,12,3,13,0,649,54.13,15,1020.0 -2015,12,3,13,30,613,54.120000000000005,15,1020.0 -2015,12,3,14,0,561,51.71,16,1020.0 -2015,12,3,14,30,495,55.13,15,1020.0 -2015,12,3,15,0,415,56.050000000000004,15,1020.0 -2015,12,3,15,30,326,59.79,14,1020.0 -2015,12,3,16,0,229,68.06,14,1020.0 -2015,12,3,16,30,130,77.54,12,1020.0 -2015,12,3,17,0,41,80.53,11,1020.0 -2015,12,3,17,30,0,86.09,10,1020.0 -2015,12,3,18,0,0,87.04,9,1020.0 -2015,12,3,18,30,0,87.06,9,1020.0 -2015,12,3,19,0,0,85.63,9,1020.0 -2015,12,3,19,30,0,91.63,8,1020.0 -2015,12,3,20,0,0,90.22,8,1020.0 -2015,12,3,20,30,0,96.59,8,1020.0 -2015,12,3,21,0,0,95.52,8,1020.0 -2015,12,3,21,30,0,95.53,7,1020.0 -2015,12,3,22,0,0,94.93,7,1020.0 -2015,12,3,22,30,0,100.0,6,1020.0 -2015,12,3,23,0,0,100.0,6,1020.0 -2015,12,3,23,30,0,100.0,6,1020.0 -2015,12,4,0,0,0,100.0,6,1020.0 -2015,12,4,0,30,0,100.0,5,1020.0 -2015,12,4,1,0,0,100.0,5,1020.0 -2015,12,4,1,30,0,100.0,5,1020.0 -2015,12,4,2,0,0,100.0,5,1020.0 -2015,12,4,2,30,0,100.0,5,1020.0 -2015,12,4,3,0,0,100.0,5,1020.0 -2015,12,4,3,30,0,100.0,4,1020.0 -2015,12,4,4,0,0,100.0,4,1020.0 -2015,12,4,4,30,0,100.0,4,1020.0 -2015,12,4,5,0,0,100.0,4,1020.0 -2015,12,4,5,30,0,100.0,4,1020.0 -2015,12,4,6,0,0,100.0,4,1020.0 -2015,12,4,6,30,0,100.0,4,1020.0 -2015,12,4,7,0,0,100.0,5,1020.0 -2015,12,4,7,30,58,94.53,6,1020.0 -2015,12,4,8,0,152,88.59,7,1030.0 -2015,12,4,8,30,251,82.77,8,1030.0 -2015,12,4,9,0,348,74.13,10,1030.0 -2015,12,4,9,30,435,69.32000000000001,11,1030.0 -2015,12,4,10,0,512,63.58,12,1030.0 -2015,12,4,10,30,576,59.5,12,1030.0 -2015,12,4,11,0,624,56.77,13,1030.0 -2015,12,4,11,30,656,56.730000000000004,13,1020.0 -2015,12,4,12,0,672,53.85,14,1020.0 -2015,12,4,12,30,669,53.82,14,1020.0 -2015,12,4,13,0,650,51.4,15,1020.0 -2015,12,4,13,30,614,51.39,15,1020.0 -2015,12,4,14,0,562,51.6,15,1020.0 -2015,12,4,14,30,496,51.59,15,1020.0 -2015,12,4,15,0,416,52.32,15,1020.0 -2015,12,4,15,30,326,55.800000000000004,14,1020.0 -2015,12,4,16,0,230,69.33,14,1020.0 -2015,12,4,16,30,131,79.07000000000001,12,1020.0 -2015,12,4,17,0,41,80.33,10,1020.0 -2015,12,4,17,30,0,85.91,9,1020.0 -2015,12,4,18,0,0,81.27,9,1020.0 -2015,12,4,18,30,0,86.96000000000001,8,1020.0 -2015,12,4,19,0,0,86.09,8,1020.0 -2015,12,4,19,30,0,92.16,7,1020.0 -2015,12,4,20,0,0,91.38,7,1020.0 -2015,12,4,20,30,0,91.39,7,1020.0 -2015,12,4,21,0,0,91.02,7,1020.0 -2015,12,4,21,30,0,97.5,6,1020.0 -2015,12,4,22,0,0,98.01,6,1020.0 -2015,12,4,22,30,0,98.01,6,1020.0 -2015,12,4,23,0,0,98.72,6,1020.0 -2015,12,4,23,30,0,100.0,5,1020.0 -2015,12,5,0,0,0,100.0,5,1020.0 -2015,12,5,0,30,0,100.0,5,1020.0 -2015,12,5,1,0,0,100.0,5,1020.0 -2015,12,5,1,30,0,100.0,4,1020.0 -2015,12,5,2,0,0,100.0,4,1020.0 -2015,12,5,2,30,0,100.0,4,1020.0 -2015,12,5,3,0,0,100.0,4,1020.0 -2015,12,5,3,30,0,100.0,4,1020.0 -2015,12,5,4,0,0,100.0,4,1020.0 -2015,12,5,4,30,0,100.0,3,1020.0 -2015,12,5,5,0,0,100.0,3,1020.0 -2015,12,5,5,30,0,100.0,3,1020.0 -2015,12,5,6,0,0,100.0,3,1020.0 -2015,12,5,6,30,0,100.0,3,1020.0 -2015,12,5,7,0,0,100.0,4,1020.0 -2015,12,5,7,30,56,100.0,5,1020.0 -2015,12,5,8,0,150,91.61,7,1020.0 -2015,12,5,8,30,249,85.60000000000001,8,1030.0 -2015,12,5,9,0,346,79.16,10,1030.0 -2015,12,5,9,30,331,74.07000000000001,11,1030.0 -2015,12,5,10,0,383,67.84,13,1030.0 -2015,12,5,10,30,452,63.56,14,1030.0 -2015,12,5,11,0,623,59.77,15,1020.0 -2015,12,5,11,30,655,59.730000000000004,15,1020.0 -2015,12,5,12,0,668,56.83,16,1020.0 -2015,12,5,12,30,666,56.800000000000004,16,1020.0 -2015,12,5,13,0,647,53.33,17,1020.0 -2015,12,5,13,30,482,53.31,17,1020.0 -2015,12,5,14,0,446,53.33,18,1020.0 -2015,12,5,14,30,368,53.32,17,1020.0 -2015,12,5,15,0,414,53.97,17,1020.0 -2015,12,5,15,30,277,57.5,16,1020.0 -2015,12,5,16,0,194,65.37,16,1020.0 -2015,12,5,16,30,110,69.69,15,1020.0 -2015,12,5,17,0,34,63.78,14,1020.0 -2015,12,5,17,30,0,68.07000000000001,13,1020.0 -2015,12,5,18,0,0,64.33,13,1020.0 -2015,12,5,18,30,0,68.69,12,1020.0 -2015,12,5,19,0,0,73.04,11,1020.0 -2015,12,5,19,30,0,78.06,10,1020.0 -2015,12,5,20,0,0,78.73,10,1020.0 -2015,12,5,20,30,0,84.18,9,1020.0 -2015,12,5,21,0,0,85.97,9,1020.0 -2015,12,5,21,30,0,91.97,8,1020.0 -2015,12,5,22,0,0,94.96000000000001,8,1020.0 -2015,12,5,22,30,0,94.96000000000001,8,1020.0 -2015,12,5,23,0,0,98.33,8,1020.0 -2015,12,5,23,30,0,98.34,9,1020.0 -2015,12,6,0,0,0,94.77,10,1020.0 -2015,12,6,0,30,0,94.78,10,1020.0 -2015,12,6,1,0,0,89.97,10,1020.0 -2015,12,6,1,30,0,96.21000000000001,9,1020.0 -2015,12,6,2,0,0,96.75,9,1020.0 -2015,12,6,2,30,0,100.0,8,1020.0 -2015,12,6,3,0,0,100.0,8,1020.0 -2015,12,6,3,30,0,100.0,7,1020.0 -2015,12,6,4,0,0,100.0,7,1020.0 -2015,12,6,4,30,0,100.0,7,1020.0 -2015,12,6,5,0,0,100.0,7,1020.0 -2015,12,6,5,30,0,100.0,7,1020.0 -2015,12,6,6,0,0,100.0,7,1020.0 -2015,12,6,6,30,0,100.0,7,1020.0 -2015,12,6,7,0,0,100.0,7,1020.0 -2015,12,6,7,30,51,100.0,8,1020.0 -2015,12,6,8,0,138,92.79,10,1020.0 -2015,12,6,8,30,233,86.82000000000001,11,1020.0 -2015,12,6,9,0,326,85.0,12,1020.0 -2015,12,6,9,30,410,74.61,14,1020.0 -2015,12,6,10,0,484,66.99,16,1020.0 -2015,12,6,10,30,546,62.85,17,1020.0 -2015,12,6,11,0,592,56.800000000000004,18,1020.0 -2015,12,6,11,30,623,56.77,18,1020.0 -2015,12,6,12,0,637,55.94,19,1020.0 -2015,12,6,12,30,635,55.910000000000004,19,1020.0 -2015,12,6,13,0,615,55.18,20,1020.0 -2015,12,6,13,30,580,55.15,20,1020.0 -2015,12,6,14,0,529,57.45,20,1020.0 -2015,12,6,14,30,465,61.11,19,1020.0 -2015,12,6,15,0,388,63.300000000000004,19,1020.0 -2015,12,6,15,30,303,67.37,18,1020.0 -2015,12,6,16,0,210,76.86,18,1020.0 -2015,12,6,16,30,117,87.21000000000001,16,1020.0 -2015,12,6,17,0,35,82.04,15,1020.0 -2015,12,6,17,30,0,87.51,14,1020.0 -2015,12,6,18,0,0,82.74,14,1020.0 -2015,12,6,18,30,0,88.29,13,1020.0 -2015,12,6,19,0,0,86.46000000000001,13,1020.0 -2015,12,6,19,30,0,92.31,12,1020.0 -2015,12,6,20,0,0,90.7,12,1020.0 -2015,12,6,20,30,0,90.69,12,1020.0 -2015,12,6,21,0,0,89.91,12,1020.0 -2015,12,6,21,30,0,96.04,11,1020.0 -2015,12,6,22,0,0,95.94,11,1020.0 -2015,12,6,22,30,0,100.0,10,1020.0 -2015,12,6,23,0,0,100.0,10,1020.0 -2015,12,6,23,30,0,100.0,10,1020.0 -2015,12,7,0,0,0,100.0,10,1020.0 -2015,12,7,0,30,0,100.0,9,1020.0 -2015,12,7,1,0,0,100.0,9,1020.0 -2015,12,7,1,30,0,100.0,8,1020.0 -2015,12,7,2,0,0,100.0,8,1020.0 -2015,12,7,2,30,0,100.0,8,1020.0 -2015,12,7,3,0,0,100.0,8,1020.0 -2015,12,7,3,30,0,100.0,8,1020.0 -2015,12,7,4,0,0,100.0,8,1020.0 -2015,12,7,4,30,0,100.0,7,1020.0 -2015,12,7,5,0,0,100.0,7,1020.0 -2015,12,7,5,30,0,100.0,7,1020.0 -2015,12,7,6,0,0,100.0,7,1020.0 -2015,12,7,6,30,0,100.0,7,1020.0 -2015,12,7,7,0,0,100.0,8,1020.0 -2015,12,7,7,30,46,100.0,9,1020.0 -2015,12,7,8,0,132,92.33,11,1020.0 -2015,12,7,8,30,225,86.43,12,1020.0 -2015,12,7,9,0,320,85.63,13,1020.0 -2015,12,7,9,30,405,80.23,15,1020.0 -2015,12,7,10,0,481,76.08,17,1020.0 -2015,12,7,10,30,544,71.37,18,1020.0 -2015,12,7,11,0,592,64.21000000000001,19,1020.0 -2015,12,7,11,30,624,64.17,19,1020.0 -2015,12,7,12,0,641,64.36,19,1020.0 -2015,12,7,12,30,639,64.33,19,1020.0 -2015,12,7,13,0,620,60.370000000000005,20,1020.0 -2015,12,7,13,30,586,60.35,20,1020.0 -2015,12,7,14,0,535,60.28,20,1020.0 -2015,12,7,14,30,471,60.26,20,1020.0 -2015,12,7,15,0,395,60.35,20,1020.0 -2015,12,7,15,30,308,64.19,19,1020.0 -2015,12,7,16,0,215,66.32000000000001,19,1020.0 -2015,12,7,16,30,120,70.58,18,1010.0 -2015,12,7,17,0,37,67.79,17,1010.0 -2015,12,7,17,30,0,72.22,16,1010.0 -2015,12,7,18,0,0,70.29,16,1020.0 -2015,12,7,18,30,0,74.93,15,1020.0 -2015,12,7,19,0,0,74.73,15,1020.0 -2015,12,7,19,30,0,79.7,14,1020.0 -2015,12,7,20,0,0,85.42,13,1020.0 -2015,12,7,20,30,0,91.19,12,1020.0 -2015,12,7,21,0,0,92.19,12,1020.0 -2015,12,7,21,30,0,98.46000000000001,11,1020.0 -2015,12,7,22,0,0,99.8,11,1020.0 -2015,12,7,22,30,0,100.0,10,1010.0 -2015,12,7,23,0,0,100.0,10,1010.0 -2015,12,7,23,30,0,100.0,10,1010.0 -2015,12,8,0,0,0,100.0,10,1010.0 -2015,12,8,0,30,0,100.0,10,1010.0 -2015,12,8,1,0,0,100.0,10,1010.0 -2015,12,8,1,30,0,100.0,9,1010.0 -2015,12,8,2,0,0,100.0,9,1010.0 -2015,12,8,2,30,0,100.0,9,1010.0 -2015,12,8,3,0,0,100.0,9,1010.0 -2015,12,8,3,30,0,100.0,9,1010.0 -2015,12,8,4,0,0,100.0,9,1010.0 -2015,12,8,4,30,0,100.0,9,1010.0 -2015,12,8,5,0,0,100.0,10,1010.0 -2015,12,8,5,30,0,100.0,10,1010.0 -2015,12,8,6,0,0,100.0,10,1010.0 -2015,12,8,6,30,0,100.0,10,1010.0 -2015,12,8,7,0,0,100.0,10,1010.0 -2015,12,8,7,30,45,100.0,11,1010.0 -2015,12,8,8,0,130,97.62,12,1010.0 -2015,12,8,8,30,224,91.42,13,1010.0 -2015,12,8,9,0,318,89.98,14,1010.0 -2015,12,8,9,30,403,79.13,16,1010.0 -2015,12,8,10,0,479,72.39,18,1010.0 -2015,12,8,10,30,541,72.37,18,1010.0 -2015,12,8,11,0,589,69.22,19,1010.0 -2015,12,8,11,30,371,69.17,19,1010.0 -2015,12,8,12,0,636,65.96000000000001,20,1010.0 -2015,12,8,12,30,635,65.92,20,1010.0 -2015,12,8,13,0,617,62.660000000000004,21,1010.0 -2015,12,8,13,30,583,62.63,21,1010.0 -2015,12,8,14,0,533,62.97,21,1010.0 -2015,12,8,14,30,469,66.94,20,1010.0 -2015,12,8,15,0,394,68.16,20,1010.0 -2015,12,8,15,30,307,72.51,19,1010.0 -2015,12,8,16,0,215,78.78,19,1010.0 -2015,12,8,16,30,120,89.31,17,1010.0 -2015,12,8,17,0,37,95.19,15,1010.0 -2015,12,8,17,30,0,100.0,14,1010.0 -2015,12,8,18,0,0,100.0,14,1010.0 -2015,12,8,18,30,0,100.0,14,1010.0 -2015,12,8,19,0,0,100.0,14,1010.0 -2015,12,8,19,30,0,100.0,13,1010.0 -2015,12,8,20,0,0,100.0,13,1010.0 -2015,12,8,20,30,0,100.0,13,1010.0 -2015,12,8,21,0,0,100.0,13,1010.0 -2015,12,8,21,30,0,100.0,12,1010.0 -2015,12,8,22,0,0,100.0,12,1010.0 -2015,12,8,22,30,0,100.0,12,1010.0 -2015,12,8,23,0,0,100.0,12,1010.0 -2015,12,8,23,30,0,100.0,12,1010.0 -2015,12,9,0,0,0,100.0,12,1010.0 -2015,12,9,0,30,0,100.0,12,1010.0 -2015,12,9,1,0,0,100.0,12,1010.0 -2015,12,9,1,30,0,100.0,12,1010.0 -2015,12,9,2,0,0,100.0,12,1010.0 -2015,12,9,2,30,0,100.0,11,1010.0 -2015,12,9,3,0,0,100.0,11,1010.0 -2015,12,9,3,30,0,100.0,11,1010.0 -2015,12,9,4,0,0,100.0,11,1010.0 -2015,12,9,4,30,0,100.0,11,1010.0 -2015,12,9,5,0,0,100.0,11,1010.0 -2015,12,9,5,30,0,100.0,11,1010.0 -2015,12,9,6,0,0,100.0,11,1010.0 -2015,12,9,6,30,0,100.0,11,1010.0 -2015,12,9,7,0,0,100.0,11,1010.0 -2015,12,9,7,30,42,100.0,12,1010.0 -2015,12,9,8,0,79,98.62,14,1010.0 -2015,12,9,8,30,218,92.47,15,1010.0 -2015,12,9,9,0,310,92.05,16,1010.0 -2015,12,9,9,30,395,86.38,17,1010.0 -2015,12,9,10,0,470,81.77,19,1010.0 -2015,12,9,10,30,532,76.82000000000001,20,1010.0 -2015,12,9,11,0,581,74.4,21,1010.0 -2015,12,9,11,30,612,74.35000000000001,21,1010.0 -2015,12,9,12,0,632,70.43,22,1010.0 -2015,12,9,12,30,631,70.4,22,1010.0 -2015,12,9,13,0,612,70.22,22,1010.0 -2015,12,9,13,30,579,70.19,22,1010.0 -2015,12,9,14,0,529,70.01,23,1010.0 -2015,12,9,14,30,466,70.0,22,1010.0 -2015,12,9,15,0,391,70.58,22,1010.0 -2015,12,9,15,30,305,75.02,21,1010.0 -2015,12,9,16,0,213,82.60000000000001,21,1010.0 -2015,12,9,16,30,120,93.45,19,1010.0 -2015,12,9,17,0,37,85.48,18,1010.0 -2015,12,9,17,30,0,91.05,17,1010.0 -2015,12,9,18,0,0,86.51,17,1010.0 -2015,12,9,18,30,0,92.18,16,1010.0 -2015,12,9,19,0,0,91.58,16,1010.0 -2015,12,9,19,30,0,97.62,15,1010.0 -2015,12,9,20,0,0,98.79,15,1010.0 -2015,12,9,20,30,0,98.79,15,1010.0 -2015,12,9,21,0,0,100.0,15,1010.0 -2015,12,9,21,30,0,100.0,14,1010.0 -2015,12,9,22,0,0,100.0,14,1010.0 -2015,12,9,22,30,0,100.0,14,1010.0 -2015,12,9,23,0,0,100.0,14,1010.0 -2015,12,9,23,30,0,100.0,14,1010.0 -2015,12,10,0,0,0,100.0,14,1010.0 -2015,12,10,0,30,0,100.0,13,1010.0 -2015,12,10,1,0,0,100.0,13,1010.0 -2015,12,10,1,30,0,100.0,13,1010.0 -2015,12,10,2,0,0,100.0,13,1010.0 -2015,12,10,2,30,0,100.0,13,1010.0 -2015,12,10,3,0,0,100.0,13,1010.0 -2015,12,10,3,30,0,100.0,13,1010.0 -2015,12,10,4,0,0,100.0,13,1010.0 -2015,12,10,4,30,0,100.0,13,1010.0 -2015,12,10,5,0,0,100.0,13,1010.0 -2015,12,10,5,30,0,100.0,13,1010.0 -2015,12,10,6,0,0,100.0,14,1010.0 -2015,12,10,6,30,0,100.0,14,1010.0 -2015,12,10,7,0,0,100.0,15,1010.0 -2015,12,10,7,30,32,100.0,16,1010.0 -2015,12,10,8,0,97,100.0,18,1010.0 -2015,12,10,8,30,160,96.75,19,1010.0 -2015,12,10,9,0,254,96.61,20,1010.0 -2015,12,10,9,30,233,90.85000000000001,21,1010.0 -2015,12,10,10,0,263,86.75,22,1010.0 -2015,12,10,10,30,285,86.71000000000001,22,1010.0 -2015,12,10,11,0,372,81.64,23,1010.0 -2015,12,10,11,30,364,81.58,23,1010.0 -2015,12,10,12,0,438,76.91,24,1010.0 -2015,12,10,12,30,436,76.86,24,1010.0 -2015,12,10,13,0,452,76.79,25,1000.0 -2015,12,10,13,30,424,76.75,24,1000.0 -2015,12,10,14,0,443,76.54,24,1000.0 -2015,12,10,14,30,408,76.51,24,1000.0 -2015,12,10,15,0,328,76.59,24,1000.0 -2015,12,10,15,30,223,81.34,23,1000.0 -2015,12,10,16,0,205,87.3,22,1000.0 -2015,12,10,16,30,114,92.8,21,1000.0 -2015,12,10,17,0,35,97.76,20,1000.0 -2015,12,10,17,30,0,100.0,19,1000.0 -2015,12,10,18,0,0,100.0,19,1000.0 -2015,12,10,18,30,0,100.0,19,1000.0 -2015,12,10,19,0,0,100.0,19,1000.0 -2015,12,10,19,30,0,100.0,19,1000.0 -2015,12,10,20,0,0,100.0,19,1000.0 -2015,12,10,20,30,0,100.0,19,1000.0 -2015,12,10,21,0,0,100.0,19,1000.0 -2015,12,10,21,30,0,100.0,19,1000.0 -2015,12,10,22,0,0,100.0,19,1000.0 -2015,12,10,22,30,0,100.0,18,1000.0 -2015,12,10,23,0,0,100.0,18,1000.0 -2015,12,10,23,30,0,100.0,18,1000.0 -2015,12,11,0,0,0,100.0,18,1000.0 -2015,12,11,0,30,0,100.0,18,1000.0 -2015,12,11,1,0,0,100.0,18,1000.0 -2015,12,11,1,30,0,100.0,18,1000.0 -2015,12,11,2,0,0,100.0,18,1000.0 -2015,12,11,2,30,0,100.0,18,1000.0 -2015,12,11,3,0,0,100.0,19,1000.0 -2015,12,11,3,30,0,100.0,19,1000.0 -2015,12,11,4,0,0,100.0,19,1000.0 -2015,12,11,4,30,0,100.0,19,1000.0 -2015,12,11,5,0,0,100.0,19,1000.0 -2015,12,11,5,30,0,100.0,19,1000.0 -2015,12,11,6,0,0,100.0,19,1010.0 -2015,12,11,6,30,0,100.0,19,1010.0 -2015,12,11,7,0,0,100.0,19,1010.0 -2015,12,11,7,30,35,100.0,20,1010.0 -2015,12,11,8,0,115,99.16,21,1010.0 -2015,12,11,8,30,206,99.18,21,1010.0 -2015,12,11,9,0,297,96.73,22,1010.0 -2015,12,11,9,30,381,91.06,23,1010.0 -2015,12,11,10,0,456,84.16,24,1010.0 -2015,12,11,10,30,518,84.15,24,1010.0 -2015,12,11,11,0,567,77.33,25,1010.0 -2015,12,11,11,30,599,77.3,25,1010.0 -2015,12,11,12,0,618,76.45,25,1010.0 -2015,12,11,12,30,618,76.42,25,1010.0 -2015,12,11,13,0,601,75.61,25,1000.0 -2015,12,11,13,30,568,75.59,25,1000.0 -2015,12,11,14,0,373,74.81,25,1000.0 -2015,12,11,14,30,365,79.4,24,1000.0 -2015,12,11,15,0,280,79.64,24,1000.0 -2015,12,11,15,30,200,84.58,23,1000.0 -2015,12,11,16,0,143,85.89,23,1000.0 -2015,12,11,16,30,79,91.26,22,1000.0 -2015,12,11,17,0,33,97.02,21,1010.0 -2015,12,11,17,30,0,97.03,21,1010.0 -2015,12,11,18,0,0,97.23,21,1010.0 -2015,12,11,18,30,0,100.0,20,1010.0 -2015,12,11,19,0,0,100.0,20,1010.0 -2015,12,11,19,30,0,100.0,20,1010.0 -2015,12,11,20,0,0,100.0,20,1010.0 -2015,12,11,20,30,0,100.0,20,1010.0 -2015,12,11,21,0,0,100.0,20,1010.0 -2015,12,11,21,30,0,100.0,20,1010.0 -2015,12,11,22,0,0,100.0,20,1010.0 -2015,12,11,22,30,0,100.0,20,1010.0 -2015,12,11,23,0,0,100.0,20,1010.0 -2015,12,11,23,30,0,100.0,20,1010.0 -2015,12,12,0,0,0,100.0,20,1010.0 -2015,12,12,0,30,0,100.0,20,1010.0 -2015,12,12,1,0,0,100.0,20,1010.0 -2015,12,12,1,30,0,100.0,20,1010.0 -2015,12,12,2,0,0,100.0,20,1010.0 -2015,12,12,2,30,0,100.0,20,1010.0 -2015,12,12,3,0,0,100.0,20,1010.0 -2015,12,12,3,30,0,100.0,20,1010.0 -2015,12,12,4,0,0,100.0,20,1010.0 -2015,12,12,4,30,0,100.0,20,1010.0 -2015,12,12,5,0,0,100.0,20,1010.0 -2015,12,12,5,30,0,100.0,20,1010.0 -2015,12,12,6,0,0,99.88,21,1010.0 -2015,12,12,6,30,0,99.89,21,1010.0 -2015,12,12,7,0,0,100.0,21,1010.0 -2015,12,12,7,30,13,100.0,21,1010.0 -2015,12,12,8,0,45,100.0,21,1010.0 -2015,12,12,8,30,52,100.0,21,1010.0 -2015,12,12,9,0,103,97.76,22,1010.0 -2015,12,12,9,30,112,97.77,22,1010.0 -2015,12,12,10,0,172,99.47,22,1010.0 -2015,12,12,10,30,128,99.45,22,1010.0 -2015,12,12,11,0,134,94.54,23,1010.0 -2015,12,12,11,30,233,94.51,23,1010.0 -2015,12,12,12,0,391,94.82000000000001,23,1010.0 -2015,12,12,12,30,283,94.77,23,1010.0 -2015,12,12,13,0,217,95.09,23,1000.0 -2015,12,12,13,30,271,95.05,23,1000.0 -2015,12,12,14,0,104,95.10000000000001,23,1000.0 -2015,12,12,14,30,207,100.0,22,1000.0 -2015,12,12,15,0,135,100.0,22,1000.0 -2015,12,12,15,30,125,100.0,22,1000.0 -2015,12,12,16,0,67,100.0,22,1000.0 -2015,12,12,16,30,36,100.0,22,1000.0 -2015,12,12,17,0,9,99.2,22,1000.0 -2015,12,12,17,30,0,99.21000000000001,22,1000.0 -2015,12,12,18,0,0,98.8,22,1000.0 -2015,12,12,18,30,0,98.81,22,1000.0 -2015,12,12,19,0,0,98.7,22,1000.0 -2015,12,12,19,30,0,98.68,22,1000.0 -2015,12,12,20,0,0,98.5,22,1000.0 -2015,12,12,20,30,0,100.0,21,1000.0 -2015,12,12,21,0,0,100.0,21,1000.0 -2015,12,12,21,30,0,100.0,21,1000.0 -2015,12,12,22,0,0,100.0,21,1000.0 -2015,12,12,22,30,0,100.0,21,1000.0 -2015,12,12,23,0,0,100.0,21,1000.0 -2015,12,12,23,30,0,100.0,21,1000.0 -2015,12,13,0,0,0,100.0,21,1000.0 -2015,12,13,0,30,0,100.0,21,1000.0 -2015,12,13,1,0,0,100.0,21,1000.0 -2015,12,13,1,30,0,100.0,21,1000.0 -2015,12,13,2,0,0,100.0,21,1000.0 -2015,12,13,2,30,0,100.0,21,1000.0 -2015,12,13,3,0,0,98.73,22,1000.0 -2015,12,13,3,30,0,98.69,22,1000.0 -2015,12,13,4,0,0,99.39,22,1000.0 -2015,12,13,4,30,0,99.36,22,1000.0 -2015,12,13,5,0,0,100.0,22,1000.0 -2015,12,13,5,30,0,100.0,22,1000.0 -2015,12,13,6,0,0,100.0,22,1000.0 -2015,12,13,6,30,0,100.0,22,1000.0 -2015,12,13,7,0,0,100.0,22,1000.0 -2015,12,13,7,30,4,100.0,21,1000.0 -2015,12,13,8,0,17,100.0,21,1000.0 -2015,12,13,8,30,45,100.0,19,1000.0 -2015,12,13,9,0,15,100.0,18,1000.0 -2015,12,13,9,30,79,100.0,16,1000.0 -2015,12,13,10,0,37,98.01,14,1000.0 -2015,12,13,10,30,49,100.0,13,1000.0 -2015,12,13,11,0,133,92.92,12,1000.0 -2015,12,13,11,30,26,92.9,12,1000.0 -2015,12,13,12,0,63,88.49,12,1000.0 -2015,12,13,12,30,60,88.46000000000001,12,1000.0 -2015,12,13,13,0,28,86.9,12,1000.0 -2015,12,13,13,30,25,86.87,12,1000.0 -2015,12,13,14,0,95,86.01,12,1000.0 -2015,12,13,14,30,24,85.99,12,1000.0 -2015,12,13,15,0,22,86.25,12,1000.0 -2015,12,13,15,30,10,86.24,12,1000.0 -2015,12,13,16,0,7,87.62,12,1000.0 -2015,12,13,16,30,4,87.62,12,1000.0 -2015,12,13,17,0,1,88.79,12,1000.0 -2015,12,13,17,30,0,94.86,11,1000.0 -2015,12,13,18,0,0,93.97,11,1000.0 -2015,12,13,18,30,0,100.0,10,1000.0 -2015,12,13,19,0,0,98.56,10,1000.0 -2015,12,13,19,30,0,98.57000000000001,10,1000.0 -2015,12,13,20,0,0,96.68,10,1000.0 -2015,12,13,20,30,0,100.0,9,1000.0 -2015,12,13,21,0,0,100.0,9,1000.0 -2015,12,13,21,30,0,100.0,9,1000.0 -2015,12,13,22,0,0,100.0,9,1000.0 -2015,12,13,22,30,0,100.0,9,1000.0 -2015,12,13,23,0,0,99.39,9,1000.0 -2015,12,13,23,30,0,99.37,9,1000.0 -2015,12,14,0,0,0,98.67,9,1000.0 -2015,12,14,0,30,0,98.65,9,1000.0 -2015,12,14,1,0,0,98.15,9,1000.0 -2015,12,14,1,30,0,100.0,8,1000.0 -2015,12,14,2,0,0,100.0,8,1000.0 -2015,12,14,2,30,0,100.0,8,1000.0 -2015,12,14,3,0,0,100.0,8,1000.0 -2015,12,14,3,30,0,100.0,8,1000.0 -2015,12,14,4,0,0,100.0,8,1000.0 -2015,12,14,4,30,0,100.0,8,1000.0 -2015,12,14,5,0,0,100.0,8,1000.0 -2015,12,14,5,30,0,100.0,8,1000.0 -2015,12,14,6,0,0,100.0,8,1000.0 -2015,12,14,6,30,0,100.0,8,1000.0 -2015,12,14,7,0,0,100.0,8,1000.0 -2015,12,14,7,30,39,94.81,9,1000.0 -2015,12,14,8,0,128,91.99,10,1000.0 -2015,12,14,8,30,227,86.08,11,1000.0 -2015,12,14,9,0,324,85.52,12,1000.0 -2015,12,14,9,30,413,75.07000000000001,14,1000.0 -2015,12,14,10,0,492,68.16,16,1000.0 -2015,12,14,10,30,558,63.96,17,1000.0 -2015,12,14,11,0,609,57.19,18,1000.0 -2015,12,14,11,30,644,53.71,19,1000.0 -2015,12,14,12,0,662,47.86,20,1000.0 -2015,12,14,12,30,662,47.84,20,1000.0 -2015,12,14,13,0,645,43.92,21,1000.0 -2015,12,14,13,30,611,43.910000000000004,21,1000.0 -2015,12,14,14,0,561,45.18,21,1000.0 -2015,12,14,14,30,496,48.04,20,1000.0 -2015,12,14,15,0,417,53.57,20,1000.0 -2015,12,14,15,30,329,56.99,19,1000.0 -2015,12,14,16,0,233,72.71000000000001,18,1000.0 -2015,12,14,16,30,134,82.51,16,1000.0 -2015,12,14,17,0,44,83.55,15,1000.0 -2015,12,14,17,30,0,89.18,14,1000.0 -2015,12,14,18,0,0,88.09,13,1000.0 -2015,12,14,18,30,0,88.11,13,1000.0 -2015,12,14,19,0,0,91.49,13,1000.0 -2015,12,14,19,30,0,91.5,13,1000.0 -2015,12,14,20,0,0,95.74000000000001,13,1000.0 -2015,12,14,20,30,0,100.0,12,1000.0 -2015,12,14,21,0,0,100.0,12,1000.0 -2015,12,14,21,30,0,100.0,12,1000.0 -2015,12,14,22,0,0,100.0,12,1000.0 -2015,12,14,22,30,0,100.0,12,1000.0 -2015,12,14,23,0,0,100.0,12,1000.0 -2015,12,14,23,30,0,100.0,12,1000.0 -2015,12,15,0,0,0,100.0,12,1000.0 -2015,12,15,0,30,0,100.0,12,1000.0 -2015,12,15,1,0,0,100.0,12,1000.0 -2015,12,15,1,30,0,100.0,12,1000.0 -2015,12,15,2,0,0,100.0,12,1000.0 -2015,12,15,2,30,0,100.0,12,1000.0 -2015,12,15,3,0,0,100.0,12,1000.0 -2015,12,15,3,30,0,100.0,12,1000.0 -2015,12,15,4,0,0,100.0,12,1000.0 -2015,12,15,4,30,0,100.0,12,1000.0 -2015,12,15,5,0,0,100.0,12,1000.0 -2015,12,15,5,30,0,100.0,12,1000.0 -2015,12,15,6,0,0,100.0,12,1000.0 -2015,12,15,6,30,0,100.0,12,1000.0 -2015,12,15,7,0,0,100.0,13,1000.0 -2015,12,15,7,30,36,94.98,15,1000.0 -2015,12,15,8,0,120,95.11,17,1000.0 -2015,12,15,8,30,215,89.32000000000001,18,1000.0 -2015,12,15,9,0,307,91.18,19,1000.0 -2015,12,15,9,30,392,85.71000000000001,20,1000.0 -2015,12,15,10,0,465,81.81,21,1000.0 -2015,12,15,10,30,526,76.95,22,1000.0 -2015,12,15,11,0,570,72.83,23,1000.0 -2015,12,15,11,30,602,72.8,23,1000.0 -2015,12,15,12,0,605,74.11,23,1000.0 -2015,12,15,12,30,269,74.08,23,1000.0 -2015,12,15,13,0,216,75.61,23,1000.0 -2015,12,15,13,30,128,75.59,23,1000.0 -2015,12,15,14,0,90,77.13,23,1000.0 -2015,12,15,14,30,147,81.93,22,1000.0 -2015,12,15,15,0,56,83.83,22,1000.0 -2015,12,15,15,30,23,89.10000000000001,21,1000.0 -2015,12,15,16,0,71,90.68,21,1000.0 -2015,12,15,16,30,39,96.43,20,1000.0 -2015,12,15,17,0,32,95.79,20,1000.0 -2015,12,15,17,30,0,100.0,19,1000.0 -2015,12,15,18,0,0,100.0,19,1000.0 -2015,12,15,18,30,0,100.0,19,1000.0 -2015,12,15,19,0,0,100.0,19,1000.0 -2015,12,15,19,30,0,100.0,19,1000.0 -2015,12,15,20,0,0,100.0,19,1000.0 -2015,12,15,20,30,0,100.0,19,1000.0 -2015,12,15,21,0,0,100.0,19,1000.0 -2015,12,15,21,30,0,100.0,19,1000.0 -2015,12,15,22,0,0,100.0,20,1000.0 -2015,12,15,22,30,0,100.0,20,1000.0 -2015,12,15,23,0,0,100.0,20,1000.0 -2015,12,15,23,30,0,100.0,19,1000.0 -2015,12,16,0,0,0,100.0,19,1000.0 -2015,12,16,0,30,0,100.0,19,1000.0 -2015,12,16,1,0,0,100.0,19,1000.0 -2015,12,16,1,30,0,100.0,19,1000.0 -2015,12,16,2,0,0,100.0,19,1000.0 -2015,12,16,2,30,0,100.0,19,1000.0 -2015,12,16,3,0,0,100.0,19,1000.0 -2015,12,16,3,30,0,100.0,19,1000.0 -2015,12,16,4,0,0,100.0,19,1000.0 -2015,12,16,4,30,0,100.0,18,1000.0 -2015,12,16,5,0,0,100.0,18,1000.0 -2015,12,16,5,30,0,100.0,17,1000.0 -2015,12,16,6,0,0,100.0,17,1000.0 -2015,12,16,6,30,0,100.0,16,1000.0 -2015,12,16,7,0,0,100.0,15,1000.0 -2015,12,16,7,30,1,100.0,15,1000.0 -2015,12,16,8,0,3,93.78,15,1000.0 -2015,12,16,8,30,6,93.82000000000001,15,1010.0 -2015,12,16,9,0,179,80.9,15,1010.0 -2015,12,16,9,30,232,80.91,15,1010.0 -2015,12,16,10,0,279,66.13,15,1010.0 -2015,12,16,10,30,241,66.12,15,1010.0 -2015,12,16,11,0,265,54.93,16,1010.0 -2015,12,16,11,30,572,54.910000000000004,16,1010.0 -2015,12,16,12,0,587,53.050000000000004,16,1000.0 -2015,12,16,12,30,589,53.03,16,1000.0 -2015,12,16,13,0,578,53.15,16,1000.0 -2015,12,16,13,30,371,53.14,16,1000.0 -2015,12,16,14,0,506,53.76,16,1000.0 -2015,12,16,14,30,447,53.75,16,1000.0 -2015,12,16,15,0,373,54.96,16,1000.0 -2015,12,16,15,30,291,58.59,15,1000.0 -2015,12,16,16,0,207,62.77,15,1000.0 -2015,12,16,16,30,118,66.96000000000001,14,1000.0 -2015,12,16,17,0,39,74.26,13,1000.0 -2015,12,16,17,30,0,79.31,12,1000.0 -2015,12,16,18,0,0,78.21000000000001,12,1010.0 -2015,12,16,18,30,0,83.57000000000001,11,1010.0 -2015,12,16,19,0,0,82.42,11,1010.0 -2015,12,16,19,30,0,88.13,11,1010.0 -2015,12,16,20,0,0,86.09,11,1010.0 -2015,12,16,20,30,0,86.12,10,1010.0 -2015,12,16,21,0,0,83.86,10,1010.0 -2015,12,16,21,30,0,89.7,9,1010.0 -2015,12,16,22,0,0,86.37,9,1010.0 -2015,12,16,22,30,0,92.43,9,1010.0 -2015,12,16,23,0,0,89.01,9,1010.0 -2015,12,16,23,30,0,89.01,8,1010.0 -2015,12,17,0,0,0,85.98,8,1010.0 -2015,12,17,0,30,0,92.04,7,1010.0 -2015,12,17,1,0,0,88.82000000000001,7,1010.0 -2015,12,17,1,30,0,88.81,7,1010.0 -2015,12,17,2,0,0,86.55,7,1010.0 -2015,12,17,2,30,0,92.7,6,1010.0 -2015,12,17,3,0,0,90.46000000000001,6,1010.0 -2015,12,17,3,30,0,90.46000000000001,6,1010.0 -2015,12,17,4,0,0,88.35000000000001,6,1010.0 -2015,12,17,4,30,0,94.69,5,1010.0 -2015,12,17,5,0,0,92.85000000000001,5,1010.0 -2015,12,17,5,30,0,92.88,5,1010.0 -2015,12,17,6,0,0,91.37,5,1010.0 -2015,12,17,6,30,0,91.4,5,1010.0 -2015,12,17,7,0,0,90.99,5,1010.0 -2015,12,17,7,30,35,84.93,6,1010.0 -2015,12,17,8,0,120,80.01,7,1010.0 -2015,12,17,8,30,217,74.75,8,1010.0 -2015,12,17,9,0,312,62.660000000000004,10,1010.0 -2015,12,17,9,30,400,58.63,11,1010.0 -2015,12,17,10,0,478,51.97,12,1010.0 -2015,12,17,10,30,543,48.67,13,1010.0 -2015,12,17,11,0,594,46.72,14,1010.0 -2015,12,17,11,30,630,46.71,14,1010.0 -2015,12,17,12,0,649,45.43,15,1010.0 -2015,12,17,12,30,651,45.42,15,1010.0 -2015,12,17,13,0,637,43.78,16,1010.0 -2015,12,17,13,30,605,43.77,16,1010.0 -2015,12,17,14,0,558,44.77,16,1010.0 -2015,12,17,14,30,496,44.76,16,1010.0 -2015,12,17,15,0,420,46.37,16,1010.0 -2015,12,17,15,30,333,49.44,15,1010.0 -2015,12,17,16,0,238,66.07000000000001,14,1010.0 -2015,12,17,16,30,140,75.3,12,1010.0 -2015,12,17,17,0,48,74.95,11,1010.0 -2015,12,17,17,30,0,80.12,10,1010.0 -2015,12,17,18,0,0,74.54,10,1010.0 -2015,12,17,18,30,0,74.57000000000001,10,1010.0 -2015,12,17,19,0,0,66.39,11,1010.0 -2015,12,17,19,30,0,70.97,11,1010.0 -2015,12,17,20,0,0,68.5,11,1010.0 -2015,12,17,20,30,0,73.27,10,1010.0 -2015,12,17,21,0,0,73.85000000000001,9,1010.0 -2015,12,17,21,30,0,79.05,8,1010.0 -2015,12,17,22,0,0,81.16,8,1010.0 -2015,12,17,22,30,0,81.2,8,1010.0 -2015,12,17,23,0,0,81.06,8,1020.0 -2015,12,17,23,30,0,86.8,8,1020.0 -2015,12,18,0,0,0,82.7,8,1020.0 -2015,12,18,0,30,0,88.60000000000001,7,1020.0 -2015,12,18,1,0,0,82.41,6,1020.0 -2015,12,18,1,30,0,88.34,5,1020.0 -2015,12,18,2,0,0,85.15,5,1020.0 -2015,12,18,2,30,0,91.33,4,1020.0 -2015,12,18,3,0,0,91.68,4,1020.0 -2015,12,18,3,30,0,91.7,4,1020.0 -2015,12,18,4,0,0,92.86,4,1020.0 -2015,12,18,4,30,0,99.67,4,1020.0 -2015,12,18,5,0,0,100.0,4,1020.0 -2015,12,18,5,30,0,100.0,3,1020.0 -2015,12,18,6,0,0,100.0,3,1020.0 -2015,12,18,6,30,0,100.0,3,1020.0 -2015,12,18,7,0,0,100.0,4,1020.0 -2015,12,18,7,30,24,95.47,4,1020.0 -2015,12,18,8,0,85,89.62,5,1020.0 -2015,12,18,8,30,172,83.65,6,1020.0 -2015,12,18,9,0,230,71.52,8,1020.0 -2015,12,18,9,30,362,66.85,9,1020.0 -2015,12,18,10,0,488,62.6,10,1020.0 -2015,12,18,10,30,554,58.56,11,1020.0 -2015,12,18,11,0,604,55.79,12,1020.0 -2015,12,18,11,30,639,52.230000000000004,13,1020.0 -2015,12,18,12,0,657,49.85,14,1020.0 -2015,12,18,12,30,658,49.83,14,1020.0 -2015,12,18,13,0,641,50.67,14,1020.0 -2015,12,18,13,30,609,50.660000000000004,14,1020.0 -2015,12,18,14,0,559,48.06,15,1020.0 -2015,12,18,14,30,496,51.25,14,1020.0 -2015,12,18,15,0,419,51.79,14,1020.0 -2015,12,18,15,30,332,55.27,13,1020.0 -2015,12,18,16,0,236,65.11,13,1020.0 -2015,12,18,16,30,139,69.52,12,1020.0 -2015,12,18,17,0,48,65.65,11,1020.0 -2015,12,18,17,30,0,70.18,10,1020.0 -2015,12,18,18,0,0,65.38,10,1020.0 -2015,12,18,18,30,0,69.94,9,1020.0 -2015,12,18,19,0,0,68.18,9,1020.0 -2015,12,18,19,30,0,68.19,9,1020.0 -2015,12,18,20,0,0,66.57000000000001,9,1020.0 -2015,12,18,20,30,0,71.23,8,1020.0 -2015,12,18,21,0,0,70.57000000000001,8,1020.0 -2015,12,18,21,30,0,75.55,8,1020.0 -2015,12,18,22,0,0,75.85000000000001,8,1020.0 -2015,12,18,22,30,0,81.24,7,1020.0 -2015,12,18,23,0,0,81.84,7,1020.0 -2015,12,18,23,30,0,81.84,6,1020.0 -2015,12,19,0,0,0,82.83,6,1020.0 -2015,12,19,0,30,0,88.78,5,1020.0 -2015,12,19,1,0,0,90.16,5,1020.0 -2015,12,19,1,30,0,90.17,5,1020.0 -2015,12,19,2,0,0,91.86,5,1020.0 -2015,12,19,2,30,0,98.5,4,1020.0 -2015,12,19,3,0,0,100.0,4,1020.0 -2015,12,19,3,30,0,100.0,4,1020.0 -2015,12,19,4,0,0,100.0,4,1020.0 -2015,12,19,4,30,0,100.0,4,1020.0 -2015,12,19,5,0,0,100.0,4,1020.0 -2015,12,19,5,30,0,100.0,4,1020.0 -2015,12,19,6,0,0,100.0,4,1020.0 -2015,12,19,6,30,0,100.0,4,1020.0 -2015,12,19,7,0,0,98.10000000000001,5,1020.0 -2015,12,19,7,30,33,91.56,7,1030.0 -2015,12,19,8,0,120,85.41,9,1030.0 -2015,12,19,8,30,218,79.85000000000001,10,1030.0 -2015,12,19,9,0,314,71.56,12,1030.0 -2015,12,19,9,30,403,66.99,13,1030.0 -2015,12,19,10,0,481,58.17,14,1030.0 -2015,12,19,10,30,546,58.15,14,1030.0 -2015,12,19,11,0,596,55.58,15,1030.0 -2015,12,19,11,30,631,55.54,15,1020.0 -2015,12,19,12,0,649,54.230000000000004,16,1020.0 -2015,12,19,12,30,650,54.2,16,1020.0 -2015,12,19,13,0,633,56.6,16,1020.0 -2015,12,19,13,30,601,56.59,16,1020.0 -2015,12,19,14,0,552,58.67,16,1020.0 -2015,12,19,14,30,490,58.660000000000004,16,1020.0 -2015,12,19,15,0,414,60.44,16,1020.0 -2015,12,19,15,30,204,64.43,15,1020.0 -2015,12,19,16,0,204,74.33,14,1020.0 -2015,12,19,16,30,120,84.69,12,1020.0 -2015,12,19,17,0,42,87.07000000000001,11,1020.0 -2015,12,19,17,30,0,93.07000000000001,10,1020.0 -2015,12,19,18,0,0,89.34,10,1020.0 -2015,12,19,18,30,0,89.32000000000001,10,1020.0 -2015,12,19,19,0,0,87.79,10,1020.0 -2015,12,19,19,30,0,93.85000000000001,9,1020.0 -2015,12,19,20,0,0,93.91,9,1020.0 -2015,12,19,20,30,0,93.94,9,1020.0 -2015,12,19,21,0,0,94.46000000000001,9,1020.0 -2015,12,19,21,30,0,94.48,9,1020.0 -2015,12,19,22,0,0,96.41,9,1020.0 -2015,12,19,22,30,0,96.41,9,1020.0 -2015,12,19,23,0,0,99.76,9,1020.0 -2015,12,19,23,30,0,99.73,9,1020.0 -2015,12,20,0,0,0,97.9,10,1020.0 -2015,12,20,0,30,0,97.85000000000001,10,1020.0 -2015,12,20,1,0,0,100.0,10,1020.0 -2015,12,20,1,30,0,100.0,10,1020.0 -2015,12,20,2,0,0,100.0,11,1020.0 -2015,12,20,2,30,0,100.0,11,1020.0 -2015,12,20,3,0,0,100.0,12,1020.0 -2015,12,20,3,30,0,100.0,12,1020.0 -2015,12,20,4,0,0,100.0,12,1020.0 -2015,12,20,4,30,0,100.0,12,1020.0 -2015,12,20,5,0,0,100.0,12,1020.0 -2015,12,20,5,30,0,100.0,12,1020.0 -2015,12,20,6,0,0,100.0,13,1020.0 -2015,12,20,6,30,0,100.0,13,1020.0 -2015,12,20,7,0,0,100.0,14,1020.0 -2015,12,20,7,30,19,95.46000000000001,15,1020.0 -2015,12,20,8,0,74,94.28,16,1020.0 -2015,12,20,8,30,107,94.28,16,1020.0 -2015,12,20,9,0,158,92.81,17,1020.0 -2015,12,20,9,30,255,87.14,18,1020.0 -2015,12,20,10,0,309,85.17,19,1020.0 -2015,12,20,10,30,353,85.11,19,1020.0 -2015,12,20,11,0,119,80.79,20,1020.0 -2015,12,20,11,30,116,80.72,20,1020.0 -2015,12,20,12,0,118,75.22,21,1010.0 -2015,12,20,12,30,33,75.17,21,1010.0 -2015,12,20,13,0,104,75.29,21,1010.0 -2015,12,20,13,30,221,80.02,20,1010.0 -2015,12,20,14,0,181,81.23,20,1010.0 -2015,12,20,14,30,193,86.41,19,1010.0 -2015,12,20,15,0,117,88.60000000000001,19,1010.0 -2015,12,20,15,30,135,88.60000000000001,19,1010.0 -2015,12,20,16,0,85,89.12,19,1010.0 -2015,12,20,16,30,48,94.86,18,1010.0 -2015,12,20,17,0,16,94.5,18,1010.0 -2015,12,20,17,30,0,94.5,18,1010.0 -2015,12,20,18,0,0,94.99,18,1010.0 -2015,12,20,18,30,0,95.0,18,1010.0 -2015,12,20,19,0,0,95.69,18,1010.0 -2015,12,20,19,30,0,95.68,18,1010.0 -2015,12,20,20,0,0,96.49000000000001,18,1010.0 -2015,12,20,20,30,0,96.48,18,1010.0 -2015,12,20,21,0,0,97.51,18,1010.0 -2015,12,20,21,30,0,97.48,18,1010.0 -2015,12,20,22,0,0,98.83,18,1010.0 -2015,12,20,22,30,0,98.76,18,1010.0 -2015,12,20,23,0,0,100.0,18,1010.0 -2015,12,20,23,30,0,100.0,18,1010.0 -2015,12,21,0,0,0,100.0,18,1010.0 -2015,12,21,0,30,0,100.0,18,1010.0 -2015,12,21,1,0,0,100.0,18,1010.0 -2015,12,21,1,30,0,100.0,18,1010.0 -2015,12,21,2,0,0,100.0,18,1010.0 -2015,12,21,2,30,0,100.0,18,1010.0 -2015,12,21,3,0,0,100.0,18,1010.0 -2015,12,21,3,30,0,100.0,18,1010.0 -2015,12,21,4,0,0,100.0,19,1010.0 -2015,12,21,4,30,0,100.0,19,1010.0 -2015,12,21,5,0,0,100.0,19,1010.0 -2015,12,21,5,30,0,100.0,19,1010.0 -2015,12,21,6,0,0,100.0,19,1010.0 -2015,12,21,6,30,0,100.0,19,1010.0 -2015,12,21,7,0,0,100.0,19,1010.0 -2015,12,21,7,30,1,100.0,19,1010.0 -2015,12,21,8,0,8,100.0,20,1010.0 -2015,12,21,8,30,12,100.0,20,1010.0 -2015,12,21,9,0,102,100.0,21,1010.0 -2015,12,21,9,30,74,100.0,21,1010.0 -2015,12,21,10,0,137,100.0,21,1010.0 -2015,12,21,10,30,224,100.0,21,1010.0 -2015,12,21,11,0,130,98.53,22,1010.0 -2015,12,21,11,30,206,98.47,22,1010.0 -2015,12,21,12,0,266,99.19,22,1010.0 -2015,12,21,12,30,254,99.13,22,1010.0 -2015,12,21,13,0,204,99.03,22,1010.0 -2015,12,21,13,30,262,99.0,22,1010.0 -2015,12,21,14,0,189,98.13,22,1010.0 -2015,12,21,14,30,198,98.11,22,1010.0 -2015,12,21,15,0,172,96.94,22,1010.0 -2015,12,21,15,30,145,100.0,21,1010.0 -2015,12,21,16,0,153,100.0,21,1010.0 -2015,12,21,16,30,88,100.0,20,1010.0 -2015,12,21,17,0,30,100.0,20,1010.0 -2015,12,21,17,30,0,100.0,19,1010.0 -2015,12,21,18,0,0,100.0,19,1010.0 -2015,12,21,18,30,0,100.0,19,1010.0 -2015,12,21,19,0,0,100.0,19,1010.0 -2015,12,21,19,30,0,100.0,18,1010.0 -2015,12,21,20,0,0,100.0,18,1010.0 -2015,12,21,20,30,0,100.0,18,1010.0 -2015,12,21,21,0,0,100.0,18,1010.0 -2015,12,21,21,30,0,100.0,17,1010.0 -2015,12,21,22,0,0,100.0,17,1010.0 -2015,12,21,22,30,0,100.0,16,1010.0 -2015,12,21,23,0,0,100.0,16,1010.0 -2015,12,21,23,30,0,100.0,16,1010.0 -2015,12,22,0,0,0,100.0,16,1010.0 -2015,12,22,0,30,0,100.0,16,1010.0 -2015,12,22,1,0,0,100.0,16,1010.0 -2015,12,22,1,30,0,100.0,15,1010.0 -2015,12,22,2,0,0,100.0,15,1010.0 -2015,12,22,2,30,0,100.0,15,1010.0 -2015,12,22,3,0,0,100.0,15,1010.0 -2015,12,22,3,30,0,100.0,14,1010.0 -2015,12,22,4,0,0,100.0,14,1000.0 -2015,12,22,4,30,0,100.0,14,1000.0 -2015,12,22,5,0,0,100.0,14,1000.0 -2015,12,22,5,30,0,100.0,14,1000.0 -2015,12,22,6,0,0,100.0,14,1010.0 -2015,12,22,6,30,0,100.0,14,1000.0 -2015,12,22,7,0,0,100.0,14,1000.0 -2015,12,22,7,30,19,99.47,15,1000.0 -2015,12,22,8,0,78,100.0,16,1000.0 -2015,12,22,8,30,141,100.0,16,1000.0 -2015,12,22,9,0,255,98.95,17,1000.0 -2015,12,22,9,30,300,98.94,17,1000.0 -2015,12,22,10,0,302,98.35000000000001,18,1000.0 -2015,12,22,10,30,359,92.37,19,1000.0 -2015,12,22,11,0,459,89.81,20,1000.0 -2015,12,22,11,30,419,89.75,20,1000.0 -2015,12,22,12,0,430,90.64,20,1000.0 -2015,12,22,12,30,474,90.57000000000001,20,1000.0 -2015,12,22,13,0,452,86.8,21,1000.0 -2015,12,22,13,30,295,86.76,21,1000.0 -2015,12,22,14,0,240,89.56,21,1000.0 -2015,12,22,14,30,173,89.53,21,1000.0 -2015,12,22,15,0,75,92.82000000000001,21,1000.0 -2015,12,22,15,30,199,92.79,21,1000.0 -2015,12,22,16,0,85,95.39,21,1000.0 -2015,12,22,16,30,49,100.0,20,1000.0 -2015,12,22,17,0,18,100.0,20,1000.0 -2015,12,22,17,30,0,100.0,19,1000.0 -2015,12,22,18,0,0,100.0,19,1000.0 -2015,12,22,18,30,0,100.0,19,1000.0 -2015,12,22,19,0,0,100.0,19,1000.0 -2015,12,22,19,30,0,100.0,19,1000.0 -2015,12,22,20,0,0,100.0,19,1000.0 -2015,12,22,20,30,0,100.0,19,1000.0 -2015,12,22,21,0,0,100.0,19,1000.0 -2015,12,22,21,30,0,100.0,19,1000.0 -2015,12,22,22,0,0,100.0,20,1000.0 -2015,12,22,22,30,0,100.0,20,1000.0 -2015,12,22,23,0,0,100.0,20,1000.0 -2015,12,22,23,30,0,100.0,20,1000.0 -2015,12,23,0,0,0,100.0,20,1000.0 -2015,12,23,0,30,0,100.0,20,1000.0 -2015,12,23,1,0,0,100.0,20,1000.0 -2015,12,23,1,30,0,100.0,20,1000.0 -2015,12,23,2,0,0,100.0,20,990.0 -2015,12,23,2,30,0,100.0,20,990.0 -2015,12,23,3,0,0,100.0,20,990.0 -2015,12,23,3,30,0,100.0,20,990.0 -2015,12,23,4,0,0,100.0,20,990.0 -2015,12,23,4,30,0,100.0,20,990.0 -2015,12,23,5,0,0,100.0,20,990.0 -2015,12,23,5,30,0,100.0,20,990.0 -2015,12,23,6,0,0,100.0,21,990.0 -2015,12,23,6,30,0,100.0,21,990.0 -2015,12,23,7,0,0,100.0,21,990.0 -2015,12,23,7,30,16,100.0,21,990.0 -2015,12,23,8,0,3,100.0,22,990.0 -2015,12,23,8,30,7,100.0,22,990.0 -2015,12,23,9,0,75,94.96000000000001,23,990.0 -2015,12,23,9,30,100,94.99,23,990.0 -2015,12,23,10,0,430,83.48,24,1000.0 -2015,12,23,10,30,494,83.47,24,1000.0 -2015,12,23,11,0,557,76.08,24,1000.0 -2015,12,23,11,30,593,76.05,24,990.0 -2015,12,23,12,0,613,65.15,25,990.0 -2015,12,23,12,30,617,65.13,25,990.0 -2015,12,23,13,0,608,59.49,25,990.0 -2015,12,23,13,30,579,59.49,25,990.0 -2015,12,23,14,0,537,56.39,25,990.0 -2015,12,23,14,30,477,59.85,24,990.0 -2015,12,23,15,0,406,62.120000000000005,24,990.0 -2015,12,23,15,30,323,65.99,23,990.0 -2015,12,23,16,0,233,77.22,22,1000.0 -2015,12,23,16,30,139,82.11,21,1000.0 -2015,12,23,17,0,51,72.02,21,1000.0 -2015,12,23,17,30,0,76.62,20,1000.0 -2015,12,23,18,0,0,72.79,20,1000.0 -2015,12,23,18,30,0,77.48,19,1000.0 -2015,12,23,19,0,0,76.73,19,1000.0 -2015,12,23,19,30,0,81.7,18,1000.0 -2015,12,23,20,0,0,89.10000000000001,17,1000.0 -2015,12,23,20,30,0,94.96000000000001,16,1000.0 -2015,12,23,21,0,0,99.67,16,1000.0 -2015,12,23,21,30,0,99.7,16,1000.0 -2015,12,23,22,0,0,100.0,16,1000.0 -2015,12,23,22,30,0,100.0,16,1000.0 -2015,12,23,23,0,0,100.0,16,1000.0 -2015,12,23,23,30,0,100.0,16,1000.0 -2015,12,24,0,0,0,100.0,16,1000.0 -2015,12,24,0,30,0,100.0,16,1000.0 -2015,12,24,1,0,0,100.0,16,1000.0 -2015,12,24,1,30,0,100.0,15,1000.0 -2015,12,24,2,0,0,100.0,15,1000.0 -2015,12,24,2,30,0,100.0,15,1000.0 -2015,12,24,3,0,0,100.0,15,1000.0 -2015,12,24,3,30,0,100.0,15,1000.0 -2015,12,24,4,0,0,100.0,15,1000.0 -2015,12,24,4,30,0,100.0,14,1000.0 -2015,12,24,5,0,0,100.0,14,1000.0 -2015,12,24,5,30,0,100.0,14,1000.0 -2015,12,24,6,0,0,100.0,14,1000.0 -2015,12,24,6,30,0,100.0,14,1000.0 -2015,12,24,7,0,0,100.0,15,1000.0 -2015,12,24,7,30,24,100.0,16,1000.0 -2015,12,24,8,0,100,100.0,18,1000.0 -2015,12,24,8,30,191,97.78,19,1000.0 -2015,12,24,9,0,282,93.87,21,1000.0 -2015,12,24,9,30,367,88.33,22,1000.0 -2015,12,24,10,0,254,87.93,23,1010.0 -2015,12,24,10,30,290,87.91,24,1000.0 -2015,12,24,11,0,316,84.94,25,1000.0 -2015,12,24,11,30,336,84.91,25,1000.0 -2015,12,24,12,0,336,81.60000000000001,25,1000.0 -2015,12,24,12,30,250,81.57000000000001,25,1000.0 -2015,12,24,13,0,566,77.99,26,1000.0 -2015,12,24,13,30,268,77.97,26,1000.0 -2015,12,24,14,0,247,78.7,26,1000.0 -2015,12,24,14,30,211,83.5,25,1000.0 -2015,12,24,15,0,172,84.87,25,1000.0 -2015,12,24,15,30,147,90.09,24,1000.0 -2015,12,24,16,0,67,92.53,24,1000.0 -2015,12,24,16,30,115,98.27,23,1000.0 -2015,12,24,17,0,40,100.0,22,1000.0 -2015,12,24,17,30,0,100.0,21,1000.0 -2015,12,24,18,0,0,100.0,21,1000.0 -2015,12,24,18,30,0,100.0,21,1000.0 -2015,12,24,19,0,0,100.0,21,1010.0 -2015,12,24,19,30,0,100.0,21,1010.0 -2015,12,24,20,0,0,100.0,21,1010.0 -2015,12,24,20,30,0,100.0,21,1010.0 -2015,12,24,21,0,0,100.0,21,1010.0 -2015,12,24,21,30,0,100.0,21,1010.0 -2015,12,24,22,0,0,100.0,21,1010.0 -2015,12,24,22,30,0,100.0,21,1010.0 -2015,12,24,23,0,0,100.0,21,1010.0 -2015,12,24,23,30,0,100.0,21,1010.0 -2015,12,25,0,0,0,100.0,21,1010.0 -2015,12,25,0,30,0,100.0,21,1010.0 -2015,12,25,1,0,0,100.0,21,1010.0 -2015,12,25,1,30,0,100.0,20,1010.0 -2015,12,25,2,0,0,100.0,20,1010.0 -2015,12,25,2,30,0,100.0,20,1010.0 -2015,12,25,3,0,0,100.0,20,1010.0 -2015,12,25,3,30,0,100.0,20,1010.0 -2015,12,25,4,0,0,100.0,20,1010.0 -2015,12,25,4,30,0,100.0,20,1010.0 -2015,12,25,5,0,0,100.0,20,1010.0 -2015,12,25,5,30,0,100.0,20,1010.0 -2015,12,25,6,0,0,100.0,20,1010.0 -2015,12,25,6,30,0,100.0,20,1010.0 -2015,12,25,7,0,0,100.0,20,1010.0 -2015,12,25,7,30,21,100.0,20,1010.0 -2015,12,25,8,0,13,100.0,21,1010.0 -2015,12,25,8,30,74,97.96000000000001,22,1010.0 -2015,12,25,9,0,111,96.64,23,1010.0 -2015,12,25,9,30,145,91.0,24,1010.0 -2015,12,25,10,0,427,88.02,25,1010.0 -2015,12,25,10,30,490,87.99,25,1010.0 -2015,12,25,11,0,539,82.79,26,1010.0 -2015,12,25,11,30,224,82.73,26,1010.0 -2015,12,25,12,0,227,82.34,26,1010.0 -2015,12,25,12,30,185,82.29,26,1010.0 -2015,12,25,13,0,180,81.97,27,1010.0 -2015,12,25,13,30,171,81.95,26,1010.0 -2015,12,25,14,0,498,81.86,26,1010.0 -2015,12,25,14,30,441,86.84,25,1010.0 -2015,12,25,15,0,251,87.4,25,1010.0 -2015,12,25,15,30,200,92.76,24,1010.0 -2015,12,25,16,0,128,93.65,24,1010.0 -2015,12,25,16,30,75,99.46000000000001,23,1010.0 -2015,12,25,17,0,42,98.47,23,1010.0 -2015,12,25,17,30,0,100.0,22,1010.0 -2015,12,25,18,0,0,100.0,22,1010.0 -2015,12,25,18,30,0,100.0,22,1010.0 -2015,12,25,19,0,0,100.0,22,1010.0 -2015,12,25,19,30,0,100.0,22,1010.0 -2015,12,25,20,0,0,100.0,22,1010.0 -2015,12,25,20,30,0,100.0,22,1010.0 -2015,12,25,21,0,0,100.0,22,1010.0 -2015,12,25,21,30,0,100.0,22,1010.0 -2015,12,25,22,0,0,100.0,22,1010.0 -2015,12,25,22,30,0,100.0,22,1010.0 -2015,12,25,23,0,0,100.0,22,1010.0 -2015,12,25,23,30,0,100.0,22,1010.0 -2015,12,26,0,0,0,100.0,22,1010.0 -2015,12,26,0,30,0,100.0,21,1010.0 -2015,12,26,1,0,0,100.0,21,1010.0 -2015,12,26,1,30,0,100.0,21,1010.0 -2015,12,26,2,0,0,100.0,21,1010.0 -2015,12,26,2,30,0,100.0,21,1010.0 -2015,12,26,3,0,0,100.0,21,1010.0 -2015,12,26,3,30,0,100.0,21,1010.0 -2015,12,26,4,0,0,100.0,21,1000.0 -2015,12,26,4,30,0,100.0,21,1000.0 -2015,12,26,5,0,0,100.0,21,1000.0 -2015,12,26,5,30,0,100.0,21,1000.0 -2015,12,26,6,0,0,100.0,21,1000.0 -2015,12,26,6,30,0,100.0,21,1010.0 -2015,12,26,7,0,0,100.0,21,1010.0 -2015,12,26,7,30,0,100.0,21,1010.0 -2015,12,26,8,0,3,100.0,22,1010.0 -2015,12,26,8,30,6,100.0,22,1010.0 -2015,12,26,9,0,22,98.47,23,1010.0 -2015,12,26,9,30,50,98.46000000000001,23,1010.0 -2015,12,26,10,0,81,93.69,24,1010.0 -2015,12,26,10,30,156,93.64,24,1010.0 -2015,12,26,11,0,326,87.63,25,1000.0 -2015,12,26,11,30,315,87.57000000000001,25,1000.0 -2015,12,26,12,0,338,82.91,26,1000.0 -2015,12,26,12,30,402,82.86,26,1000.0 -2015,12,26,13,0,279,83.16,26,1000.0 -2015,12,26,13,30,79,88.2,25,1000.0 -2015,12,26,14,0,140,87.43,25,1000.0 -2015,12,26,14,30,155,87.42,25,1000.0 -2015,12,26,15,0,87,86.47,25,1000.0 -2015,12,26,15,30,166,91.77,24,1000.0 -2015,12,26,16,0,118,91.3,24,1000.0 -2015,12,26,16,30,69,96.95,23,1000.0 -2015,12,26,17,0,25,96.29,23,1000.0 -2015,12,26,17,30,0,100.0,22,1000.0 -2015,12,26,18,0,0,100.0,22,1000.0 -2015,12,26,18,30,0,100.0,22,1000.0 -2015,12,26,19,0,0,100.0,22,1000.0 -2015,12,26,19,30,0,100.0,22,1000.0 -2015,12,26,20,0,0,100.0,22,1000.0 -2015,12,26,20,30,0,100.0,22,1000.0 -2015,12,26,21,0,0,100.0,22,1000.0 -2015,12,26,21,30,0,100.0,22,1000.0 -2015,12,26,22,0,0,100.0,22,1000.0 -2015,12,26,22,30,0,100.0,22,1000.0 -2015,12,26,23,0,0,100.0,22,1000.0 -2015,12,26,23,30,0,100.0,22,1000.0 -2015,12,27,0,0,0,100.0,22,1000.0 -2015,12,27,0,30,0,100.0,22,1000.0 -2015,12,27,1,0,0,100.0,22,1000.0 -2015,12,27,1,30,0,100.0,22,1000.0 -2015,12,27,2,0,0,100.0,22,1000.0 -2015,12,27,2,30,0,100.0,22,1000.0 -2015,12,27,3,0,0,100.0,22,1000.0 -2015,12,27,3,30,0,100.0,22,1000.0 -2015,12,27,4,0,0,100.0,22,1000.0 -2015,12,27,4,30,0,100.0,22,1000.0 -2015,12,27,5,0,0,100.0,22,1000.0 -2015,12,27,5,30,0,100.0,22,1000.0 -2015,12,27,6,0,0,100.0,22,1000.0 -2015,12,27,6,30,0,100.0,22,1000.0 -2015,12,27,7,0,0,100.0,22,1000.0 -2015,12,27,7,30,3,100.0,22,1000.0 -2015,12,27,8,0,36,96.68,23,1000.0 -2015,12,27,8,30,78,96.67,23,1000.0 -2015,12,27,9,0,121,97.79,23,1000.0 -2015,12,27,9,30,51,97.77,23,1000.0 -2015,12,27,10,0,110,98.45,24,1000.0 -2015,12,27,10,30,59,98.39,24,1000.0 -2015,12,27,11,0,135,92.44,24,1000.0 -2015,12,27,11,30,183,92.37,24,1000.0 -2015,12,27,12,0,123,91.76,24,1000.0 -2015,12,27,12,30,186,91.7,24,990.0 -2015,12,27,13,0,314,91.9,24,990.0 -2015,12,27,13,30,298,97.55,23,990.0 -2015,12,27,14,0,274,97.74000000000001,23,990.0 -2015,12,27,14,30,108,97.71000000000001,23,990.0 -2015,12,27,15,0,14,95.37,23,990.0 -2015,12,27,15,30,248,100.0,22,990.0 -2015,12,27,16,0,65,98.12,21,990.0 -2015,12,27,16,30,38,100.0,19,990.0 -2015,12,27,17,0,13,96.58,18,990.0 -2015,12,27,17,30,0,100.0,16,1000.0 -2015,12,27,18,0,0,96.16,14,1000.0 -2015,12,27,18,30,0,100.0,12,1000.0 -2015,12,27,19,0,0,94.36,11,1000.0 -2015,12,27,19,30,0,100.0,10,1000.0 -2015,12,27,20,0,0,88.02,10,1000.0 -2015,12,27,20,30,0,94.16,9,1000.0 -2015,12,27,21,0,0,85.52,9,1000.0 -2015,12,27,21,30,0,91.52,8,1000.0 -2015,12,27,22,0,0,84.62,8,1000.0 -2015,12,27,22,30,0,90.61,7,1000.0 -2015,12,27,23,0,0,84.22,7,1000.0 -2015,12,27,23,30,0,84.24,7,1000.0 -2015,12,28,0,0,0,77.54,7,1000.0 -2015,12,28,0,30,0,83.07000000000001,6,1000.0 -2015,12,28,1,0,0,75.77,6,1000.0 -2015,12,28,1,30,0,81.21000000000001,5,1000.0 -2015,12,28,2,0,0,76.37,5,1000.0 -2015,12,28,2,30,0,81.9,4,1000.0 -2015,12,28,3,0,0,80.21000000000001,4,1000.0 -2015,12,28,3,30,0,80.21000000000001,4,1000.0 -2015,12,28,4,0,0,77.66,4,1000.0 -2015,12,28,4,30,0,77.68,4,1000.0 -2015,12,28,5,0,0,73.87,4,1000.0 -2015,12,28,5,30,0,79.29,4,1000.0 -2015,12,28,6,0,0,77.22,4,1000.0 -2015,12,28,6,30,0,77.26,4,1000.0 -2015,12,28,7,0,0,77.67,4,1010.0 -2015,12,28,7,30,21,72.42,4,1010.0 -2015,12,28,8,0,99,67.87,5,1010.0 -2015,12,28,8,30,193,67.89,5,1010.0 -2015,12,28,9,0,287,63.28,6,1010.0 -2015,12,28,9,30,376,63.300000000000004,7,1010.0 -2015,12,28,10,0,456,60.6,8,1010.0 -2015,12,28,10,30,523,56.6,8,1010.0 -2015,12,28,11,0,578,55.03,9,1010.0 -2015,12,28,11,30,615,55.01,9,1010.0 -2015,12,28,12,0,639,53.38,10,1010.0 -2015,12,28,12,30,644,53.370000000000005,10,1010.0 -2015,12,28,13,0,632,54.96,10,1010.0 -2015,12,28,13,30,604,54.96,10,1010.0 -2015,12,28,14,0,559,55.97,11,1010.0 -2015,12,28,14,30,499,55.99,10,1010.0 -2015,12,28,15,0,427,56.52,10,1010.0 -2015,12,28,15,30,342,60.45,9,1010.0 -2015,12,28,16,0,249,61.4,9,1010.0 -2015,12,28,16,30,152,65.71000000000001,8,1010.0 -2015,12,28,17,0,61,75.47,7,1010.0 -2015,12,28,17,30,0,80.87,6,1010.0 -2015,12,28,18,0,0,83.68,6,1010.0 -2015,12,28,18,30,0,89.71000000000001,5,1010.0 -2015,12,28,19,0,0,90.33,5,1010.0 -2015,12,28,19,30,0,96.89,5,1010.0 -2015,12,28,20,0,0,96.62,5,1010.0 -2015,12,28,20,30,0,96.65,4,1010.0 -2015,12,28,21,0,0,96.03,4,1010.0 -2015,12,28,21,30,0,96.04,4,1010.0 -2015,12,28,22,0,0,95.62,4,1010.0 -2015,12,28,22,30,0,95.62,4,1010.0 -2015,12,28,23,0,0,94.41,4,1010.0 -2015,12,28,23,30,0,100.0,3,1010.0 -2015,12,29,0,0,0,100.0,3,1010.0 -2015,12,29,0,30,0,100.0,3,1010.0 -2015,12,29,1,0,0,94.06,4,1010.0 -2015,12,29,1,30,0,94.05,4,1010.0 -2015,12,29,2,0,0,95.01,4,1010.0 -2015,12,29,2,30,0,95.02,4,1010.0 -2015,12,29,3,0,0,95.06,4,1010.0 -2015,12,29,3,30,0,95.07000000000001,4,1010.0 -2015,12,29,4,0,0,94.76,4,1010.0 -2015,12,29,4,30,0,94.77,4,1010.0 -2015,12,29,5,0,0,94.68,4,1010.0 -2015,12,29,5,30,0,94.7,4,1010.0 -2015,12,29,6,0,0,95.06,4,1010.0 -2015,12,29,6,30,0,95.10000000000001,4,1010.0 -2015,12,29,7,0,0,96.09,4,1010.0 -2015,12,29,7,30,14,89.64,5,1010.0 -2015,12,29,8,0,66,80.22,6,1010.0 -2015,12,29,8,30,116,80.24,7,1010.0 -2015,12,29,9,0,210,74.15,8,1010.0 -2015,12,29,9,30,300,69.26,8,1010.0 -2015,12,29,10,0,400,67.53,9,1010.0 -2015,12,29,10,30,457,67.51,9,1010.0 -2015,12,29,11,0,349,66.61,10,1010.0 -2015,12,29,11,30,372,66.57000000000001,10,1010.0 -2015,12,29,12,0,414,65.62,11,1010.0 -2015,12,29,12,30,381,65.58,11,1010.0 -2015,12,29,13,0,204,68.79,11,1010.0 -2015,12,29,13,30,195,68.76,11,1010.0 -2015,12,29,14,0,239,67.27,12,1010.0 -2015,12,29,14,30,80,67.26,12,1010.0 -2015,12,29,15,0,293,70.5,12,1010.0 -2015,12,29,15,30,207,75.3,11,1010.0 -2015,12,29,16,0,149,80.26,11,1010.0 -2015,12,29,16,30,90,85.81,10,1010.0 -2015,12,29,17,0,35,93.8,10,1010.0 -2015,12,29,17,30,0,93.83,10,1010.0 -2015,12,29,18,0,0,93.71000000000001,10,1010.0 -2015,12,29,18,30,0,93.73,10,1010.0 -2015,12,29,19,0,0,93.72,10,1010.0 -2015,12,29,19,30,0,100.0,9,1010.0 -2015,12,29,20,0,0,100.0,9,1010.0 -2015,12,29,20,30,0,100.0,9,1010.0 -2015,12,29,21,0,0,100.0,9,1010.0 -2015,12,29,21,30,0,100.0,9,1010.0 -2015,12,29,22,0,0,99.22,9,1010.0 -2015,12,29,22,30,0,99.22,9,1010.0 -2015,12,29,23,0,0,97.23,9,1010.0 -2015,12,29,23,30,0,97.22,9,1010.0 -2015,12,30,0,0,0,95.98,9,1010.0 -2015,12,30,0,30,0,95.97,9,1010.0 -2015,12,30,1,0,0,95.38,9,1010.0 -2015,12,30,1,30,0,95.37,9,1010.0 -2015,12,30,2,0,0,95.2,9,1010.0 -2015,12,30,2,30,0,95.21000000000001,9,1010.0 -2015,12,30,3,0,0,95.45,9,1010.0 -2015,12,30,3,30,0,95.45,9,1010.0 -2015,12,30,4,0,0,95.8,9,1010.0 -2015,12,30,4,30,0,95.81,9,1010.0 -2015,12,30,5,0,0,96.02,9,1010.0 -2015,12,30,5,30,0,96.05,9,1010.0 -2015,12,30,6,0,0,96.19,9,1010.0 -2015,12,30,6,30,0,96.22,9,1010.0 -2015,12,30,7,0,0,96.54,9,1020.0 -2015,12,30,7,30,15,96.57000000000001,9,1020.0 -2015,12,30,8,0,82,92.03,10,1020.0 -2015,12,30,8,30,14,92.06,10,1020.0 -2015,12,30,9,0,22,86.21000000000001,11,1020.0 -2015,12,30,9,30,31,86.23,11,1020.0 -2015,12,30,10,0,68,81.85000000000001,12,1020.0 -2015,12,30,10,30,89,81.85000000000001,12,1020.0 -2015,12,30,11,0,18,78.76,13,1020.0 -2015,12,30,11,30,72,78.72,13,1020.0 -2015,12,30,12,0,182,75.93,14,1020.0 -2015,12,30,12,30,309,75.9,14,1020.0 -2015,12,30,13,0,224,73.19,15,1010.0 -2015,12,30,13,30,224,73.17,15,1010.0 -2015,12,30,14,0,191,74.54,15,1010.0 -2015,12,30,14,30,112,79.5,14,1010.0 -2015,12,30,15,0,133,80.41,14,1010.0 -2015,12,30,15,30,37,85.83,13,1020.0 -2015,12,30,16,0,37,87.9,13,1020.0 -2015,12,30,16,30,22,93.86,12,1020.0 -2015,12,30,17,0,9,93.02,12,1020.0 -2015,12,30,17,30,0,93.04,12,1020.0 -2015,12,30,18,0,0,90.89,12,1020.0 -2015,12,30,18,30,0,97.12,11,1020.0 -2015,12,30,19,0,0,95.18,11,1020.0 -2015,12,30,19,30,0,100.0,11,1020.0 -2015,12,30,20,0,0,99.56,11,1020.0 -2015,12,30,20,30,0,99.57000000000001,10,1020.0 -2015,12,30,21,0,0,97.71000000000001,10,1020.0 -2015,12,30,21,30,0,97.7,10,1020.0 -2015,12,30,22,0,0,96.18,10,1020.0 -2015,12,30,22,30,0,100.0,10,1020.0 -2015,12,30,23,0,0,100.0,10,1020.0 -2015,12,30,23,30,0,100.0,9,1020.0 -2015,12,31,0,0,0,99.29,9,1020.0 -2015,12,31,0,30,0,99.29,9,1020.0 -2015,12,31,1,0,0,97.39,9,1020.0 -2015,12,31,1,30,0,97.39,9,1020.0 -2015,12,31,2,0,0,95.24,9,1020.0 -2015,12,31,2,30,0,100.0,8,1020.0 -2015,12,31,3,0,0,99.58,8,1020.0 -2015,12,31,3,30,0,99.56,8,1020.0 -2015,12,31,4,0,0,97.63,8,1020.0 -2015,12,31,4,30,0,97.64,8,1020.0 -2015,12,31,5,0,0,96.07000000000001,8,1020.0 -2015,12,31,5,30,0,96.11,8,1020.0 -2015,12,31,6,0,0,94.84,8,1020.0 -2015,12,31,6,30,0,94.87,8,1020.0 -2015,12,31,7,0,0,94.19,8,1020.0 -2015,12,31,7,30,9,94.2,8,1020.0 -2015,12,31,8,0,49,93.64,9,1020.0 -2015,12,31,8,30,38,93.65,9,1020.0 -2015,12,31,9,0,177,87.0,9,1020.0 -2015,12,31,9,30,167,81.37,10,1020.0 -2015,12,31,10,0,356,75.78,11,1020.0 -2015,12,31,10,30,361,75.77,11,1020.0 -2015,12,31,11,0,364,71.16,12,1020.0 -2015,12,31,11,30,280,71.14,12,1020.0 -2015,12,31,12,0,230,71.66,12,1020.0 -2015,12,31,12,30,260,71.62,12,1020.0 -2015,12,31,13,0,394,67.61,13,1020.0 -2015,12,31,13,30,223,72.16,13,1020.0 -2015,12,31,14,0,300,73.24,13,1020.0 -2015,12,31,14,30,228,73.24,12,1020.0 -2015,12,31,15,0,249,74.86,12,1020.0 -2015,12,31,15,30,143,79.99,11,1020.0 -2015,12,31,16,0,125,83.07000000000001,11,1020.0 -2015,12,31,16,30,77,83.10000000000001,11,1020.0 -2015,12,31,17,0,31,85.22,11,1020.0 -2015,12,31,17,30,0,85.22,11,1020.0 -2015,12,31,18,0,0,82.43,7,1020.0 -2015,12,31,18,30,0,88.29,6,1020.0 -2015,12,31,19,0,0,88.88,6,1020.0 -2015,12,31,19,30,0,88.88,6,1020.0 -2015,12,31,20,0,0,88.77,6,1020.0 -2015,12,31,20,30,0,88.76,6,1020.0 -2015,12,31,21,0,0,88.36,6,1020.0 -2015,12,31,21,30,0,94.68,6,1020.0 -2015,12,31,22,0,0,94.31,6,1020.0 -2015,12,31,22,30,0,94.27,5,1020.0 -2015,12,31,23,0,0,94.04,5,1020.0 -2015,12,31,23,30,0,94.01,5,1020.0 +Source,Location ID,City,State,Country,Latitude,Longitude,Time Zone,Elevation,Local Time Zone,Clearsky DHI Units,Clearsky DNI Units,Clearsky GHI Units,Dew Point Units,DHI Units,DNI Units,GHI Units,Solar Zenith Angle Units,Temperature Units,Pressure Units,Relative Humidity Units,Precipitable Water Units,Wind Direction Units,Wind Speed Units,Cloud Type -15,Cloud Type 0,Cloud Type 1,Cloud Type 2,Cloud Type 3,Cloud Type 4,Cloud Type 5,Cloud Type 6,Cloud Type 7,Cloud Type 8,Cloud Type 9,Cloud Type 10,Cloud Type 11,Cloud Type 12,Fill Flag 0,Fill Flag 1,Fill Flag 2,Fill Flag 3,Fill Flag 4,Fill Flag 5,Surface Albedo Units,Version +NSRDB,149678,-,-,-,40.05,-105.3,-7,1888,-7,w/m2,w/m2,w/m2,c,w/m2,w/m2,w/m2,Degree,c,mbar,%,cm,Degrees,m/s,N/A,Clear,Probably Clear,Fog,Water,Super-Cooled Water,Mixed,Opaque Ice,Cirrus,Overlapping,Overshooting,Unknown,Dust,Smoke,N/A,Missing Image,Low Irradiance,Exceeds Clearsky,Missing CLoud Properties,Rayleigh Violation,N/A,3.0.6 +Year,Month,Day,Hour,Minute,DHI,DNI,Dew Point,Surface Albedo,Wind Speed,Relative Humidity,Temperature,Pressure,GHI +2003,1,1,0,30,0,0,-7,0.133,1.7000000000000002,73.07000000000001,-1,790,0 +2003,1,1,1,30,0,0,-7,0.133,3,71.47,-1,790,0 +2003,1,1,2,30,0,0,-7,0.133,4.1000000000000005,71.91,-1,790,0 +2003,1,1,3,30,0,0,-7,0.133,4.4,73.67,-1,800,0 +2003,1,1,4,30,0,0,-6,0.133,4.4,74.88,-1,800,0 +2003,1,1,5,30,0,0,-6,0.133,4.4,75.62,-1,800,0 +2003,1,1,6,30,0,0,-6,0.133,4.3,75.55,-1,800,0 +2003,1,1,7,30,0,0,-6,0.133,4.1000000000000005,70.3,0,800,0 +2003,1,1,8,30,62,176,-6,0.133,4.4,67.06,0,800,92 +2003,1,1,9,30,51,0,-5,0.133,5.2,65.6,1,800,51 +2003,1,1,10,30,168,59,-5,0.133,6.2,67.42,1,800,192 +2003,1,1,11,30,176,27,-5,0.133,6.300000000000001,66.61,2,800,188 +2003,1,1,12,30,198,298,-5,0.133,5.800000000000001,64.76,2,800,331 +2003,1,1,13,30,88,0,-6,0.133,4.9,62.09,2,800,88 +2003,1,1,14,30,135,80,-6,0.133,3.5,59.33,1,800,160 +2003,1,1,15,30,74,98,-6,0.133,2,64.08,0,800,93 +2003,1,1,16,30,12,0,-7,0.133,1.3,71.13,-1,800,12 +2003,1,1,17,30,0,0,-8,0.133,1.2000000000000002,71.14,-2,810,0 +2003,1,1,18,30,0,0,-9,0.133,1.1,73.4,-3,810,0 +2003,1,1,19,30,0,0,-9,0.133,1.2000000000000002,76.76,-4,810,0 +2003,1,1,20,30,0,0,-9,0.133,1.5,74.46000000000001,-4,810,0 +2003,1,1,21,30,0,0,-10,0.133,2,71.93,-4,810,0 +2003,1,1,22,30,0,0,-10,0.133,2.7,70.01,-4,810,0 +2003,1,1,23,30,0,0,-11,0.133,3.2,67.6,-4,810,0 +2003,1,2,0,30,0,0,-11,0.133,3.7,64.61,-4,810,0 +2003,1,2,1,30,0,0,-12,0.133,4,66.74,-5,810,0 +2003,1,2,2,30,0,0,-12,0.133,4.2,63.980000000000004,-5,800,0 +2003,1,2,3,30,0,0,-13,0.133,4.2,60.19,-4,800,0 +2003,1,2,4,30,0,0,-14,0.133,4.3,52.52,-4,800,0 +2003,1,2,5,30,0,0,-14,0.133,4.4,49.97,-4,800,0 +2003,1,2,6,30,0,0,-15,0.133,4.5,47.51,-4,800,0 +2003,1,2,7,30,0,0,-15,0.133,4.800000000000001,43.76,-3,810,0 +2003,1,2,8,30,60,219,-14,0.133,5.800000000000001,38.85,0,810,97 +2003,1,2,9,30,121,245,-13,0.133,6.4,35.46,2,810,195 +2003,1,2,10,30,52,918,-12,0.133,6.2,36.28,3,810,415 +2003,1,2,11,30,58,938,-10,0.133,5.9,38.4,4,810,477 +2003,1,2,12,30,58,941,-9,0.133,5.6000000000000005,40.28,5,810,482 +2003,1,2,13,30,141,493,-7,0.133,4.9,44.45,5,810,342 +2003,1,2,14,30,114,399,-6,0.133,4.1000000000000005,53,4,810,241 +2003,1,2,15,30,39,708,-6,0.133,3.8000000000000003,62.25,1,810,175 +2003,1,2,16,30,25,0,-7,0.133,4,63.33,0,810,25 +2003,1,2,17,30,0,0,-7,0.133,4.5,65.12,0,810,0 +2003,1,2,18,30,0,0,-8,0.133,5,63.2,0,810,0 +2003,1,2,19,30,0,0,-8,0.133,5.300000000000001,61.800000000000004,0,810,0 +2003,1,2,20,30,0,0,-8,0.133,5.4,61.300000000000004,0,810,0 +2003,1,2,21,30,0,0,-8,0.133,5.300000000000001,61.29,0,810,0 +2003,1,2,22,30,0,0,-8,0.133,5.2,60.78,0,810,0 +2003,1,2,23,30,0,0,-8,0.133,5.1000000000000005,59.74,0,810,0 +2003,1,3,0,30,0,0,-9,0.133,4.9,58.71,0,810,0 +2003,1,3,1,30,0,0,-9,0.133,4.800000000000001,58.07,0,810,0 +2003,1,3,2,30,0,0,-9,0.133,5,57.74,0,810,0 +2003,1,3,3,30,0,0,-9,0.133,5.1000000000000005,57.64,0,810,0 +2003,1,3,4,30,0,0,-9,0.133,5.2,53.53,0,810,0 +2003,1,3,5,30,0,0,-9,0.133,5.2,53.61,0,810,0 +2003,1,3,6,30,0,0,-9,0.133,5.300000000000001,54.13,0,810,0 +2003,1,3,7,30,0,0,-8,0.133,5.4,51.46,1,810,0 +2003,1,3,8,30,55,316,-7,0.133,5.6000000000000005,52.07,3,810,108 +2003,1,3,9,30,102,420,-6,0.133,6,47.06,6,810,228 +2003,1,3,10,30,159,353,-4,0.133,6.300000000000001,45.83,8,810,299 +2003,1,3,11,30,128,612,-3,0.133,6.4,47.4,9,800,402 +2003,1,3,12,30,204,79,-2,0.133,6.1000000000000005,50.45,9,800,240 +2003,1,3,13,30,181,241,-1,0.133,5.300000000000001,57.050000000000004,8,800,280 +2003,1,3,14,30,102,0,-1,0.133,4.6000000000000005,66.77,6,800,102 +2003,1,3,15,30,65,0,-1,0.133,4,70.43,5,810,65 +2003,1,3,16,30,9,0,-2,0.133,3.8000000000000003,78.93,3,810,9 +2003,1,3,17,30,0,0,-2,0.133,3.7,82.4,2,810,0 +2003,1,3,18,30,0,0,-2,0.133,3.7,80.71000000000001,1,810,0 +2003,1,3,19,30,0,0,-3,0.133,3.7,79.27,1,810,0 +2003,1,3,20,30,0,0,-3,0.133,3.7,78.18,1,810,0 +2003,1,3,21,30,0,0,-3,0.133,3.7,77.56,1,810,0 +2003,1,3,22,30,0,0,-3,0.133,3.6,77.06,1,810,0 +2003,1,3,23,30,0,0,-3,0.133,3.4000000000000004,76.46000000000001,1,810,0 +2003,1,4,0,30,0,0,-3,0.133,2.9000000000000004,76.09,0,810,0 +2003,1,4,1,30,0,0,-3,0.133,2.5,81.32000000000001,0,810,0 +2003,1,4,2,30,0,0,-3,0.133,2.2,80.85000000000001,0,810,0 +2003,1,4,3,30,0,0,-4,0.133,2,79.88,0,810,0 +2003,1,4,4,30,0,0,-4,0.133,2,84.33,0,810,0 +2003,1,4,5,30,0,0,-4,0.133,2.1,76.83,0,810,0 +2003,1,4,6,30,0,0,-4,0.133,2.3000000000000003,75.19,0,810,0 +2003,1,4,7,30,0,0,-5,0.133,2.5,68.55,1,810,0 +2003,1,4,8,30,18,0,-4,0.133,2.5,65.55,3,810,18 +2003,1,4,9,30,128,132,-3,0.133,2.5,61.22,5,810,167 +2003,1,4,10,30,125,544,-3,0.133,2.8000000000000003,53.49,7,810,341 +2003,1,4,11,30,138,576,-3,0.133,2.7,49.47,8,810,397 +2003,1,4,12,30,194,336,-3,0.133,2.5,51.25,8,800,347 +2003,1,4,13,30,186,199,-2,0.133,2.3000000000000003,54.02,8,800,268 +2003,1,4,14,30,133,256,-2,0.133,1.7000000000000002,60.14,7,810,216 +2003,1,4,15,30,77,116,-2,0.133,1,72.27,4,810,100 +2003,1,4,16,30,15,0,-2,0.133,0.6000000000000001,80.34,2,810,15 +2003,1,4,17,30,0,0,-3,0.133,0.6000000000000001,79.36,1,810,0 +2003,1,4,18,30,0,0,-3,0.133,0.8,78.61,1,810,0 +2003,1,4,19,30,0,0,-3,0.133,1.4000000000000001,77.61,1,800,0 +2003,1,4,20,30,0,0,-3,0.133,1.9000000000000001,76.19,1,800,0 +2003,1,4,21,30,0,0,-4,0.133,2.3000000000000003,74.36,1,800,0 +2003,1,4,22,30,0,0,-4,0.133,2.6,72.28,1,800,0 +2003,1,4,23,30,0,0,-4,0.133,2.9000000000000004,69.96000000000001,1,800,0 +2003,1,5,0,30,0,0,-5,0.133,3,67.96000000000001,1,800,0 +2003,1,5,1,30,0,0,-5,0.133,3,67.73,1,800,0 +2003,1,5,2,30,0,0,-5,0.133,2.8000000000000003,68.49,1,800,0 +2003,1,5,3,30,0,0,-5,0.133,3,68.42,0,800,0 +2003,1,5,4,30,0,0,-5,0.133,3.5,71.86,0,800,0 +2003,1,5,5,30,0,0,-5,0.133,4.1000000000000005,70.2,0,800,0 +2003,1,5,6,30,0,0,-6,0.133,4.3,68.34,0,800,0 +2003,1,5,7,30,0,0,-6,0.133,4.4,61.64,1,800,0 +2003,1,5,8,30,42,516,-6,0.133,4,59.120000000000005,3,800,128 +2003,1,5,9,30,121,265,-5,0.133,3,55.160000000000004,5,800,201 +2003,1,5,10,30,180,164,-4,0.133,2.3000000000000003,54.36,6,800,245 +2003,1,5,11,30,210,147,-3,0.133,2.5,52.410000000000004,7,800,277 +2003,1,5,12,30,206,264,-3,0.133,3.2,53.19,7,800,326 +2003,1,5,13,30,151,14,-3,0.133,3.4000000000000004,58.17,6,800,157 +2003,1,5,14,30,139,85,-3,0.133,2.9000000000000004,64.05,5,800,167 +2003,1,5,15,30,11,0,-2,0.133,1.9000000000000001,76.87,3,810,11 +2003,1,5,16,30,1,0,-2,0.133,1.3,81.34,1,810,1 +2003,1,5,17,30,0,0,-3,0.133,1.3,86.04,0,810,0 +2003,1,5,18,30,0,0,-2,0.133,1.3,94.47,0,810,0 +2003,1,5,19,30,0,0,-3,0.133,1.2000000000000002,100,-1,810,0 +2003,1,5,20,30,0,0,-3,0.133,1.2000000000000002,100,-1,810,0 +2003,1,5,21,30,0,0,-3,0.133,1.1,100,-1,810,0 +2003,1,5,22,30,0,0,-3,0.133,1.1,100,-1,810,0 +2003,1,5,23,30,0,0,-3,0.133,1.2000000000000002,100,-1,810,0 +2003,1,6,0,30,0,0,-4,0.133,1.2000000000000002,100,-2,810,0 +2003,1,6,1,30,0,0,-4,0.133,1,100,-2,810,0 +2003,1,6,2,30,0,0,-4,0.133,0.8,100,-2,810,0 +2003,1,6,3,30,0,0,-4,0.133,0.8,100,-2,810,0 +2003,1,6,4,30,0,0,-4,0.133,0.8,100,-2,810,0 +2003,1,6,5,30,0,0,-5,0.133,0.9,100,-2,810,0 +2003,1,6,6,30,0,0,-5,0.133,0.8,100,-3,810,0 +2003,1,6,7,30,0,0,-5,0.133,1,82.4,-1,810,0 +2003,1,6,8,30,38,651,-5,0.133,1.2000000000000002,70.43,1,810,147 +2003,1,6,9,30,51,828,-4,0.133,1.2000000000000002,66.59,3,810,301 +2003,1,6,10,30,58,909,-4,0.133,1.1,58.9,5,810,420 +2003,1,6,11,30,58,951,-4,0.133,0.6000000000000001,52.35,6,810,488 +2003,1,6,12,30,56,962,-5,0.133,0.4,51.300000000000004,7,810,497 +2003,1,6,13,30,52,945,-5,0.133,0.6000000000000001,46.07,7,810,445 +2003,1,6,14,30,48,882,-6,0.133,0.5,48.07,6,810,338 +2003,1,6,15,30,38,744,-5,0.133,0.30000000000000004,64.1,3,810,189 +2003,1,6,16,30,16,376,-6,0.133,0.5,68.1,1,810,33 +2003,1,6,17,30,0,0,-6,0.133,0.9,69.27,0,810,0 +2003,1,6,18,30,0,0,-7,0.133,1.7000000000000002,72.12,-1,810,0 +2003,1,6,19,30,0,0,-8,0.133,2.7,71.92,-2,810,0 +2003,1,6,20,30,0,0,-9,0.133,3.5,64.33,-2,810,0 +2003,1,6,21,30,0,0,-11,0.133,3.6,58.050000000000004,-2,810,0 +2003,1,6,22,30,0,0,-11,0.133,2.9000000000000004,54.64,-2,810,0 +2003,1,6,23,30,0,0,-12,0.133,2.6,52.49,-2,810,0 +2003,1,7,0,30,0,0,-12,0.133,3,46.7,-1,810,0 +2003,1,7,1,30,0,0,-13,0.133,3.3000000000000003,44.65,-1,810,0 +2003,1,7,2,30,0,0,-13,0.133,3.4000000000000004,42.59,-1,810,0 +2003,1,7,3,30,0,0,-14,0.133,3.4000000000000004,40.89,-1,810,0 +2003,1,7,4,30,0,0,-14,0.133,3.1,39.81,-1,810,0 +2003,1,7,5,30,0,0,-14,0.133,2.8000000000000003,39.46,-1,810,0 +2003,1,7,6,30,0,0,-14,0.133,2.7,36.84,0,810,0 +2003,1,7,7,30,0,0,-14,0.133,3,32.69,1,810,0 +2003,1,7,8,30,34,707,-12,0.133,3.6,33.42,4,810,153 +2003,1,7,9,30,46,869,-10,0.133,3.7,31.5,7,810,309 +2003,1,7,10,30,52,939,-9,0.133,3,28.55,10,810,428 +2003,1,7,11,30,55,970,-8,0.133,2.3000000000000003,26.080000000000002,12,810,495 +2003,1,7,12,30,56,971,-8,0.133,1.9000000000000001,24.79,13,810,503 +2003,1,7,13,30,54,946,-7,0.133,1.4000000000000001,26.01,13,810,450 +2003,1,7,14,30,48,889,-4,0.133,0.7000000000000001,34.56,12,810,343 +2003,1,7,15,30,38,758,-2,0.133,0.6000000000000001,49.29,9,810,194 +2003,1,7,16,30,16,394,-6,0.133,0.9,50.85,5,810,35 +2003,1,7,17,30,0,0,-7,0.133,1.4000000000000001,53.82,3,810,0 +2003,1,7,18,30,0,0,-7,0.133,2,56.28,2,810,0 +2003,1,7,19,30,0,0,-8,0.133,2.7,54.65,2,810,0 +2003,1,7,20,30,0,0,-8,0.133,3,51.31,1,810,0 +2003,1,7,21,30,0,0,-10,0.133,2.9000000000000004,46.89,1,810,0 +2003,1,7,22,30,0,0,-10,0.133,2.9000000000000004,43.89,1,810,0 +2003,1,7,23,30,0,0,-11,0.133,3.2,42.67,1,810,0 +2003,1,8,0,30,0,0,-11,0.133,3.7,42.07,2,810,0 +2003,1,8,1,30,0,0,-11,0.133,4.1000000000000005,42.32,2,810,0 +2003,1,8,2,30,0,0,-10,0.133,4.3,43.7,2,810,0 +2003,1,8,3,30,0,0,-10,0.133,4.5,45.07,2,810,0 +2003,1,8,4,30,0,0,-10,0.133,4.6000000000000005,45.49,2,810,0 +2003,1,8,5,30,0,0,-10,0.133,4.9,44.02,1,810,0 +2003,1,8,6,30,0,0,-11,0.133,5.1000000000000005,42,1,810,0 +2003,1,8,7,30,0,0,-11,0.133,5.5,37.71,3,810,0 +2003,1,8,8,30,33,741,-10,0.133,5.7,32.74,6,810,158 +2003,1,8,9,30,45,899,-9,0.133,5.2,30.03,9,810,318 +2003,1,8,10,30,50,967,-8,0.133,4.3,27.03,12,800,439 +2003,1,8,11,30,53,996,-8,0.133,3.3000000000000003,23.61,14,800,507 +2003,1,8,12,30,53,998,-8,0.133,2.1,21.32,15,800,515 +2003,1,8,13,30,51,974,-8,0.133,1.1,22.89,14,800,461 +2003,1,8,14,30,46,918,-6,0.133,0.6000000000000001,31.39,12,800,353 +2003,1,8,15,30,36,792,-3,0.133,0.4,48.45,9,800,201 +2003,1,8,16,30,16,443,-6,0.133,0.30000000000000004,50.88,5,800,39 +2003,1,8,17,30,0,0,-7,0.14100000000000001,0.2,59.08,2,800,0 +2003,1,8,18,30,0,0,-7,0.14100000000000001,0.8,57.21,1,800,0 +2003,1,8,19,30,0,0,-8,0.14100000000000001,1.7000000000000002,53.79,1,800,0 +2003,1,8,20,30,0,0,-9,0.14100000000000001,2.1,50.68,0,800,0 +2003,1,8,21,30,0,0,-9,0.14100000000000001,1.9000000000000001,52.050000000000004,0,800,0 +2003,1,8,22,30,0,0,-10,0.14100000000000001,1.6,54.24,0,800,0 +2003,1,8,23,30,0,0,-10,0.14100000000000001,1.4000000000000001,57.33,-1,800,0 +2003,1,9,0,30,0,0,-10,0.14100000000000001,1.2000000000000002,60.99,-2,800,0 +2003,1,9,1,30,0,0,-10,0.14100000000000001,1.1,60.160000000000004,-2,800,0 +2003,1,9,2,30,0,0,-10,0.14100000000000001,1,58.9,-2,800,0 +2003,1,9,3,30,0,0,-11,0.14100000000000001,0.9,57.69,-2,800,0 +2003,1,9,4,30,0,0,-11,0.14100000000000001,1.4000000000000001,57.32,-2,800,0 +2003,1,9,5,30,0,0,-11,0.14100000000000001,2,58.160000000000004,-2,800,0 +2003,1,9,6,30,0,0,-10,0.14100000000000001,2.1,70.03,-4,800,0 +2003,1,9,7,30,0,0,-10,0.14100000000000001,2.3000000000000003,71.68,-4,800,0 +2003,1,9,8,30,60,1,-10,0.14100000000000001,2.6,60.050000000000004,-2,810,60 +2003,1,9,9,30,120,32,-11,0.14100000000000001,2.5,49.01,0,810,130 +2003,1,9,10,30,181,103,-11,0.14100000000000001,2.4000000000000004,42.34,1,800,223 +2003,1,9,11,30,170,474,-10,0.14100000000000001,2.7,43.44,2,800,387 +2003,1,9,12,30,67,942,-10,0.14100000000000001,3,41.64,3,800,505 +2003,1,9,13,30,66,911,-10,0.14100000000000001,3.4000000000000004,45.63,2,800,451 +2003,1,9,14,30,63,830,-10,0.14100000000000001,3.4000000000000004,45.77,1,800,342 +2003,1,9,15,30,49,684,-10,0.14100000000000001,2.3000000000000003,52.61,0,800,193 +2003,1,9,16,30,21,305,-10,0.14100000000000001,1.3,60.620000000000005,-2,800,37 +2003,1,9,17,30,0,0,-10,0.14100000000000001,0.9,63.03,-3,800,0 +2003,1,9,18,30,0,0,-10,0.14100000000000001,0.6000000000000001,68.46000000000001,-4,800,0 +2003,1,9,19,30,0,0,-10,0.14100000000000001,0.6000000000000001,69.09,-4,800,0 +2003,1,9,20,30,0,0,-10,0.14100000000000001,0.6000000000000001,69.36,-4,800,0 +2003,1,9,21,30,0,0,-10,0.14100000000000001,0.8,69.35000000000001,-4,800,0 +2003,1,9,22,30,0,0,-10,0.14100000000000001,0.9,74.2,-5,800,0 +2003,1,9,23,30,0,0,-11,0.14100000000000001,0.8,73.13,-5,800,0 +2003,1,10,0,30,0,0,-11,0.14100000000000001,0.9,72.39,-5,800,0 +2003,1,10,1,30,0,0,-11,0.14100000000000001,1.1,72.3,-5,800,0 +2003,1,10,2,30,0,0,-10,0.14100000000000001,1.2000000000000002,67.95,-4,800,0 +2003,1,10,3,30,0,0,-10,0.14100000000000001,1.3,70.67,-4,800,0 +2003,1,10,4,30,0,0,-10,0.14100000000000001,1.2000000000000002,71.56,-4,800,0 +2003,1,10,5,30,0,0,-10,0.14100000000000001,1.1,71.68,-4,800,0 +2003,1,10,6,30,0,0,-10,0.14100000000000001,1,66.87,-3,800,0 +2003,1,10,7,30,0,0,-10,0.14100000000000001,1,62.64,-2,800,0 +2003,1,10,8,30,12,0,-9,0.14100000000000001,1.3,61.050000000000004,-1,800,12 +2003,1,10,9,30,26,0,-8,0.14100000000000001,1.6,61.31,0,800,26 +2003,1,10,10,30,152,18,-7,0.14100000000000001,1.3,61.17,0,800,160 +2003,1,10,11,30,189,383,-6,0.14100000000000001,0.7000000000000001,60.4,0,800,366 +2003,1,10,12,30,196,369,-6,0.14100000000000001,0.5,63.64,1,800,368 +2003,1,10,13,30,192,229,-5,0.14100000000000001,0.5,66.22,1,800,290 +2003,1,10,14,30,130,356,-5,0.14100000000000001,0.7000000000000001,67.22,0,800,251 +2003,1,10,15,30,54,631,-5,0.14100000000000001,0.9,73.24,0,800,189 +2003,1,10,16,30,22,283,-5,0.14100000000000001,1,83.24,-1,800,38 +2003,1,10,17,30,0,0,-5,0.14100000000000001,0.9,87.11,-2,800,0 +2003,1,10,18,30,0,0,-6,0.14100000000000001,0.9,85.34,-2,800,0 +2003,1,10,19,30,0,0,-6,0.14100000000000001,1,90.19,-2,800,0 +2003,1,10,20,30,0,0,-6,0.14100000000000001,1,88.84,-3,800,0 +2003,1,10,21,30,0,0,-6,0.14100000000000001,1,87.71000000000001,-3,800,0 +2003,1,10,22,30,0,0,-6,0.14100000000000001,0.9,86.16,-3,800,0 +2003,1,10,23,30,0,0,-7,0.14100000000000001,0.7000000000000001,84.37,-3,800,0 +2003,1,11,0,30,0,0,-7,0.14100000000000001,0.8,82.47,-3,800,0 +2003,1,11,1,30,0,0,-7,0.14100000000000001,1,81.16,-3,800,0 +2003,1,11,2,30,0,0,-7,0.14100000000000001,1,74.91,-2,800,0 +2003,1,11,3,30,0,0,-7,0.14100000000000001,0.9,74.98,-2,800,0 +2003,1,11,4,30,0,0,-7,0.14100000000000001,0.6000000000000001,74.97,-2,800,0 +2003,1,11,5,30,0,0,-7,0.14100000000000001,0.30000000000000004,74.81,-2,800,0 +2003,1,11,6,30,0,0,-7,0.14100000000000001,0.30000000000000004,79.91,-3,800,0 +2003,1,11,7,30,0,0,-7,0.14100000000000001,0.5,74.01,-2,800,0 +2003,1,11,8,30,61,6,-7,0.14100000000000001,0.8,66.78,0,800,62 +2003,1,11,9,30,111,384,-6,0.14100000000000001,1.3,65.7,0,800,229 +2003,1,11,10,30,148,453,-6,0.14100000000000001,1.6,63.43,0,800,332 +2003,1,11,11,30,205,297,-5,0.14100000000000001,1.9000000000000001,64.06,1,800,342 +2003,1,11,12,30,204,328,-6,0.14100000000000001,2.2,63.79,1,800,358 +2003,1,11,13,30,151,495,-6,0.14100000000000001,2.4000000000000004,63.84,1,800,363 +2003,1,11,14,30,80,734,-5,0.14100000000000001,2.4000000000000004,64.45,1,800,332 +2003,1,11,15,30,79,285,-5,0.14100000000000001,2,70.51,0,800,141 +2003,1,11,16,30,22,34,-5,0.14100000000000001,1.8,76.03,0,800,24 +2003,1,11,17,30,0,0,-5,0.14100000000000001,1.3,81.68,-1,800,0 +2003,1,11,18,30,0,0,-5,0.14100000000000001,0.8,81.86,-1,800,0 +2003,1,11,19,30,0,0,-5,0.14100000000000001,0.4,81.61,-1,800,0 +2003,1,11,20,30,0,0,-5,0.14100000000000001,0.4,86.60000000000001,-2,800,0 +2003,1,11,21,30,0,0,-6,0.14100000000000001,0.6000000000000001,90.53,-3,800,0 +2003,1,11,22,30,0,0,-6,0.14100000000000001,1.1,86.91,-3,800,0 +2003,1,11,23,30,0,0,-7,0.14100000000000001,1.7000000000000002,88.8,-3,800,0 +2003,1,12,0,30,0,0,-8,0.14100000000000001,2.3000000000000003,83.42,-4,800,0 +2003,1,12,1,30,0,0,-9,0.14100000000000001,2.9000000000000004,78.61,-4,800,0 +2003,1,12,2,30,0,0,-9,0.14100000000000001,3.2,74.36,-4,800,0 +2003,1,12,3,30,0,0,-10,0.14100000000000001,3.4000000000000004,72.81,-4,800,0 +2003,1,12,4,30,0,0,-9,0.14100000000000001,3.6,68.16,-3,800,0 +2003,1,12,5,30,0,0,-9,0.14100000000000001,3.9000000000000004,69.4,-3,800,0 +2003,1,12,6,30,0,0,-9,0.14100000000000001,4.1000000000000005,70.55,-3,800,0 +2003,1,12,7,30,0,0,-9,0.14100000000000001,4.4,66.26,-2,810,0 +2003,1,12,8,30,37,716,-8,0.14100000000000001,4.800000000000001,56.31,0,810,160 +2003,1,12,9,30,49,882,-7,0.14100000000000001,5,51.17,3,810,322 +2003,1,12,10,30,55,955,-8,0.14100000000000001,4.3,46.88,4,810,446 +2003,1,12,11,30,60,979,-8,0.14100000000000001,3.5,42.65,5,810,515 +2003,1,12,12,30,61,982,-8,0.14100000000000001,2.8000000000000003,39.29,6,810,525 +2003,1,12,13,30,59,958,-8,0.14100000000000001,2.3000000000000003,42.24,5,810,473 +2003,1,12,14,30,57,887,-7,0.14100000000000001,1.5,50.75,4,810,363 +2003,1,12,15,30,45,757,-7,0.14100000000000001,0.7000000000000001,58.58,2,810,212 +2003,1,12,16,30,21,410,-7,0.14100000000000001,0.6000000000000001,60.61,0,810,47 +2003,1,12,17,30,0,0,-7,0.14100000000000001,0.9,65.11,0,810,0 +2003,1,12,18,30,0,0,-7,0.14100000000000001,1.1,66.17,0,810,0 +2003,1,12,19,30,0,0,-7,0.14100000000000001,1.4000000000000001,66.66,0,810,0 +2003,1,12,20,30,0,0,-7,0.14100000000000001,1.5,66.87,0,810,0 +2003,1,12,21,30,0,0,-7,0.14100000000000001,1.7000000000000002,66.5,0,810,0 +2003,1,12,22,30,0,0,-7,0.14100000000000001,2.3000000000000003,65.33,0,810,0 +2003,1,12,23,30,0,0,-7,0.14100000000000001,3,64.14,0,810,0 +2003,1,13,0,30,0,0,-8,0.14100000000000001,3.3000000000000003,62.940000000000005,0,810,0 +2003,1,13,1,30,0,0,-8,0.14100000000000001,3.4000000000000004,62.190000000000005,0,810,0 +2003,1,13,2,30,0,0,-8,0.14100000000000001,3.6,62.82,0,810,0 +2003,1,13,3,30,0,0,-7,0.14100000000000001,3.8000000000000003,63.82,0,810,0 +2003,1,13,4,30,0,0,-7,0.14100000000000001,4.1000000000000005,65.11,0,810,0 +2003,1,13,5,30,0,0,-7,0.14100000000000001,4.3,66.02,0,810,0 +2003,1,13,6,30,0,0,-7,0.14100000000000001,4.5,66.5,0,810,0 +2003,1,13,7,30,0,0,-7,0.14100000000000001,4.5,62.190000000000005,0,810,0 +2003,1,13,8,30,67,108,-6,0.14100000000000001,4.5,57.19,2,810,86 +2003,1,13,9,30,132,160,-5,0.14100000000000001,4.800000000000001,52.82,5,810,182 +2003,1,13,10,30,56,918,-5,0.14100000000000001,5,46.08,7,810,433 +2003,1,13,11,30,62,941,-5,0.14100000000000001,5,45.1,8,810,501 +2003,1,13,12,30,67,932,-4,0.14100000000000001,4.800000000000001,43.57,9,810,509 +2003,1,13,13,30,23,0,-3,0.14100000000000001,4.1000000000000005,48.77,8,810,23 +2003,1,13,14,30,103,568,-3,0.14100000000000001,3.1,58.86,6,810,301 +2003,1,13,15,30,56,551,-3,0.14100000000000001,2.1,71.73,3,810,179 +2003,1,13,16,30,24,170,-3,0.14100000000000001,1.6,74.95,1,810,35 +2003,1,13,17,30,0,0,-4,0.14100000000000001,1.5,79.88,0,810,0 +2003,1,13,18,30,0,0,-4,0.14100000000000001,1.6,79.4,0,810,0 +2003,1,13,19,30,0,0,-4,0.14100000000000001,1.9000000000000001,78.26,0,810,0 +2003,1,13,20,30,0,0,-4,0.14100000000000001,2.3000000000000003,76.38,0,810,0 +2003,1,13,21,30,0,0,-5,0.14100000000000001,2.6,79.59,0,810,0 +2003,1,13,22,30,0,0,-5,0.14100000000000001,2.6,76.99,0,810,0 +2003,1,13,23,30,0,0,-6,0.14100000000000001,2.2,74.08,0,810,0 +2003,1,14,0,30,0,0,-6,0.14100000000000001,1.7000000000000002,69.82000000000001,0,810,0 +2003,1,14,1,30,0,0,-7,0.14100000000000001,1.3,65.91,0,810,0 +2003,1,14,2,30,0,0,-7,0.14100000000000001,0.9,63.64,0,810,0 +2003,1,14,3,30,0,0,-8,0.14100000000000001,0.6000000000000001,62.39,0,810,0 +2003,1,14,4,30,0,0,-8,0.14100000000000001,0.4,62.300000000000004,0,810,0 +2003,1,14,5,30,0,0,-8,0.14100000000000001,0.4,62.980000000000004,0,810,0 +2003,1,14,6,30,0,0,-7,0.14100000000000001,0.6000000000000001,64.62,0,810,0 +2003,1,14,7,30,0,0,-7,0.14100000000000001,1,63.06,0,810,0 +2003,1,14,8,30,48,463,-5,0.14100000000000001,1.1,64.31,2,810,129 +2003,1,14,9,30,110,4,-5,0.14100000000000001,1.1,59.730000000000004,4,810,112 +2003,1,14,10,30,63,891,-4,0.14100000000000001,1.5,50.89,7,810,431 +2003,1,14,11,30,66,930,-4,0.14100000000000001,1.8,48.15,8,810,502 +2003,1,14,12,30,69,928,-4,0.14100000000000001,1.6,45.09,9,810,512 +2003,1,14,13,30,69,896,-4,0.14100000000000001,1,45.09,9,810,461 +2003,1,14,14,30,113,501,-3,0.14100000000000001,0.30000000000000004,53.65,7,810,290 +2003,1,14,15,30,85,258,-2,0.14100000000000001,0.2,70.43,4,810,143 +2003,1,14,16,30,26,102,-4,0.14100000000000001,0.4,73.8,2,810,33 +2003,1,14,17,30,0,0,-4,0.14100000000000001,0.5,72.27,1,810,0 +2003,1,14,18,30,0,0,-4,0.14100000000000001,0.4,73.22,1,800,0 +2003,1,14,19,30,0,0,-4,0.14100000000000001,0.4,73.56,1,800,0 +2003,1,14,20,30,0,0,-4,0.14100000000000001,0.6000000000000001,72.98,1,800,0 +2003,1,14,21,30,0,0,-4,0.14100000000000001,1,71.71000000000001,1,800,0 +2003,1,14,22,30,0,0,-4,0.14100000000000001,1.4000000000000001,69.75,1,800,0 +2003,1,14,23,30,0,0,-5,0.14100000000000001,1.7000000000000002,67.77,0,800,0 +2003,1,15,0,30,0,0,-5,0.14100000000000001,1.8,71.12,0,800,0 +2003,1,15,1,30,0,0,-5,0.14100000000000001,1.7000000000000002,70.09,0,800,0 +2003,1,15,2,30,0,0,-5,0.14100000000000001,1.7000000000000002,69.76,0,800,0 +2003,1,15,3,30,0,0,-5,0.14100000000000001,1.7000000000000002,74.8,0,800,0 +2003,1,15,4,30,0,0,-5,0.14100000000000001,1.7000000000000002,74.39,0,800,0 +2003,1,15,5,30,0,0,-6,0.14100000000000001,1.6,73.91,0,800,0 +2003,1,15,6,30,0,0,-6,0.14100000000000001,1.6,73.38,0,800,0 +2003,1,15,7,30,0,0,-6,0.14100000000000001,1.9000000000000001,67.87,0,800,0 +2003,1,15,8,30,42,649,-5,0.14100000000000001,3,64.81,2,800,156 +2003,1,15,9,30,122,315,-5,0.14100000000000001,5,56.18,4,800,221 +2003,1,15,10,30,75,858,-6,0.14100000000000001,6.5,51.2,5,800,431 +2003,1,15,11,30,70,925,-6,0.14100000000000001,6.5,46.42,6,800,506 +2003,1,15,12,30,81,0,-7,0.14100000000000001,6.800000000000001,47.480000000000004,5,800,81 +2003,1,15,13,30,129,0,-8,0.14100000000000001,8,50.63,3,800,129 +2003,1,15,14,30,156,172,-9,0.14100000000000001,7.800000000000001,50.2,1,800,217 +2003,1,15,15,30,21,0,-10,0.14100000000000001,5.9,51.61,0,800,21 +2003,1,15,16,30,25,12,-11,0.14100000000000001,4.2,52.42,-1,800,25 +2003,1,15,17,30,0,0,-11,0.14100000000000001,3.3000000000000003,56.42,-2,810,0 +2003,1,15,18,30,0,0,-11,0.14100000000000001,3,60.370000000000005,-3,810,0 +2003,1,15,19,30,0,0,-11,0.14100000000000001,2.9000000000000004,63.92,-4,810,0 +2003,1,15,20,30,0,0,-12,0.14100000000000001,3,66.97,-4,810,0 +2003,1,15,21,30,0,0,-12,0.14100000000000001,3.1,64.26,-5,810,0 +2003,1,15,22,30,0,0,-13,0.14100000000000001,3.1,61.11,-5,810,0 +2003,1,15,23,30,0,0,-13,0.14100000000000001,3,58.38,-5,810,0 +2003,1,16,0,30,0,0,-14,0.14100000000000001,2.7,61.01,-6,810,0 +2003,1,16,1,30,0,0,-14,0.14100000000000001,2.3000000000000003,59.660000000000004,-6,810,0 +2003,1,16,2,30,0,0,-14,0.14100000000000001,2.1,58.95,-6,810,0 +2003,1,16,3,30,0,0,-14,0.14100000000000001,1.8,58.72,-6,810,0 +2003,1,16,4,30,0,0,-14,0.14100000000000001,1.5,58.92,-6,810,0 +2003,1,16,5,30,0,0,-14,0.14100000000000001,1.2000000000000002,63.89,-6,810,0 +2003,1,16,6,30,0,0,-14,0.14100000000000001,1.1,58.99,-6,810,0 +2003,1,16,7,30,0,0,-14,0.14100000000000001,1.3,54.47,-5,810,0 +2003,1,16,8,30,67,174,-14,0.14100000000000001,2.1,46.26,-3,810,98 +2003,1,16,9,30,96,511,-15,0.14100000000000001,2.8000000000000003,38.32,-1,810,258 +2003,1,16,10,30,94,702,-15,0.14100000000000001,3.2,31.25,0,810,387 +2003,1,16,11,30,61,978,-16,0.14100000000000001,3.4000000000000004,27.91,1,810,524 +2003,1,16,12,30,61,982,-16,0.14100000000000001,3.5,27.34,2,810,535 +2003,1,16,13,30,58,960,-16,0.14100000000000001,3.4000000000000004,27.67,2,810,484 +2003,1,16,14,30,127,433,-15,0.14100000000000001,2.6,28.96,1,810,283 +2003,1,16,15,30,80,357,-14,0.14100000000000001,1.5,37.11,-1,810,163 +2003,1,16,16,30,26,221,-13,0.14100000000000001,1,49.51,-2,810,43 +2003,1,16,17,30,0,0,-13,0.135,1.2000000000000002,52.31,-2,810,0 +2003,1,16,18,30,0,0,-12,0.135,1.6,55.51,-3,810,0 +2003,1,16,19,30,0,0,-11,0.135,1.7000000000000002,58.79,-3,810,0 +2003,1,16,20,30,0,0,-12,0.135,1.7000000000000002,57.93,-3,810,0 +2003,1,16,21,30,0,0,-11,0.135,1.5,59.36,-3,810,0 +2003,1,16,22,30,0,0,-11,0.135,1.3,60.53,-3,810,0 +2003,1,16,23,30,0,0,-11,0.135,1.1,61.19,-3,810,0 +2003,1,17,0,30,0,0,-11,0.135,0.9,61.63,-3,810,0 +2003,1,17,1,30,0,0,-10,0.135,0.8,67.96000000000001,-4,810,0 +2003,1,17,2,30,0,0,-10,0.135,0.4,68.22,-4,810,0 +2003,1,17,3,30,0,0,-11,0.135,0.2,66.87,-4,810,0 +2003,1,17,4,30,0,0,-11,0.135,0.30000000000000004,66.02,-4,810,0 +2003,1,17,5,30,0,0,-11,0.135,0.30000000000000004,69.97,-5,810,0 +2003,1,17,6,30,0,0,-11,0.135,0.4,69.64,-5,810,0 +2003,1,17,7,30,0,0,-11,0.135,1.1,63.83,-4,810,0 +2003,1,17,8,30,64,257,-11,0.135,2.2,51.17,-1,810,110 +2003,1,17,9,30,121,338,-11,0.135,3.2,45.1,0,810,229 +2003,1,17,10,30,147,490,-11,0.135,4,40.58,0,810,353 +2003,1,17,11,30,139,614,-12,0.135,4.5,39.47,1,810,432 +2003,1,17,12,30,150,588,-12,0.135,4.9,38.61,2,810,436 +2003,1,17,13,30,62,960,-12,0.135,5,38.480000000000004,2,810,491 +2003,1,17,14,30,126,451,-12,0.135,4.2,39,1,810,289 +2003,1,17,15,30,48,771,-11,0.135,2.6,44.78,0,810,230 +2003,1,17,16,30,25,476,-10,0.135,1.7000000000000002,58.76,-2,810,62 +2003,1,17,17,30,0,0,-10,0.135,1.7000000000000002,63.22,-3,810,0 +2003,1,17,18,30,0,0,-10,0.135,2.1,63.980000000000004,-3,810,0 +2003,1,17,19,30,0,0,-10,0.135,2.4000000000000004,63.92,-3,810,0 +2003,1,17,20,30,0,0,-10,0.135,2.5,62.82,-3,810,0 +2003,1,17,21,30,0,0,-11,0.135,2.4000000000000004,61.050000000000004,-3,810,0 +2003,1,17,22,30,0,0,-11,0.135,2.3000000000000003,63.25,-4,810,0 +2003,1,17,23,30,0,0,-12,0.135,2.3000000000000003,64.79,-5,810,0 +2003,1,18,0,30,0,0,-12,0.135,2.2,63.03,-5,810,0 +2003,1,18,1,30,0,0,-13,0.135,2,61.97,-5,810,0 +2003,1,18,2,30,0,0,-13,0.135,2.1,62.29,-5,810,0 +2003,1,18,3,30,0,0,-12,0.135,2.3000000000000003,63.33,-5,800,0 +2003,1,18,4,30,0,0,-13,0.135,2.4000000000000004,61.64,-5,800,0 +2003,1,18,5,30,0,0,-13,0.135,2.5,59.67,-5,800,0 +2003,1,18,6,30,0,0,-13,0.135,3,58.300000000000004,-5,800,0 +2003,1,18,7,30,0,0,-13,0.135,3.5,49.660000000000004,-3,800,0 +2003,1,18,8,30,67,225,-13,0.135,4.4,40.2,-1,800,108 +2003,1,18,9,30,77,634,-13,0.135,5.5,36.71,1,800,280 +2003,1,18,10,30,61,911,-11,0.135,6.2,37.56,3,800,446 +2003,1,18,11,30,72,917,-10,0.135,6.1000000000000005,39.67,4,800,512 +2003,1,18,12,30,70,929,-9,0.135,5.9,40.9,5,800,525 +2003,1,18,13,30,66,912,-8,0.135,5.6000000000000005,43.99,5,800,477 +2003,1,18,14,30,57,867,-7,0.135,4.7,50.01,4,800,374 +2003,1,18,15,30,46,750,-6,0.135,3.6,61.42,2,800,226 +2003,1,18,16,30,24,450,-6,0.135,2.9000000000000004,60.51,0,800,62 +2003,1,18,17,30,0,0,-7,0.135,2.5,63.51,0,800,0 +2003,1,18,18,30,0,0,-7,0.135,2,67.35,0,800,0 +2003,1,18,19,30,0,0,-7,0.135,1.9000000000000001,66.09,0,800,0 +2003,1,18,20,30,0,0,-7,0.135,2.5,64.75,0,800,0 +2003,1,18,21,30,0,0,-8,0.135,3,68.12,-1,800,0 +2003,1,18,22,30,0,0,-8,0.135,3.3000000000000003,67.01,-1,800,0 +2003,1,18,23,30,0,0,-8,0.135,3.7,66.39,-1,800,0 +2003,1,19,0,30,0,0,-8,0.135,4.1000000000000005,66.11,-1,800,0 +2003,1,19,1,30,0,0,-8,0.135,4.6000000000000005,61.34,0,800,0 +2003,1,19,2,30,0,0,-8,0.135,5.1000000000000005,61.18,0,800,0 +2003,1,19,3,30,0,0,-8,0.135,5.4,61.02,0,800,0 +2003,1,19,4,30,0,0,-8,0.135,5.6000000000000005,56.57,0,800,0 +2003,1,19,5,30,0,0,-8,0.135,5.6000000000000005,56.08,0,800,0 +2003,1,19,6,30,0,0,-8,0.135,5.6000000000000005,55.03,0,800,0 +2003,1,19,7,30,0,0,-9,0.135,6,50.33,1,800,0 +2003,1,19,8,30,38,729,-8,0.135,6.5,45.15,4,800,172 +2003,1,19,9,30,52,889,-8,0.135,7.1000000000000005,39.980000000000004,6,800,339 +2003,1,19,10,30,60,958,-8,0.135,7.5,34.660000000000004,8,800,467 +2003,1,19,11,30,65,987,-8,0.135,7.4,31.26,9,800,542 +2003,1,19,12,30,117,721,-8,0.135,6.800000000000001,29.51,10,800,473 +2003,1,19,13,30,180,414,-7,0.135,5.9,33.56,9,800,368 +2003,1,19,14,30,118,0,-6,0.135,5.2,39.25,8,800,118 +2003,1,19,15,30,82,383,-6,0.135,5.2,51.11,5,800,175 +2003,1,19,16,30,31,52,-6,0.135,5.6000000000000005,58.7,3,800,35 +2003,1,19,17,30,0,0,-6,0.135,6,60.300000000000004,2,800,0 +2003,1,19,18,30,0,0,-7,0.135,5.800000000000001,56.42,1,800,0 +2003,1,19,19,30,0,0,-8,0.135,5.4,52.28,1,800,0 +2003,1,19,20,30,0,0,-9,0.135,5.2,49.52,1,800,0 +2003,1,19,21,30,0,0,-9,0.135,5.300000000000001,48,1,800,0 +2003,1,19,22,30,0,0,-9,0.135,5.7,47.24,1,800,0 +2003,1,19,23,30,0,0,-9,0.135,6.2,47.17,1,800,0 +2003,1,20,0,30,0,0,-9,0.135,6.5,47.78,1,800,0 +2003,1,20,1,30,0,0,-9,0.135,6.5,48.980000000000004,1,800,0 +2003,1,20,2,30,0,0,-9,0.135,6.4,50.67,1,800,0 +2003,1,20,3,30,0,0,-8,0.135,6.4,51.89,1,800,0 +2003,1,20,4,30,0,0,-8,0.135,6.300000000000001,52.36,1,800,0 +2003,1,20,5,30,0,0,-8,0.135,6,52.04,0,800,0 +2003,1,20,6,30,0,0,-8,0.135,5.800000000000001,51.52,0,800,0 +2003,1,20,7,30,10,0,-8,0.135,5.800000000000001,51.480000000000004,2,800,10 +2003,1,20,8,30,64,306,-8,0.135,5.800000000000001,46.85,4,800,121 +2003,1,20,9,30,116,405,-7,0.135,5.800000000000001,39.37,7,800,248 +2003,1,20,10,30,161,441,-8,0.135,6.1000000000000005,33.29,9,800,349 +2003,1,20,11,30,228,113,-8,0.135,6.5,30.26,10,800,284 +2003,1,20,12,30,203,33,-8,0.135,6.5,29.02,11,800,220 +2003,1,20,13,30,165,14,-7,0.135,6.2,32.54,10,800,172 +2003,1,20,14,30,132,8,-6,0.135,5.2,37.81,9,800,135 +2003,1,20,15,30,40,0,-4,0.135,3.7,54.120000000000005,6,800,40 +2003,1,20,16,30,22,0,-3,0.135,2.8000000000000003,64.94,4,800,22 +2003,1,20,17,30,0,0,-4,0.135,2.5,73.63,2,800,0 +2003,1,20,18,30,0,0,-4,0.135,2.5,72.3,1,800,0 +2003,1,20,19,30,0,0,-4,0.135,2.6,70.39,1,800,0 +2003,1,20,20,30,0,0,-5,0.135,2.7,67.68,0,800,0 +2003,1,20,21,30,0,0,-5,0.135,2.7,69.39,0,800,0 +2003,1,20,22,30,0,0,-6,0.135,2.4000000000000004,66.27,0,800,0 +2003,1,20,23,30,0,0,-6,0.135,1.6,64.18,0,800,0 +2003,1,21,0,30,0,0,-7,0.135,0.7000000000000001,68.36,0,800,0 +2003,1,21,1,30,0,0,-7,0.135,0.4,68.61,0,800,0 +2003,1,21,2,30,0,0,-6,0.135,0.6000000000000001,74.21000000000001,-1,800,0 +2003,1,21,3,30,0,0,-6,0.135,1,74.39,-1,800,0 +2003,1,21,4,30,0,0,-6,0.135,1.2000000000000002,74.43,-1,800,0 +2003,1,21,5,30,0,0,-6,0.135,1.4000000000000001,74.51,-1,800,0 +2003,1,21,6,30,0,0,-6,0.135,1.6,74.49,-1,800,0 +2003,1,21,7,30,6,0,-6,0.135,2,64.7,0,800,6 +2003,1,21,8,30,69,20,-6,0.135,2.3000000000000003,63.79,2,800,73 +2003,1,21,9,30,22,0,-5,0.135,2.8000000000000003,56.44,4,800,22 +2003,1,21,10,30,55,0,-5,0.135,3.2,51.75,5,800,55 +2003,1,21,11,30,66,0,-5,0.135,3.3000000000000003,48.54,6,800,66 +2003,1,21,12,30,166,9,-5,0.135,3.2,46.300000000000004,7,800,171 +2003,1,21,13,30,214,118,-5,0.135,3.1,44.52,8,800,269 +2003,1,21,14,30,78,0,-4,0.135,2.6,49,7,800,78 +2003,1,21,15,30,35,0,-3,0.135,1.5,62.06,5,800,35 +2003,1,21,16,30,13,0,-3,0.135,0.8,69.76,3,800,13 +2003,1,21,17,30,0,0,-4,0.135,0.7000000000000001,73.08,1,800,0 +2003,1,21,18,30,0,0,-4,0.135,0.7000000000000001,72.06,1,800,0 +2003,1,21,19,30,0,0,-4,0.135,0.7000000000000001,69.83,1,800,0 +2003,1,21,20,30,0,0,-5,0.135,0.9,72.73,0,800,0 +2003,1,21,21,30,0,0,-5,0.135,1.3,71.05,0,800,0 +2003,1,21,22,30,0,0,-5,0.135,1.5,69.9,0,800,0 +2003,1,21,23,30,0,0,-5,0.135,1.4000000000000001,69.27,0,800,0 +2003,1,22,0,30,0,0,-6,0.135,1,74,0,800,0 +2003,1,22,1,30,0,0,-6,0.135,0.7000000000000001,79.18,-1,800,0 +2003,1,22,2,30,0,0,-6,0.135,0.9,85.10000000000001,-2,800,0 +2003,1,22,3,30,0,0,-6,0.135,1.5,90.56,-3,800,0 +2003,1,22,4,30,0,0,-6,0.135,1.8,87.38,-3,800,0 +2003,1,22,5,30,0,0,-7,0.135,1.7000000000000002,90.79,-4,800,0 +2003,1,22,6,30,0,0,-7,0.135,1.4000000000000001,88.27,-4,800,0 +2003,1,22,7,30,6,0,-7,0.135,1,79.89,-3,800,6 +2003,1,22,8,30,66,0,-7,0.135,0.7000000000000001,69.25,-1,800,66 +2003,1,22,9,30,127,24,-7,0.135,0.9,61.61,0,800,135 +2003,1,22,10,30,157,13,-7,0.135,1.5,58.99,2,800,163 +2003,1,22,11,30,200,32,-6,0.135,2,56.06,3,800,215 +2003,1,22,12,30,168,9,-6,0.135,2.1,57,3,800,172 +2003,1,22,13,30,217,194,-6,0.135,1.7000000000000002,57.81,3,800,307 +2003,1,22,14,30,170,150,-6,0.135,1.4000000000000001,62.36,2,800,227 +2003,1,22,15,30,82,419,-6,0.135,1.3,67.37,1,810,189 +2003,1,22,16,30,9,0,-6,0.135,1.1,78.02,-1,810,9 +2003,1,22,17,30,0,0,-6,0.135,1,82.03,-2,810,0 +2003,1,22,18,30,0,0,-6,0.135,1.1,86.64,-3,810,0 +2003,1,22,19,30,0,0,-7,0.135,1,90.59,-4,810,0 +2003,1,22,20,30,0,0,-7,0.135,1,87.71000000000001,-4,810,0 +2003,1,22,21,30,0,0,-7,0.135,1,79.51,-3,810,0 +2003,1,22,22,30,0,0,-8,0.135,0.9,78.51,-3,810,0 +2003,1,22,23,30,0,0,-8,0.135,0.8,78.37,-3,810,0 +2003,1,23,0,30,0,0,-8,0.135,0.9,72.94,-2,810,0 +2003,1,23,1,30,0,0,-7,0.135,1,68.42,-1,810,0 +2003,1,23,2,30,0,0,-7,0.135,1.1,69.17,-1,810,0 +2003,1,23,3,30,0,0,-7,0.135,1.2000000000000002,69.81,-1,810,0 +2003,1,23,4,30,0,0,-7,0.135,1.2000000000000002,70.58,-1,810,0 +2003,1,23,5,30,0,0,-7,0.135,1.2000000000000002,71.13,-1,810,0 +2003,1,23,6,30,0,0,-7,0.135,1.4000000000000001,66.46000000000001,0,810,0 +2003,1,23,7,30,14,0,-7,0.135,2,62.99,0,810,14 +2003,1,23,8,30,53,480,-6,0.135,2.4000000000000004,58.61,2,810,145 +2003,1,23,9,30,99,537,-5,0.135,2.3000000000000003,55.370000000000005,5,810,278 +2003,1,23,10,30,122,617,-3,0.135,2.3000000000000003,53.17,7,810,391 +2003,1,23,11,30,69,930,-3,0.135,2.5,52.33,8,810,530 +2003,1,23,12,30,68,943,-2,0.135,2.9000000000000004,49.75,9,810,546 +2003,1,23,13,30,66,924,-2,0.135,2.9000000000000004,50.230000000000004,9,800,499 +2003,1,23,14,30,62,867,-2,0.135,2.4000000000000004,55.870000000000005,8,800,395 +2003,1,23,15,30,51,754,-2,0.135,1.5,63.910000000000004,6,800,246 +2003,1,23,16,30,29,471,-2,0.135,1.2000000000000002,70.52,4,800,77 +2003,1,23,17,30,0,0,-3,0.135,1.3,80.01,2,810,0 +2003,1,23,18,30,0,0,-3,0.135,1.5,79.47,2,810,0 +2003,1,23,19,30,0,0,-3,0.135,1.8,78.37,1,810,0 +2003,1,23,20,30,0,0,-3,0.135,1.9000000000000001,76.82000000000001,1,810,0 +2003,1,23,21,30,0,0,-3,0.135,1.8,75.07000000000001,0,800,0 +2003,1,23,22,30,0,0,-4,0.135,1.6,78.85000000000001,0,800,0 +2003,1,23,23,30,0,0,-4,0.135,1.4000000000000001,82.98,0,800,0 +2003,1,24,0,30,0,0,-4,0.135,1.3,81.28,0,800,0 +2003,1,24,1,30,0,0,-4,0.135,1.2000000000000002,79.95,0,800,0 +2003,1,24,2,30,0,0,-5,0.135,1.1,78.84,0,800,0 +2003,1,24,3,30,0,0,-5,0.135,0.9,77.74,0,800,0 +2003,1,24,4,30,0,0,-5,0.135,0.7000000000000001,82.44,0,800,0 +2003,1,24,5,30,0,0,-5,0.135,0.7000000000000001,81.33,-1,800,0 +2003,1,24,6,30,0,0,-5,0.135,0.8,80.37,0,810,0 +2003,1,24,7,30,8,0,-5,0.135,1.2000000000000002,68.93,0,810,8 +2003,1,24,8,30,73,20,-5,0.135,1.2000000000000002,63.59,2,810,77 +2003,1,24,9,30,144,95,-4,0.135,0.7000000000000001,58.5,5,810,176 +2003,1,24,10,30,178,380,-4,0.135,0.6000000000000001,55.33,6,810,345 +2003,1,24,11,30,202,422,-4,0.135,1.3,50.5,7,810,413 +2003,1,24,12,30,133,0,-4,0.135,1.9000000000000001,46.18,8,800,133 +2003,1,24,13,30,219,227,-4,0.135,2.1,45.69,8,800,326 +2003,1,24,14,30,131,494,-4,0.135,1.9000000000000001,48.56,7,800,322 +2003,1,24,15,30,105,205,-4,0.135,1.4000000000000001,57.33,5,800,159 +2003,1,24,16,30,24,0,-4,0.135,0.9,72.47,2,800,24 +2003,1,24,17,30,0,0,-5,0.137,0.5,68.99,0,810,0 +2003,1,24,18,30,0,0,-4,0.137,0.6000000000000001,75.15,0,810,0 +2003,1,24,19,30,0,0,-4,0.137,1,81,0,800,0 +2003,1,24,20,30,0,0,-4,0.137,1.4000000000000001,80.4,0,800,0 +2003,1,24,21,30,0,0,-5,0.137,1.5,79.25,0,800,0 +2003,1,24,22,30,0,0,-5,0.137,1.5,78.44,0,800,0 +2003,1,24,23,30,0,0,-5,0.137,1.5,73.45,0,800,0 +2003,1,25,0,30,0,0,-4,0.137,1.2000000000000002,75.33,0,800,0 +2003,1,25,1,30,0,0,-4,0.137,0.8,77.02,0,800,0 +2003,1,25,2,30,0,0,-4,0.137,0.7000000000000001,83.47,0,800,0 +2003,1,25,3,30,0,0,-4,0.137,0.9,89.11,-1,800,0 +2003,1,25,4,30,0,0,-4,0.137,1.1,87.42,-1,800,0 +2003,1,25,5,30,0,0,-5,0.137,1.2000000000000002,85.28,-1,800,0 +2003,1,25,6,30,0,0,-5,0.137,1.3,83.10000000000001,-1,800,0 +2003,1,25,7,30,20,0,-5,0.137,1.8,69.56,0,810,20 +2003,1,25,8,30,44,691,-5,0.137,2.9000000000000004,60.61,2,810,180 +2003,1,25,9,30,58,853,-6,0.137,3.5,53.15,4,810,347 +2003,1,25,10,30,107,688,-7,0.137,3.2,46.26,6,810,411 +2003,1,25,11,30,145,632,-7,0.137,3,41.5,7,810,463 +2003,1,25,12,30,70,960,-8,0.137,3.1,37.68,7,810,563 +2003,1,25,13,30,68,939,-8,0.137,2.9000000000000004,37.13,7,810,515 +2003,1,25,14,30,117,565,-8,0.137,2.1,39.67,6,810,338 +2003,1,25,15,30,74,525,-7,0.137,1,48.68,4,810,214 +2003,1,25,16,30,32,489,-6,0.137,0.5,59.68,1,810,84 +2003,1,25,17,30,0,0,-8,0.137,0.8,58.81,0,810,0 +2003,1,25,18,30,0,0,-7,0.137,1.5,64.07000000000001,0,810,0 +2003,1,25,19,30,0,0,-7,0.137,2.1,69.5,-1,810,0 +2003,1,25,20,30,0,0,-7,0.137,2.7,74.9,-2,810,0 +2003,1,25,21,30,0,0,-7,0.137,3.3000000000000003,74.35000000000001,-2,810,0 +2003,1,25,22,30,0,0,-8,0.137,3.7,73.66,-2,810,0 +2003,1,25,23,30,0,0,-8,0.137,3.7,73.05,-2,810,0 +2003,1,26,0,30,0,0,-8,0.137,3.6,72.44,-2,810,0 +2003,1,26,1,30,0,0,-8,0.137,3.6,72.52,-2,810,0 +2003,1,26,2,30,0,0,-8,0.137,3.6,73.26,-2,810,0 +2003,1,26,3,30,0,0,-7,0.137,3.6,68.81,-1,810,0 +2003,1,26,4,30,0,0,-7,0.137,3.5,69.48,-1,810,0 +2003,1,26,5,30,0,0,-7,0.137,3.2,70.52,-1,810,0 +2003,1,26,6,30,0,0,-7,0.137,3.3000000000000003,66.48,0,810,0 +2003,1,26,7,30,14,262,-6,0.137,3.7,63.910000000000004,1,810,22 +2003,1,26,8,30,41,723,-5,0.137,4.7,59.800000000000004,3,810,185 +2003,1,26,9,30,53,874,-5,0.137,5.5,49.120000000000005,6,810,352 +2003,1,26,10,30,60,940,-5,0.137,5.4,45.03,7,810,480 +2003,1,26,11,30,145,640,-6,0.137,4.7,41.300000000000004,8,810,469 +2003,1,26,12,30,70,954,-6,0.137,4.1000000000000005,37.94,9,810,564 +2003,1,26,13,30,181,472,-6,0.137,3.7,38.61,9,810,408 +2003,1,26,14,30,172,252,-5,0.137,3.6,45.06,8,810,271 +2003,1,26,15,30,112,137,-3,0.137,3.6,57.13,6,810,149 +2003,1,26,16,30,41,81,-4,0.137,3.9000000000000004,63.45,4,810,50 +2003,1,26,17,30,0,0,-4,0.137,4.3,61.870000000000005,4,810,0 +2003,1,26,18,30,0,0,-4,0.137,4.800000000000001,61.17,4,810,0 +2003,1,26,19,30,0,0,-4,0.137,5.1000000000000005,59.980000000000004,4,810,0 +2003,1,26,20,30,0,0,-5,0.137,5.2,63.050000000000004,3,810,0 +2003,1,26,21,30,0,0,-5,0.137,5.300000000000001,61.51,3,810,0 +2003,1,26,22,30,0,0,-5,0.137,5.5,60.11,3,810,0 +2003,1,26,23,30,0,0,-6,0.137,5.6000000000000005,58.94,3,810,0 +2003,1,27,0,30,0,0,-6,0.137,5.6000000000000005,58.67,3,810,0 +2003,1,27,1,30,0,0,-6,0.137,5.300000000000001,59.03,3,800,0 +2003,1,27,2,30,0,0,-5,0.137,5,60.17,3,800,0 +2003,1,27,3,30,0,0,-5,0.137,4.6000000000000005,60.910000000000004,3,800,0 +2003,1,27,4,30,0,0,-5,0.137,4.3,60.21,3,800,0 +2003,1,27,5,30,0,0,-6,0.137,4.1000000000000005,58.76,3,800,0 +2003,1,27,6,30,0,0,-6,0.137,3.9000000000000004,57.76,3,800,0 +2003,1,27,7,30,20,0,-6,0.137,3.7,50.42,5,800,20 +2003,1,27,8,30,48,568,-5,0.137,3.7,46.69,7,800,163 +2003,1,27,9,30,111,495,-4,0.137,4.1000000000000005,40.77,10,800,282 +2003,1,27,10,30,173,435,-4,0.137,4.3,35.64,12,800,369 +2003,1,27,11,30,198,468,-3,0.137,4,34.87,13,800,436 +2003,1,27,12,30,240,294,-3,0.137,3.9000000000000004,33.63,14,800,394 +2003,1,27,13,30,218,290,-3,0.137,3.6,37.12,13,800,358 +2003,1,27,14,30,171,277,-1,0.137,3,45.42,12,800,282 +2003,1,27,15,30,112,242,0,0.137,2,53.29,11,800,178 +2003,1,27,16,30,43,155,-1,0.137,1.2000000000000002,60.24,8,800,61 +2003,1,27,17,30,0,0,-1,0.137,0.9,65.7,6,800,0 +2003,1,27,18,30,0,0,-2,0.137,0.7000000000000001,64.1,6,800,0 +2003,1,27,19,30,0,0,-2,0.137,0.8,67.71000000000001,5,800,0 +2003,1,27,20,30,0,0,-2,0.137,1.2000000000000002,66.57000000000001,5,800,0 +2003,1,27,21,30,0,0,-2,0.137,1.4000000000000001,69.86,4,800,0 +2003,1,27,22,30,0,0,-3,0.137,1.5,73.74,3,800,0 +2003,1,27,23,30,0,0,-3,0.137,1.6,72.76,3,800,0 +2003,1,28,0,30,0,0,-3,0.137,1.8,72.31,3,800,0 +2003,1,28,1,30,0,0,-3,0.137,1.9000000000000001,71.66,3,800,0 +2003,1,28,2,30,0,0,-3,0.137,1.9000000000000001,70.01,3,800,0 +2003,1,28,3,30,0,0,-4,0.137,1.7000000000000002,72.96000000000001,2,800,0 +2003,1,28,4,30,0,0,-4,0.137,1.4000000000000001,70.66,2,800,0 +2003,1,28,5,30,0,0,-5,0.137,1.3,68.72,2,800,0 +2003,1,28,6,30,0,0,-5,0.137,1.9000000000000001,68.48,1,800,0 +2003,1,28,7,30,20,0,-4,0.137,3.4000000000000004,71.37,2,800,20 +2003,1,28,8,30,56,497,-2,0.137,4.1000000000000005,75.55,3,800,158 +2003,1,28,9,30,72,0,-2,0.137,3.8000000000000003,72.86,4,800,72 +2003,1,28,10,30,32,0,-2,0.137,3.4000000000000004,65.54,5,800,32 +2003,1,28,11,30,60,0,-3,0.137,3.3000000000000003,58.44,6,800,60 +2003,1,28,12,30,250,108,-3,0.137,3.4000000000000004,61.95,5,800,308 +2003,1,28,13,30,168,11,-3,0.137,3.3000000000000003,67.54,4,800,174 +2003,1,28,14,30,27,0,-3,0.137,2.6,73.76,3,800,27 +2003,1,28,15,30,8,0,-3,0.137,1.9000000000000001,79.09,2,800,8 +2003,1,28,16,30,2,0,-3,0.137,1.2000000000000002,78.01,1,800,2 +2003,1,28,17,30,0,0,-3,0.137,0.7000000000000001,82.12,0,800,0 +2003,1,28,18,30,0,0,-3,0.137,0.6000000000000001,87.87,0,810,0 +2003,1,28,19,30,0,0,-3,0.137,0.6000000000000001,93.68,-1,810,0 +2003,1,28,20,30,0,0,-4,0.137,0.8,92.29,-1,810,0 +2003,1,28,21,30,0,0,-4,0.137,0.9,97.54,-1,810,0 +2003,1,28,22,30,0,0,-4,0.137,1,89.01,-1,810,0 +2003,1,28,23,30,0,0,-4,0.137,0.9,87.89,-1,810,0 +2003,1,29,0,30,0,0,-4,0.137,0.8,86.28,-1,810,0 +2003,1,29,1,30,0,0,-5,0.137,0.7000000000000001,84.33,-1,810,0 +2003,1,29,2,30,0,0,-5,0.137,0.5,82.29,-1,810,0 +2003,1,29,3,30,0,0,-5,0.137,0.4,86.49,-2,810,0 +2003,1,29,4,30,0,0,-6,0.137,0.5,83.96000000000001,-2,810,0 +2003,1,29,5,30,0,0,-6,0.137,0.6000000000000001,81.89,-2,810,0 +2003,1,29,6,30,0,0,-6,0.137,0.7000000000000001,79.99,-2,810,0 +2003,1,29,7,30,15,263,-7,0.137,0.9,67.86,-1,810,25 +2003,1,29,8,30,46,690,-6,0.137,1,60.82,1,810,189 +2003,1,29,9,30,60,848,-6,0.137,0.7000000000000001,53.95,4,810,358 +2003,1,29,10,30,67,924,-6,0.137,0.5,45.67,6,810,489 +2003,1,29,11,30,73,948,-7,0.137,0.9,40.97,7,810,564 +2003,1,29,12,30,92,0,-7,0.137,1.5,37.15,8,800,92 +2003,1,29,13,30,78,916,-7,0.137,2.3000000000000003,37,8,800,529 +2003,1,29,14,30,164,357,-7,0.137,2.7,40.31,7,800,310 +2003,1,29,15,30,118,106,-6,0.137,1.9000000000000001,49.88,5,800,148 +2003,1,29,16,30,46,63,-5,0.137,0.8,60.71,2,800,54 +2003,1,29,17,30,0,0,-6,0.137,0.5,62.46,1,810,0 +2003,1,29,18,30,0,0,-6,0.137,0.5,62.13,0,810,0 +2003,1,29,19,30,0,0,-6,0.137,1,65.66,0,810,0 +2003,1,29,20,30,0,0,-6,0.137,1.7000000000000002,64.06,0,800,0 +2003,1,29,21,30,0,0,-7,0.137,2.4000000000000004,62.49,0,800,0 +2003,1,29,22,30,0,0,-7,0.137,3,60.980000000000004,0,800,0 +2003,1,29,23,30,0,0,-7,0.137,3.7,59.51,0,800,0 +2003,1,30,0,30,0,0,-8,0.137,4.1000000000000005,58.44,0,800,0 +2003,1,30,1,30,0,0,-8,0.137,4.2,58.33,0,800,0 +2003,1,30,2,30,0,0,-7,0.137,4.1000000000000005,54.92,0,800,0 +2003,1,30,3,30,0,0,-7,0.137,3.7,55.800000000000004,1,800,0 +2003,1,30,4,30,0,0,-7,0.137,3.4000000000000004,56.370000000000005,1,800,0 +2003,1,30,5,30,0,0,-7,0.137,3.3000000000000003,56.44,1,800,0 +2003,1,30,6,30,0,0,-7,0.137,3.3000000000000003,56.61,1,800,0 +2003,1,30,7,30,9,0,-7,0.137,3.4000000000000004,53.67,3,800,9 +2003,1,30,8,30,68,0,-6,0.137,3.9000000000000004,48.74,5,800,68 +2003,1,30,9,30,146,282,-5,0.137,4.9,43.02,8,800,247 +2003,1,30,10,30,214,127,-4,0.137,6.2,43.7,9,800,273 +2003,1,30,11,30,231,345,-4,0.137,7.5,39.92,10,800,411 +2003,1,30,12,30,212,458,-4,0.137,8.700000000000001,38.42,11,800,456 +2003,1,30,13,30,234,119,-3,0.137,9.600000000000001,43.38,10,800,294 +2003,1,30,14,30,173,315,-3,0.137,10,48.45,9,800,303 +2003,1,30,15,30,111,280,-2,0.137,9.5,53.57,8,800,192 +2003,1,30,16,30,41,363,-2,0.137,8.4,59.47,7,800,87 +2003,1,30,17,30,0,0,-1,0.137,7.1000000000000005,66.61,6,800,0 +2003,1,30,18,30,0,0,0,0.137,5.9,70.11,6,800,0 +2003,1,30,19,30,0,0,0,0.137,4.7,77.17,5,800,0 +2003,1,30,20,30,0,0,0,0.137,3.4000000000000004,82.59,4,800,0 +2003,1,30,21,30,0,0,0,0.137,2.4000000000000004,88.13,3,800,0 +2003,1,30,22,30,0,0,0,0.137,1.7000000000000002,94.23,2,810,0 +2003,1,30,23,30,0,0,0,0.137,1.2000000000000002,93.37,2,810,0 +2003,1,31,0,30,0,0,-1,0.137,0.6000000000000001,91.5,1,810,0 +2003,1,31,1,30,0,0,-1,0.137,0.30000000000000004,88.99,1,810,0 +2003,1,31,2,30,0,0,-1,0.137,0.30000000000000004,87.34,0,810,0 +2003,1,31,3,30,0,0,-2,0.137,0.5,92.51,0,810,0 +2003,1,31,4,30,0,0,-2,0.137,0.9,90.7,0,810,0 +2003,1,31,5,30,0,0,-2,0.137,1.5,89.19,0,810,0 +2003,1,31,6,30,0,0,-2,0.137,2.4000000000000004,82.15,1,810,0 +2003,1,31,7,30,29,0,-2,0.137,3.6,77.5,3,810,29 +2003,1,31,8,30,46,697,-1,0.137,4.9,66.23,6,810,196 +2003,1,31,9,30,149,54,-1,0.137,6.5,54.980000000000004,9,810,168 +2003,1,31,10,30,131,624,-1,0.137,7.2,47.61,11,810,420 +2003,1,31,11,30,233,56,-1,0.137,7,44.07,12,810,263 +2003,1,31,12,30,136,0,-1,0.137,6.6000000000000005,43.39,12,810,136 +2003,1,31,13,30,234,99,-2,0.137,5.800000000000001,40.04,13,800,283 +2003,1,31,14,30,183,79,-1,0.137,4.800000000000001,43.7,12,810,216 +2003,1,31,15,30,121,104,-1,0.137,3.8000000000000003,52.300000000000004,10,810,152 +2003,1,31,16,30,39,0,-1,0.137,3.2,60.25,8,810,39 +2003,1,31,17,30,0,0,-1,0.137,3.2,67.84,6,810,0 +2003,1,31,18,30,0,0,-1,0.137,3.5,66.81,6,810,0 +2003,1,31,19,30,0,0,-1,0.137,3.6,65.54,6,810,0 +2003,1,31,20,30,0,0,-2,0.137,3.8000000000000003,68.93,5,800,0 +2003,1,31,21,30,0,0,-2,0.137,3.9000000000000004,67.59,5,800,0 +2003,1,31,22,30,0,0,-2,0.137,3.9000000000000004,66.44,5,800,0 +2003,1,31,23,30,0,0,-2,0.137,3.8000000000000003,65.32000000000001,5,800,0 +2003,2,1,0,30,0,0,-3,0.137,3.8000000000000003,64.28,5,800,0 +2003,2,1,1,30,0,0,-3,0.137,3.7,63.51,5,800,0 +2003,2,1,2,30,0,0,-3,0.137,3.6,62.82,5,800,0 +2003,2,1,3,30,0,0,-3,0.137,3.6,61.980000000000004,5,800,0 +2003,2,1,4,30,0,0,-3,0.137,3.6,61.28,5,800,0 +2003,2,1,5,30,0,0,-3,0.137,3.7,60.97,5,800,0 +2003,2,1,6,30,0,0,-3,0.137,3.9000000000000004,60.79,5,800,0 +2003,2,1,7,30,27,0,-3,0.137,4.2,56.85,6,800,27 +2003,2,1,8,30,56,535,-3,0.137,4.5,47.64,9,800,173 +2003,2,1,9,30,119,490,-3,0.137,4.5,39.61,12,800,297 +2003,2,1,10,30,105,729,-3,0.137,4.6000000000000005,31.93,15,800,447 +2003,2,1,11,30,155,640,-3,0.137,4.800000000000001,28.97,16,800,494 +2003,2,1,12,30,153,668,-4,0.137,4.800000000000001,26.5,17,800,515 +2003,2,1,13,30,72,927,-4,0.137,4.5,27.75,16,800,540 +2003,2,1,14,30,180,57,-4,0.137,3.6,29.22,15,800,204 +2003,2,1,15,30,111,20,-2,0.137,2.3000000000000003,38.87,13,800,117 +2003,2,1,16,30,28,0,-2,0.137,1.6,50.67,9,800,28 +2003,2,1,17,30,0,0,-3,0.137,1.5,54.92,7,800,0 +2003,2,1,18,30,0,0,-3,0.137,1.7000000000000002,58.870000000000005,6,800,0 +2003,2,1,19,30,0,0,-3,0.137,2.1,61.89,5,800,0 +2003,2,1,20,30,0,0,-4,0.137,2.8000000000000003,59.31,5,800,0 +2003,2,1,21,30,0,0,-4,0.137,3.4000000000000004,55.86,5,790,0 +2003,2,1,22,30,0,0,-5,0.137,3.6,55.79,4,790,0 +2003,2,1,23,30,0,0,-6,0.137,3.2,52.33,4,790,0 +2003,2,2,0,30,0,0,-6,0.137,2.6,51.75,4,790,0 +2003,2,2,1,30,0,0,-6,0.137,2.3000000000000003,54.230000000000004,4,790,0 +2003,2,2,2,30,0,0,-5,0.137,2.2,61.46,4,790,0 +2003,2,2,3,30,0,0,-5,0.137,2.1,63.88,3,790,0 +2003,2,2,4,30,0,0,-4,0.137,1.9000000000000001,65.68,3,790,0 +2003,2,2,5,30,0,0,-4,0.137,1.7000000000000002,66.66,3,790,0 +2003,2,2,6,30,0,0,-4,0.137,1.5,67.18,3,790,0 +2003,2,2,7,30,20,0,-3,0.137,1.5,60.94,5,790,20 +2003,2,2,8,30,92,140,-1,0.137,1.7000000000000002,60.730000000000004,8,790,123 +2003,2,2,9,30,160,206,-2,0.137,1.9000000000000001,54.19,9,790,235 +2003,2,2,10,30,173,488,-3,0.137,2.8000000000000003,48.21,9,790,403 +2003,2,2,11,30,82,0,-3,0.137,4.7,50.120000000000005,8,790,82 +2003,2,2,12,30,49,0,-3,0.137,5.9,54.050000000000004,7,790,49 +2003,2,2,13,30,158,6,-3,0.137,6.1000000000000005,63.93,5,790,161 +2003,2,2,14,30,8,0,-3,0.137,5.9,73.25,3,790,8 +2003,2,2,15,30,66,0,-3,0.137,5.9,75.81,1,790,66 +2003,2,2,16,30,27,0,-4,0.137,5.9,81.44,0,790,27 +2003,2,2,17,30,0,0,-5,0.866,5.9,81.83,-1,790,0 +2003,2,2,18,30,0,0,-6,0.866,5.800000000000001,83.11,-2,790,0 +2003,2,2,19,30,0,0,-7,0.866,5.6000000000000005,84.09,-3,790,0 +2003,2,2,20,30,0,0,-8,0.866,5.4,79.16,-3,800,0 +2003,2,2,21,30,0,0,-8,0.866,5.4,80.49,-4,800,0 +2003,2,2,22,30,0,0,-9,0.866,5.4,75.5,-4,800,0 +2003,2,2,23,30,0,0,-10,0.866,5.300000000000001,76.89,-5,800,0 +2003,2,3,0,30,0,0,-11,0.866,5,73.03,-5,800,0 +2003,2,3,1,30,0,0,-11,0.866,4.5,70.51,-5,800,0 +2003,2,3,2,30,0,0,-11,0.866,4,68.86,-5,800,0 +2003,2,3,3,30,0,0,-12,0.866,3.6,67.13,-5,800,0 +2003,2,3,4,30,0,0,-12,0.866,3.1,65,-5,800,0 +2003,2,3,5,30,0,0,-13,0.866,2.5,62.21,-5,800,0 +2003,2,3,6,30,0,0,-13,0.866,2,58.620000000000005,-5,800,0 +2003,2,3,7,30,22,292,-14,0.866,2,51.980000000000004,-4,800,37 +2003,2,3,8,30,54,735,-13,0.866,2.4000000000000004,45.910000000000004,-2,800,220 +2003,2,3,9,30,68,906,-14,0.866,2.7,41.800000000000004,-1,800,403 +2003,2,3,10,30,76,982,-13,0.866,2.7,37.01,0,800,544 +2003,2,3,11,30,85,1006,-13,0.866,2.7,35.550000000000004,0,800,626 +2003,2,3,12,30,86,1011,-13,0.866,2.7,36.15,1,800,642 +2003,2,3,13,30,82,995,-13,0.866,2.6,36.22,1,800,592 +2003,2,3,14,30,74,947,-13,0.866,2.2,36.660000000000004,0,800,480 +2003,2,3,15,30,60,853,-12,0.866,1.3,43.27,0,800,318 +2003,2,3,16,30,38,631,-12,0.866,0.5,56.46,-2,800,128 +2003,2,3,17,30,0,0,-14,0.866,0.5,56.19,-5,800,0 +2003,2,3,18,30,0,0,-14,0.866,1,63.76,-7,800,0 +2003,2,3,19,30,0,0,-15,0.866,1.2000000000000002,66.7,-8,800,0 +2003,2,3,20,30,0,0,-15,0.866,1.2000000000000002,64.68,-8,800,0 +2003,2,3,21,30,0,0,-15,0.866,1.2000000000000002,63.6,-8,800,0 +2003,2,3,22,30,0,0,-15,0.866,1.2000000000000002,63.13,-8,800,0 +2003,2,3,23,30,0,0,-15,0.866,1.3,62.52,-8,800,0 +2003,2,4,0,30,0,0,-15,0.866,1.4000000000000001,62.050000000000004,-8,800,0 +2003,2,4,1,30,0,0,-15,0.866,1.5,57.49,-7,800,0 +2003,2,4,2,30,0,0,-15,0.866,1.4000000000000001,59.300000000000004,-7,800,0 +2003,2,4,3,30,0,0,-14,0.866,1.2000000000000002,57.620000000000005,-6,800,0 +2003,2,4,4,30,0,0,-14,0.866,1,61.38,-6,800,0 +2003,2,4,5,30,0,0,-13,0.866,0.9,63.56,-6,800,0 +2003,2,4,6,30,0,0,-13,0.866,1,60.800000000000004,-5,800,0 +2003,2,4,7,30,10,0,-13,0.866,1.4000000000000001,57.25,-4,800,10 +2003,2,4,8,30,72,0,-12,0.866,2,52.08,-2,800,72 +2003,2,4,9,30,146,355,-12,0.866,2.2,45.31,0,800,279 +2003,2,4,10,30,89,804,-12,0.866,2,44.59,0,800,475 +2003,2,4,11,30,131,740,-12,0.866,1.6,44.08,0,800,532 +2003,2,4,12,30,115,804,-12,0.866,1.3,43.85,0,800,561 +2003,2,4,13,30,160,601,-12,0.866,1.2000000000000002,44.21,0,800,471 +2003,2,4,14,30,85,763,-12,0.866,1.2000000000000002,45.2,0,800,415 +2003,2,4,15,30,62,689,-11,0.866,1.2000000000000002,50.36,-1,800,274 +2003,2,4,16,30,17,0,-11,0.866,1.4000000000000001,59.800000000000004,-3,800,17 +2003,2,4,17,30,0,0,-11,0.866,2,63.77,-4,800,0 +2003,2,4,18,30,0,0,-11,0.866,2.5,68.76,-5,800,0 +2003,2,4,19,30,0,0,-11,0.866,2.6,70.2,-5,800,0 +2003,2,4,20,30,0,0,-11,0.866,2.2,75.94,-6,800,0 +2003,2,4,21,30,0,0,-11,0.866,1.8,75.55,-6,800,0 +2003,2,4,22,30,0,0,-11,0.866,1.8,74.71000000000001,-6,800,0 +2003,2,4,23,30,0,0,-11,0.866,1.8,73.46000000000001,-6,800,0 +2003,2,5,0,30,0,0,-12,0.866,1.7000000000000002,72.2,-6,800,0 +2003,2,5,1,30,0,0,-12,0.866,1.6,71.43,-6,800,0 +2003,2,5,2,30,0,0,-12,0.866,1.4000000000000001,71.02,-6,800,0 +2003,2,5,3,30,0,0,-12,0.866,1.2000000000000002,70.52,-6,800,0 +2003,2,5,4,30,0,0,-12,0.866,1.1,70.05,-6,800,0 +2003,2,5,5,30,0,0,-12,0.866,1.2000000000000002,69.29,-6,800,0 +2003,2,5,6,30,0,0,-12,0.866,1.1,67.68,-6,800,0 +2003,2,5,7,30,5,0,-13,0.866,0.9,60.910000000000004,-5,800,5 +2003,2,5,8,30,36,0,-13,0.866,0.6000000000000001,55.94,-4,800,36 +2003,2,5,9,30,139,15,-13,0.866,0.9,49.59,-3,800,145 +2003,2,5,10,30,182,20,-14,0.866,1.6,44.74,-2,800,192 +2003,2,5,11,30,267,165,-14,0.866,2.2,44.56,-2,800,358 +2003,2,5,12,30,260,308,-14,0.866,2.6,44.82,-2,800,433 +2003,2,5,13,30,242,280,-13,0.866,2.7,49.34,-3,800,388 +2003,2,5,14,30,143,5,-13,0.866,2.6,50.160000000000004,-3,800,145 +2003,2,5,15,30,24,0,-13,0.866,2.2,54.54,-4,800,24 +2003,2,5,16,30,9,0,-14,0.866,1.5,55.980000000000004,-5,800,9 +2003,2,5,17,30,0,0,-15,0.866,1,56.47,-6,800,0 +2003,2,5,18,30,0,0,-15,0.866,0.8,59.42,-7,800,0 +2003,2,5,19,30,0,0,-15,0.866,0.7000000000000001,58.94,-7,800,0 +2003,2,5,20,30,0,0,-15,0.866,1,62.550000000000004,-7,800,0 +2003,2,5,21,30,0,0,-15,0.866,1.6,61.83,-8,800,0 +2003,2,5,22,30,0,0,-15,0.866,2.2,62.03,-8,800,0 +2003,2,5,23,30,0,0,-15,0.866,2.8000000000000003,62.01,-8,800,0 +2003,2,6,0,30,0,0,-15,0.866,3.8000000000000003,61.77,-8,800,0 +2003,2,6,1,30,0,0,-15,0.866,4.800000000000001,67.93,-9,800,0 +2003,2,6,2,30,0,0,-15,0.866,5.300000000000001,69.52,-9,800,0 +2003,2,6,3,30,0,0,-15,0.866,5,74.01,-10,800,0 +2003,2,6,4,30,0,0,-16,0.866,4.5,69.36,-10,800,0 +2003,2,6,5,30,0,0,-17,0.866,3.9000000000000004,69.5,-11,800,0 +2003,2,6,6,30,0,0,-18,0.866,3.3000000000000003,69.86,-12,800,0 +2003,2,6,7,30,19,0,-18,0.866,3,61.92,-11,800,19 +2003,2,6,8,30,88,19,-18,0.866,2.7,57.44,-10,800,92 +2003,2,6,9,30,158,299,-18,0.866,2.4000000000000004,52.27,-9,800,272 +2003,2,6,10,30,205,372,-18,0.866,1.9000000000000001,52.35,-9,800,387 +2003,2,6,11,30,190,547,-18,0.866,1.5,48.910000000000004,-8,800,492 +2003,2,6,12,30,258,66,-18,0.866,1.5,45.67,-7,800,296 +2003,2,6,13,30,250,109,-18,0.866,1.9000000000000001,46.12,-7,800,308 +2003,2,6,14,30,87,0,-18,0.866,2.2,46.64,-7,800,87 +2003,2,6,15,30,29,0,-17,0.866,2.4000000000000004,52.22,-8,800,29 +2003,2,6,16,30,58,157,-18,0.866,2.5,55.81,-9,800,82 +2003,2,6,17,30,0,0,-18,0.866,2.4000000000000004,56.57,-10,800,0 +2003,2,6,18,30,0,0,-19,0.866,2,59.870000000000005,-11,800,0 +2003,2,6,19,30,0,0,-19,0.866,1.4000000000000001,57.83,-11,800,0 +2003,2,6,20,30,0,0,-20,0.866,1.1,55.730000000000004,-11,800,0 +2003,2,6,21,30,0,0,-20,0.866,1,58.120000000000005,-12,800,0 +2003,2,6,22,30,0,0,-20,0.866,1,58.38,-12,800,0 +2003,2,6,23,30,0,0,-20,0.866,0.9,61.39,-13,800,0 +2003,2,7,0,30,0,0,-21,0.866,0.8,58.82,-13,800,0 +2003,2,7,1,30,0,0,-21,0.866,0.7000000000000001,60.57,-14,800,0 +2003,2,7,2,30,0,0,-22,0.866,0.7000000000000001,63.370000000000005,-15,800,0 +2003,2,7,3,30,0,0,-22,0.866,0.9,61.45,-15,800,0 +2003,2,7,4,30,0,0,-22,0.866,1.5,64.97,-16,800,0 +2003,2,7,5,30,0,0,-23,0.866,2.3000000000000003,61.74,-16,800,0 +2003,2,7,6,30,0,0,-24,0.866,3.5,53.050000000000004,-15,800,0 +2003,2,7,7,30,20,528,-25,0.866,4.4,42.230000000000004,-13,800,56 +2003,2,7,8,30,45,867,-23,0.866,4.5,32.9,-8,800,253 +2003,2,7,9,30,59,983,-22,0.866,3.8000000000000003,27.21,-5,800,438 +2003,2,7,10,30,69,1034,-22,0.866,3,24.16,-3,800,578 +2003,2,7,11,30,75,1053,-21,0.866,2.5,23.31,-1,800,659 +2003,2,7,12,30,76,1053,-19,0.866,2,24.740000000000002,0,800,674 +2003,2,7,13,30,73,1035,-18,0.866,1.5,28.12,0,800,623 +2003,2,7,14,30,68,989,-17,0.866,1.1,29.64,0,800,509 +2003,2,7,15,30,56,904,-16,0.866,0.6000000000000001,36.71,-2,800,344 +2003,2,7,16,30,37,710,-16,0.866,0.30000000000000004,48.61,-5,800,150 +2003,2,7,17,30,0,0,-18,0.866,0.9,45.74,-7,800,0 +2003,2,7,18,30,0,0,-19,0.866,2,44.230000000000004,-8,800,0 +2003,2,7,19,30,0,0,-20,0.866,2.7,47.46,-9,800,0 +2003,2,7,20,30,0,0,-19,0.866,3,52.02,-10,800,0 +2003,2,7,21,30,0,0,-20,0.866,3.2,49.26,-10,800,0 +2003,2,7,22,30,0,0,-21,0.866,3.3000000000000003,49.64,-11,800,0 +2003,2,7,23,30,0,0,-22,0.866,3.1,46.81,-11,800,0 +2003,2,8,0,30,0,0,-22,0.866,2.7,45.07,-11,800,0 +2003,2,8,1,30,0,0,-22,0.866,2.2,44.28,-11,800,0 +2003,2,8,2,30,0,0,-22,0.866,1.8,43.97,-11,800,0 +2003,2,8,3,30,0,0,-23,0.866,1.8,46.53,-11,800,0 +2003,2,8,4,30,0,0,-23,0.866,1.9000000000000001,45.1,-12,800,0 +2003,2,8,5,30,0,0,-23,0.866,2.1,43.96,-12,800,0 +2003,2,8,6,30,0,0,-23,0.866,2.4000000000000004,39.65,-11,800,0 +2003,2,8,7,30,23,475,-23,0.866,2.4000000000000004,33.68,-8,800,56 +2003,2,8,8,30,50,825,-20,0.866,2,31.080000000000002,-4,800,251 +2003,2,8,9,30,68,945,-19,0.866,1.5,29.96,-2,800,436 +2003,2,8,10,30,80,997,-18,0.866,0.9,29.310000000000002,-1,800,576 +2003,2,8,11,30,86,1020,-17,0.866,0.4,29.13,0,800,657 +2003,2,8,12,30,90,1014,-16,0.866,0.6000000000000001,30.900000000000002,0,800,671 +2003,2,8,13,30,193,515,-16,0.866,1.1,32.910000000000004,0,800,469 +2003,2,8,14,30,199,68,-15,0.866,1.4000000000000001,34.81,0,800,229 +2003,2,8,15,30,138,96,-15,0.866,1.6,41.980000000000004,-2,800,169 +2003,2,8,16,30,43,645,-14,0.866,1.8,49.2,-4,800,148 +2003,2,8,17,30,0,0,-16,0.866,2,52.370000000000005,-6,800,0 +2003,2,8,18,30,0,0,-16,0.866,1.9000000000000001,53.300000000000004,-7,800,0 +2003,2,8,19,30,0,0,-16,0.866,1.4000000000000001,52.88,-7,800,0 +2003,2,8,20,30,0,0,-16,0.866,1,54.28,-7,800,0 +2003,2,8,21,30,0,0,-16,0.866,0.8,60.68,-8,800,0 +2003,2,8,22,30,0,0,-16,0.866,0.6000000000000001,59.54,-8,800,0 +2003,2,8,23,30,0,0,-16,0.866,0.4,63.08,-9,800,0 +2003,2,9,0,30,0,0,-16,0.866,0.30000000000000004,61.81,-9,800,0 +2003,2,9,1,30,0,0,-16,0.866,0.30000000000000004,61.95,-9,800,0 +2003,2,9,2,30,0,0,-16,0.866,0.30000000000000004,62.34,-9,790,0 +2003,2,9,3,30,0,0,-16,0.866,0.5,63.25,-9,790,0 +2003,2,9,4,30,0,0,-16,0.866,0.6000000000000001,64.38,-9,790,0 +2003,2,9,5,30,0,0,-16,0.866,0.6000000000000001,70.07000000000001,-10,790,0 +2003,2,9,6,30,0,0,-16,0.866,0.8,64.08,-9,790,0 +2003,2,9,7,30,27,114,-16,0.866,1.6,58.89,-8,790,36 +2003,2,9,8,30,63,561,-16,0.866,3.2,51.410000000000004,-6,790,202 +2003,2,9,9,30,149,405,-16,0.866,4.4,43.550000000000004,-4,800,308 +2003,2,9,10,30,222,328,-16,0.866,4.9,40.37,-3,800,386 +2003,2,9,11,30,166,660,-16,0.866,5.2,38.09,-2,790,538 +2003,2,9,12,30,95,1003,-15,0.866,5.5,38.81,-2,790,674 +2003,2,9,13,30,88,994,-15,0.866,5.7,39.32,-2,790,625 +2003,2,9,14,30,80,952,-15,0.866,5.6000000000000005,39.6,-2,800,513 +2003,2,9,15,30,64,872,-15,0.866,5,43.03,-3,800,350 +2003,2,9,16,30,41,686,-15,0.866,4.5,47.09,-4,800,156 +2003,2,9,17,30,0,0,-15,0.866,4.6000000000000005,50.52,-5,800,0 +2003,2,9,18,30,0,0,-15,0.866,4.7,54.9,-6,800,0 +2003,2,9,19,30,0,0,-15,0.866,4.7,55.34,-6,800,0 +2003,2,9,20,30,0,0,-15,0.866,4.7,55.26,-6,800,0 +2003,2,9,21,30,0,0,-15,0.866,4.6000000000000005,59.6,-7,800,0 +2003,2,9,22,30,0,0,-15,0.866,4.7,59.800000000000004,-7,800,0 +2003,2,9,23,30,0,0,-15,0.866,5.1000000000000005,59.89,-7,800,0 +2003,2,10,0,30,0,0,-15,0.866,5.4,60.69,-7,800,0 +2003,2,10,1,30,0,0,-15,0.866,5.6000000000000005,60.910000000000004,-7,800,0 +2003,2,10,2,30,0,0,-15,0.866,5.800000000000001,60.92,-7,800,0 +2003,2,10,3,30,0,0,-15,0.866,6,56.74,-6,800,0 +2003,2,10,4,30,0,0,-14,0.866,6,57.42,-6,800,0 +2003,2,10,5,30,0,0,-14,0.866,5.9,58.39,-6,800,0 +2003,2,10,6,30,0,0,-14,0.866,5.7,55.08,-5,800,0 +2003,2,10,7,30,24,466,-13,0.866,5.9,50.1,-3,800,61 +2003,2,10,8,30,56,770,-12,0.866,6.5,48.77,-1,800,250 +2003,2,10,9,30,73,898,-11,0.866,7.1000000000000005,46.49,0,800,430 +2003,2,10,10,30,100,794,-9,0.866,7.5,47.08,1,800,502 +2003,2,10,11,30,87,990,-9,0.866,7.6000000000000005,49.370000000000005,2,800,650 +2003,2,10,12,30,90,992,-9,0.866,7.5,47.03,3,800,667 +2003,2,10,13,30,88,974,-8,0.866,7.300000000000001,47.4,3,800,618 +2003,2,10,14,30,125,638,-8,0.866,6.6000000000000005,51.19,2,800,418 +2003,2,10,15,30,95,552,-8,0.866,5.1000000000000005,52.230000000000004,1,800,279 +2003,2,10,16,30,45,641,-8,0.866,3.9000000000000004,62.36,0,800,155 +2003,2,10,17,30,0,0,-8,0.866,3.4000000000000004,65.13,-1,800,0 +2003,2,10,18,30,0,0,-8,0.866,3.1,69.81,-2,800,0 +2003,2,10,19,30,0,0,-8,0.866,2.7,68.92,-2,800,0 +2003,2,10,20,30,0,0,-9,0.866,2,72.34,-3,800,0 +2003,2,10,21,30,0,0,-9,0.866,1.2000000000000002,70.12,-3,800,0 +2003,2,10,22,30,0,0,-9,0.866,0.8,73.41,-4,800,0 +2003,2,10,23,30,0,0,-10,0.866,1,71.8,-4,800,0 +2003,2,11,0,30,0,0,-10,0.866,1.3,70.83,-4,800,0 +2003,2,11,1,30,0,0,-10,0.866,1.4000000000000001,70.26,-4,800,0 +2003,2,11,2,30,0,0,-10,0.866,1.5,69.51,-4,800,0 +2003,2,11,3,30,0,0,-10,0.866,1.7000000000000002,68.97,-4,800,0 +2003,2,11,4,30,0,0,-10,0.866,1.9000000000000001,68.22,-4,800,0 +2003,2,11,5,30,0,0,-11,0.866,2.3000000000000003,67.07000000000001,-4,800,0 +2003,2,11,6,30,0,0,-11,0.866,2.8000000000000003,61,-3,800,0 +2003,2,11,7,30,26,481,-10,0.866,3.2,54.77,-1,800,65 +2003,2,11,8,30,51,824,-9,0.866,3.9000000000000004,52.410000000000004,0,800,262 +2003,2,11,9,30,57,859,-9,0.866,4.3,48.2,2,800,402 +2003,2,11,10,30,84,856,-9,0.866,4.1000000000000005,44.13,3,800,521 +2003,2,11,11,30,255,369,-10,0.866,3.8000000000000003,40.61,4,800,467 +2003,2,11,12,30,159,708,-9,0.866,3.4000000000000004,38.17,5,800,575 +2003,2,11,13,30,110,811,-9,0.866,2.7,39.160000000000004,5,800,555 +2003,2,11,14,30,172,467,-9,0.866,1.7000000000000002,43.33,4,800,389 +2003,2,11,15,30,83,624,-7,0.866,0.8,51.120000000000005,2,800,293 +2003,2,11,16,30,37,600,-7,0.866,0.6000000000000001,60.800000000000004,0,800,142 +2003,2,11,17,30,0,0,-9,0.866,1,65.3,-2,800,0 +2003,2,11,18,30,0,0,-10,0.866,1.5,65.91,-3,800,0 +2003,2,11,19,30,0,0,-10,0.866,1.6,67.76,-4,800,0 +2003,2,11,20,30,0,0,-11,0.866,1.7000000000000002,65.81,-4,800,0 +2003,2,11,21,30,0,0,-11,0.866,2.1,64.85,-4,800,0 +2003,2,11,22,30,0,0,-11,0.866,2.5,64.98,-4,800,0 +2003,2,11,23,30,0,0,-11,0.866,2.7,64.96000000000001,-4,800,0 +2003,2,12,0,30,0,0,-11,0.866,2.8000000000000003,63.99,-4,800,0 +2003,2,12,1,30,0,0,-12,0.866,3,62.440000000000005,-4,800,0 +2003,2,12,2,30,0,0,-12,0.866,3.1,61,-4,800,0 +2003,2,12,3,30,0,0,-12,0.866,3.3000000000000003,59.76,-4,800,0 +2003,2,12,4,30,0,0,-12,0.866,3.6,58.660000000000004,-4,800,0 +2003,2,12,5,30,0,0,-13,0.866,3.9000000000000004,57.660000000000004,-4,800,0 +2003,2,12,6,30,0,0,-13,0.866,4.1000000000000005,52.79,-3,800,0 +2003,2,12,7,30,29,368,-12,0.866,4.2,43.1,-1,800,61 +2003,2,12,8,30,44,736,-12,0.866,3.9000000000000004,39.76,2,800,235 +2003,2,12,9,30,99,658,-10,0.866,3.6,36.08,5,800,367 +2003,2,12,10,30,86,989,-10,0.866,3.2,31.91,7,800,596 +2003,2,12,11,30,91,904,-9,0.866,2.4000000000000004,31.150000000000002,8,800,613 +2003,2,12,12,30,110,853,-9,0.866,1.9000000000000001,30.92,9,800,614 +2003,2,12,13,30,101,843,-8,0.866,1.6,33.26,9,800,567 +2003,2,12,14,30,112,697,-6,0.866,1.1,39.03,8,800,439 +2003,2,12,15,30,104,519,-3,0.866,0.7000000000000001,60.29,5,800,281 +2003,2,12,16,30,53,416,-5,0.866,0.6000000000000001,64.08,2,800,127 +2003,2,12,17,30,0,0,-7,0.866,0.6000000000000001,61.97,0,800,0 +2003,2,12,18,30,0,0,-7,0.866,0.8,64.04,0,810,0 +2003,2,12,19,30,0,0,-7,0.866,0.9,70.83,0,810,0 +2003,2,12,20,30,0,0,-7,0.866,0.9,68.08,0,810,0 +2003,2,12,21,30,0,0,-6,0.866,0.8,69.24,0,800,0 +2003,2,12,22,30,0,0,-6,0.866,0.8,70.83,0,800,0 +2003,2,12,23,30,0,0,-6,0.866,0.8,71.78,0,800,0 +2003,2,13,0,30,0,0,-6,0.866,0.8,71.76,0,800,0 +2003,2,13,1,30,0,0,-6,0.866,0.9,66.45,0,800,0 +2003,2,13,2,30,0,0,-6,0.866,0.8,66.63,0,800,0 +2003,2,13,3,30,0,0,-6,0.866,0.8,66.99,0,800,0 +2003,2,13,4,30,0,0,-6,0.866,0.9,67.96000000000001,0,800,0 +2003,2,13,5,30,0,0,-5,0.866,0.8,69.62,0,800,0 +2003,2,13,6,30,0,0,-5,0.866,0.7000000000000001,65.38,0,800,0 +2003,2,13,7,30,12,0,-4,0.866,0.6000000000000001,71.72,2,800,12 +2003,2,13,8,30,72,0,-2,0.866,0.7000000000000001,75.06,3,800,72 +2003,2,13,9,30,185,129,-1,0.866,0.8,75.49,4,800,239 +2003,2,13,10,30,208,445,-1,0.866,0.5,73.55,5,800,439 +2003,2,13,11,30,221,497,0,0.866,0.30000000000000004,71.35000000000001,6,800,511 +2003,2,13,12,30,231,489,0,0.866,0.6000000000000001,68.4,7,800,522 +2003,2,13,13,30,268,251,0,0.866,1,69.74,7,800,408 +2003,2,13,14,30,218,233,0,0.866,1.3,75.59,6,800,328 +2003,2,13,15,30,148,196,0,0.866,1,82.86,5,800,216 +2003,2,13,16,30,37,0,0,0.866,0.6000000000000001,89.74,3,800,37 +2003,2,13,17,30,0,0,-1,0.866,0.6000000000000001,90.19,1,800,0 +2003,2,13,18,30,0,0,-1,0.866,0.8,89.73,1,800,0 +2003,2,13,19,30,0,0,-1,0.866,1,90.44,1,790,0 +2003,2,13,20,30,0,0,-1,0.866,1.2000000000000002,90.32000000000001,1,790,0 +2003,2,13,21,30,0,0,-1,0.866,1.4000000000000001,90.87,2,790,0 +2003,2,13,22,30,0,0,-1,0.866,1.5,90.69,2,790,0 +2003,2,13,23,30,0,0,-1,0.866,1.5,90.54,2,790,0 +2003,2,14,0,30,0,0,-1,0.866,1.6,90.09,2,790,0 +2003,2,14,1,30,0,0,-1,0.866,1.5,88.85000000000001,2,790,0 +2003,2,14,2,30,0,0,-1,0.866,1.4000000000000001,87.10000000000001,1,790,0 +2003,2,14,3,30,0,0,-2,0.866,1.2000000000000002,85.51,1,790,0 +2003,2,14,4,30,0,0,-2,0.866,1,84.38,1,790,0 +2003,2,14,5,30,0,0,-2,0.866,0.9,83.98,1,790,0 +2003,2,14,6,30,0,0,-2,0.866,0.7000000000000001,84.44,1,790,0 +2003,2,14,7,30,22,0,-1,0.866,0.7000000000000001,81.56,3,790,22 +2003,2,14,8,30,16,0,-1,0.866,0.8,80.2,4,790,16 +2003,2,14,9,30,182,76,0,0.866,1.3,71.12,6,790,214 +2003,2,14,10,30,250,115,-1,0.866,2.4000000000000004,64.83,7,790,310 +2003,2,14,11,30,220,510,-1,0.866,3.4000000000000004,58.38,8,790,520 +2003,2,14,12,30,277,348,-1,0.866,4.1000000000000005,56.92,8,790,486 +2003,2,14,13,30,277,171,-2,0.866,4.6000000000000005,56.27,8,790,373 +2003,2,14,14,30,150,5,-2,0.866,4.800000000000001,59.64,7,790,152 +2003,2,14,15,30,136,30,-2,0.866,4.1000000000000005,67.97,5,800,147 +2003,2,14,16,30,12,0,-2,0.866,2.7,77.75,2,800,12 +2003,2,14,17,30,0,0,-3,0.866,1.5,85.78,0,800,0 +2003,2,14,18,30,0,0,-3,0.866,1,89.86,0,800,0 +2003,2,14,19,30,0,0,-3,0.866,0.8,88.33,0,800,0 +2003,2,14,20,30,0,0,-3,0.866,0.7000000000000001,93.25,-1,800,0 +2003,2,14,21,30,0,0,-4,0.866,0.6000000000000001,97.66,-2,800,0 +2003,2,14,22,30,0,0,-4,0.866,0.6000000000000001,94.8,-2,800,0 +2003,2,14,23,30,0,0,-5,0.866,0.7000000000000001,99.05,-2,800,0 +2003,2,15,0,30,0,0,-5,0.866,0.7000000000000001,96.3,-3,800,0 +2003,2,15,1,30,0,0,-5,0.866,0.8,94.09,-3,800,0 +2003,2,15,2,30,0,0,-6,0.866,1.1,99.17,-4,800,0 +2003,2,15,3,30,0,0,-6,0.866,1.4000000000000001,96.51,-4,800,0 +2003,2,15,4,30,0,0,-6,0.866,1.6,93.58,-4,800,0 +2003,2,15,5,30,0,0,-7,0.866,1.8,90.62,-4,800,0 +2003,2,15,6,30,0,0,-7,0.866,1.8,81.3,-3,800,0 +2003,2,15,7,30,21,0,-7,0.866,1.7000000000000002,74.81,-2,800,21 +2003,2,15,8,30,75,535,-7,0.866,1.8,67.98,0,800,221 +2003,2,15,9,30,49,0,-6,0.866,2.1,62.5,0,800,49 +2003,2,15,10,30,114,0,-5,0.866,2.5,64.33,2,800,114 +2003,2,15,11,30,283,88,-5,0.866,3,61.160000000000004,3,800,335 +2003,2,15,12,30,297,109,-5,0.866,3.2,57.53,4,800,363 +2003,2,15,13,30,43,0,-5,0.866,3.1,58.24,4,800,43 +2003,2,15,14,30,48,0,-5,0.866,2.9000000000000004,62.56,3,800,48 +2003,2,15,15,30,32,0,-5,0.866,2.3000000000000003,67.11,2,800,32 +2003,2,15,16,30,60,560,-5,0.866,1.7000000000000002,71.94,0,800,167 +2003,2,15,17,30,0,0,-6,0.866,1.6,76.92,-1,800,0 +2003,2,15,18,30,0,0,-6,0.866,1.3,81.42,-2,800,0 +2003,2,15,19,30,0,0,-6,0.866,0.9,86.02,-3,800,0 +2003,2,15,20,30,0,0,-7,0.866,0.8,90.96000000000001,-4,800,0 +2003,2,15,21,30,0,0,-7,0.866,0.8,89.86,-4,800,0 +2003,2,15,22,30,0,0,-7,0.866,0.8,88.71000000000001,-4,800,0 +2003,2,15,23,30,0,0,-7,0.866,1,80.57000000000001,-3,800,0 +2003,2,16,0,30,0,0,-8,0.866,1.2000000000000002,78.9,-3,800,0 +2003,2,16,1,30,0,0,-8,0.866,1.6,77.16,-3,800,0 +2003,2,16,2,30,0,0,-8,0.866,2.3000000000000003,74.46000000000001,-3,800,0 +2003,2,16,3,30,0,0,-9,0.866,3,71.51,-3,800,0 +2003,2,16,4,30,0,0,-9,0.866,3.2,74.15,-4,800,0 +2003,2,16,5,30,0,0,-10,0.866,3,71.69,-4,800,0 +2003,2,16,6,30,0,0,-10,0.866,3,64.38,-3,800,0 +2003,2,16,7,30,34,383,-10,0.866,3,53.53,0,800,73 +2003,2,16,8,30,67,601,-8,0.866,2,47.51,3,800,234 +2003,2,16,9,30,86,739,-8,0.866,0.8,43.28,6,800,400 +2003,2,16,10,30,99,825,-8,0.866,0.30000000000000004,37.49,7,800,539 +2003,2,16,11,30,115,842,-8,0.866,0.1,35.22,8,800,618 +2003,2,16,12,30,165,722,-8,0.866,0.30000000000000004,35.82,8,800,605 +2003,2,16,13,30,281,191,-7,0.866,0.7000000000000001,40.02,7,800,391 +2003,2,16,14,30,229,158,-6,0.866,0.7000000000000001,47.730000000000004,6,800,307 +2003,2,16,15,30,73,704,-4,0.866,0.30000000000000004,62.11,4,800,325 +2003,2,16,16,30,49,527,-4,0.866,0.30000000000000004,72.42,1,800,152 +2003,2,16,17,30,0,0,-5,0.866,0.9,70.4,0,800,0 +2003,2,16,18,30,0,0,-5,0.866,1.6,75.49,0,800,0 +2003,2,16,19,30,0,0,-5,0.866,2.2,72.2,0,800,0 +2003,2,16,20,30,0,0,-4,0.866,2.5,74.67,0,800,0 +2003,2,16,21,30,0,0,-4,0.866,2.5,76.95,0,800,0 +2003,2,16,22,30,0,0,-4,0.866,2.3000000000000003,78.65,0,800,0 +2003,2,16,23,30,0,0,-4,0.866,2.6,78.67,0,800,0 +2003,2,17,0,30,0,0,-5,0.866,3.5,75.77,0,800,0 +2003,2,17,1,30,0,0,-7,0.866,3.9000000000000004,69.38,-1,800,0 +2003,2,17,2,30,0,0,-9,0.866,4,65.42,-2,800,0 +2003,2,17,3,30,0,0,-10,0.866,4.1000000000000005,63.36,-2,800,0 +2003,2,17,4,30,0,0,-12,0.866,4,57.76,-3,800,0 +2003,2,17,5,30,0,0,-12,0.866,3.9000000000000004,57.76,-4,800,0 +2003,2,17,6,30,0,0,-13,0.866,4,51.42,-3,800,0 +2003,2,17,7,30,30,594,-12,0.866,4.800000000000001,46.68,-1,800,93 +2003,2,17,8,30,55,863,-12,0.866,6.1000000000000005,40.61,1,800,299 +2003,2,17,9,30,72,964,-13,0.866,6.4,36.19,2,800,486 +2003,2,17,10,30,84,1012,-13,0.866,5.9,32.22,3,800,629 +2003,2,17,11,30,93,1026,-14,0.866,5.1000000000000005,29.41,4,800,710 +2003,2,17,12,30,94,1024,-13,0.866,4.3,27.62,5,800,724 +2003,2,17,13,30,94,998,-13,0.866,3.5,28.490000000000002,5,800,669 +2003,2,17,14,30,92,933,-12,0.866,2.8000000000000003,29.990000000000002,5,800,550 +2003,2,17,15,30,78,839,-10,0.866,1.7000000000000002,41.980000000000004,3,800,381 +2003,2,17,16,30,55,641,-9,0.866,0.9,50.34,1,800,183 +2003,2,17,17,30,0,0,-9,0.866,0.6000000000000001,52.83,0,800,0 +2003,2,17,18,30,0,0,-9,0.866,0.4,56.27,0,800,0 +2003,2,17,19,30,0,0,-9,0.866,0.2,55.84,0,800,0 +2003,2,17,20,30,0,0,-9,0.866,0.4,59.13,-1,800,0 +2003,2,17,21,30,0,0,-9,0.866,0.7000000000000001,58.620000000000005,-1,800,0 +2003,2,17,22,30,0,0,-9,0.866,0.8,63.28,-1,800,0 +2003,2,17,23,30,0,0,-9,0.866,0.9,63.690000000000005,-1,800,0 +2003,2,18,0,30,0,0,-9,0.866,1,63.730000000000004,-2,800,0 +2003,2,18,1,30,0,0,-10,0.866,0.9,62.93,-2,800,0 +2003,2,18,2,30,0,0,-10,0.866,0.8,62.04,-2,800,0 +2003,2,18,3,30,0,0,-10,0.866,0.6000000000000001,61.06,-2,800,0 +2003,2,18,4,30,0,0,-10,0.866,0.4,60.24,-2,800,0 +2003,2,18,5,30,0,0,-10,0.866,0.2,59.96,-2,800,0 +2003,2,18,6,30,0,0,-10,0.866,0.2,55.81,-1,800,0 +2003,2,18,7,30,41,38,-9,0.866,0.30000000000000004,55.06,0,800,45 +2003,2,18,8,30,115,52,-9,0.866,0.6000000000000001,54.06,0,800,130 +2003,2,18,9,30,188,287,-9,0.866,1.5,48.57,1,800,313 +2003,2,18,10,30,177,579,-9,0.866,2.3000000000000003,49.54,2,800,491 +2003,2,18,11,30,159,731,-9,0.866,2.4000000000000004,50.63,2,800,603 +2003,2,18,12,30,128,830,-8,0.866,2.3000000000000003,51.61,2,800,642 +2003,2,18,13,30,125,797,-8,0.866,2,52.68,2,800,589 +2003,2,18,14,30,102,769,-8,0.866,1.8,53.49,2,800,483 +2003,2,18,15,30,126,458,-8,0.866,1.4000000000000001,54.34,1,800,294 +2003,2,18,16,30,67,0,-7,0.866,1.1,66.87,0,800,67 +2003,2,18,17,30,5,0,-8,0.866,1.1,67.67,-1,800,5 +2003,2,18,18,30,0,0,-8,0.866,0.9,67.89,-1,800,0 +2003,2,18,19,30,0,0,-7,0.866,0.6000000000000001,68.96000000000001,-1,800,0 +2003,2,18,20,30,0,0,-7,0.866,0.4,74.95,-2,800,0 +2003,2,18,21,30,0,0,-7,0.866,0.5,74.37,-2,800,0 +2003,2,18,22,30,0,0,-8,0.866,0.6000000000000001,77.78,-3,800,0 +2003,2,18,23,30,0,0,-8,0.866,0.7000000000000001,80.54,-4,800,0 +2003,2,19,0,30,0,0,-9,0.866,0.8,77.29,-4,800,0 +2003,2,19,1,30,0,0,-10,0.866,0.9,79,-5,800,0 +2003,2,19,2,30,0,0,-10,0.866,1.3,74,-5,800,0 +2003,2,19,3,30,0,0,-11,0.866,1.8,74.53,-6,800,0 +2003,2,19,4,30,0,0,-12,0.866,2.3000000000000003,69.67,-6,800,0 +2003,2,19,5,30,0,0,-13,0.866,2.6,72.16,-7,800,0 +2003,2,19,6,30,0,0,-13,0.866,3.1,65.95,-6,800,0 +2003,2,19,7,30,33,565,-12,0.866,3,50.410000000000004,-2,800,98 +2003,2,19,8,30,57,845,-11,0.866,1.7000000000000002,43.09,0,800,304 +2003,2,19,9,30,72,957,-12,0.866,0.5,38.63,2,800,492 +2003,2,19,10,30,83,1010,-12,0.866,0.30000000000000004,34.86,3,800,636 +2003,2,19,11,30,93,1026,-13,0.866,0.7000000000000001,31.44,4,800,720 +2003,2,19,12,30,95,1031,-13,0.866,1.2000000000000002,28.740000000000002,5,800,739 +2003,2,19,13,30,91,1018,-14,0.866,1.6,27.11,5,800,688 +2003,2,19,14,30,84,979,-14,0.866,1.9000000000000001,27.87,4,800,573 +2003,2,19,15,30,70,901,-14,0.866,1.6,29.240000000000002,3,800,404 +2003,2,19,16,30,49,735,-11,0.866,1.4000000000000001,43.59,0,800,202 +2003,2,19,17,30,12,225,-13,0.866,1.7000000000000002,43,-1,800,17 +2003,2,19,18,30,0,0,-14,0.866,1.8,45.33,-2,800,0 +2003,2,19,19,30,0,0,-13,0.866,1.7000000000000002,46.38,-2,800,0 +2003,2,19,20,30,0,0,-13,0.866,1.5,49.4,-3,800,0 +2003,2,19,21,30,0,0,-14,0.866,1.4000000000000001,51.39,-4,800,0 +2003,2,19,22,30,0,0,-14,0.866,1.3,49.72,-4,800,0 +2003,2,19,23,30,0,0,-15,0.866,1.3,48.78,-4,800,0 +2003,2,20,0,30,0,0,-15,0.866,1.3,48.33,-4,800,0 +2003,2,20,1,30,0,0,-15,0.866,1.5,52.2,-5,800,0 +2003,2,20,2,30,0,0,-15,0.866,2,51.75,-5,800,0 +2003,2,20,3,30,0,0,-15,0.866,2.5,50.64,-5,800,0 +2003,2,20,4,30,0,0,-15,0.866,2.8000000000000003,53.36,-6,800,0 +2003,2,20,5,30,0,0,-16,0.866,2.8000000000000003,52.480000000000004,-6,800,0 +2003,2,20,6,30,0,0,-15,0.866,3,45.37,-4,800,0 +2003,2,20,7,30,34,561,-14,0.866,3.2,39.800000000000004,-1,800,101 +2003,2,20,8,30,59,830,-13,0.866,2.9000000000000004,36.39,1,800,305 +2003,2,20,9,30,79,923,-12,0.866,2.6,35.49,4,800,488 +2003,2,20,10,30,95,860,-11,0.866,2.3000000000000003,33.29,5,800,570 +2003,2,20,11,30,107,886,-10,0.866,2,33.39,6,800,653 +2003,2,20,12,30,126,855,-10,0.866,1.7000000000000002,35.27,6,800,665 +2003,2,20,13,30,106,862,-9,0.866,1.3,37.32,6,800,616 +2003,2,20,14,30,102,900,-8,0.866,1.1,39.24,6,800,556 +2003,2,20,15,30,85,816,-8,0.866,0.7000000000000001,46.46,4,800,391 +2003,2,20,16,30,58,641,-6,0.866,0.30000000000000004,63.03,1,800,194 +2003,2,20,17,30,14,176,-8,0.866,0.1,58.89,0,800,18 +2003,2,20,18,30,0,0,-8,0.866,0.1,60.88,0,800,0 +2003,2,20,19,30,0,0,-8,0.866,0.4,64.14,-1,800,0 +2003,2,20,20,30,0,0,-9,0.866,0.7000000000000001,67.34,-2,800,0 +2003,2,20,21,30,0,0,-9,0.866,1.1,65.64,-2,800,0 +2003,2,20,22,30,0,0,-9,0.866,1.6,64.65,-2,800,0 +2003,2,20,23,30,0,0,-9,0.866,2,64.53,-2,800,0 +2003,2,21,0,30,0,0,-9,0.866,2.2,69.57000000000001,-3,800,0 +2003,2,21,1,30,0,0,-9,0.866,2.2,69.8,-3,800,0 +2003,2,21,2,30,0,0,-9,0.866,2,65.8,-2,800,0 +2003,2,21,3,30,0,0,-9,0.866,1.6,66.02,-2,800,0 +2003,2,21,4,30,0,0,-9,0.866,1.2000000000000002,65.99,-2,800,0 +2003,2,21,5,30,0,0,-9,0.866,1.2000000000000002,65.99,-2,800,0 +2003,2,21,6,30,0,0,-9,0.866,1.4000000000000001,61.46,-1,800,0 +2003,2,21,7,30,38,519,-9,0.866,2.3000000000000003,58.76,0,800,102 +2003,2,21,8,30,63,811,-8,0.866,3.6,52.43,1,800,307 +2003,2,21,9,30,79,926,-9,0.866,4.6000000000000005,46.32,3,800,494 +2003,2,21,10,30,88,986,-9,0.866,5.300000000000001,40.730000000000004,4,800,638 +2003,2,21,11,30,102,907,-10,0.866,5.5,39.11,4,800,666 +2003,2,21,12,30,102,924,-10,0.866,5.6000000000000005,37.980000000000004,4,800,688 +2003,2,21,13,30,296,157,-10,0.866,5.5,37.57,4,800,390 +2003,2,21,14,30,102,785,-10,0.866,5.2,41,3,800,502 +2003,2,21,15,30,73,874,-10,0.866,4.1000000000000005,45.59,2,800,405 +2003,2,21,16,30,52,703,-9,0.866,2.5,53.94,1,800,204 +2003,2,21,17,30,21,0,-8,0.866,1.9000000000000001,61.61,0,800,21 +2003,2,21,18,30,0,0,-8,0.866,2,67.11,-1,800,0 +2003,2,21,19,30,0,0,-8,0.866,1.9000000000000001,67.65,-1,800,0 +2003,2,21,20,30,0,0,-8,0.866,1.6,67.51,-1,800,0 +2003,2,21,21,30,0,0,-8,0.866,1.4000000000000001,72.15,-2,800,0 +2003,2,21,22,30,0,0,-8,0.866,1.2000000000000002,71.04,-2,800,0 +2003,2,21,23,30,0,0,-8,0.866,1.1,68.87,-2,800,0 +2003,2,22,0,30,0,0,-9,0.866,1.2000000000000002,67.74,-2,800,0 +2003,2,22,1,30,0,0,-9,0.866,1.4000000000000001,72.38,-3,790,0 +2003,2,22,2,30,0,0,-9,0.866,1.6,71.5,-3,790,0 +2003,2,22,3,30,0,0,-9,0.866,1.8,70.35000000000001,-3,790,0 +2003,2,22,4,30,0,0,-10,0.866,2,67.97,-3,790,0 +2003,2,22,5,30,0,0,-10,0.866,2.1,66.34,-3,790,0 +2003,2,22,6,30,0,0,-10,0.866,2.5,60.46,-2,790,0 +2003,2,22,7,30,44,1,-9,0.866,3.2,51.7,0,790,44 +2003,2,22,8,30,65,665,-9,0.866,3.4000000000000004,48.58,1,790,268 +2003,2,22,9,30,80,802,-10,0.866,2.8000000000000003,46.5,2,790,444 +2003,2,22,10,30,225,455,-10,0.866,2.2,43.47,3,790,481 +2003,2,22,11,30,118,867,-9,0.866,2.1,45.800000000000004,3,790,660 +2003,2,22,12,30,150,794,-8,0.866,2.4000000000000004,49,3,790,657 +2003,2,22,13,30,98,903,-8,0.866,2.5,46.74,4,790,640 +2003,2,22,14,30,124,720,-8,0.866,2,46.660000000000004,4,790,494 +2003,2,22,15,30,138,435,-7,0.866,1.3,52.43,2,790,305 +2003,2,22,16,30,9,0,-5,0.866,2.3000000000000003,69.53,0,790,9 +2003,2,22,17,30,1,0,-6,0.866,3.4000000000000004,76.31,-1,790,1 +2003,2,22,18,30,0,0,-7,0.866,2.5,74.17,-2,790,0 +2003,2,22,19,30,0,0,-9,0.866,1.5,73.45,-3,790,0 +2003,2,22,20,30,0,0,-9,0.866,1,69.85000000000001,-3,790,0 +2003,2,22,21,30,0,0,-9,0.866,1,74.32000000000001,-4,790,0 +2003,2,22,22,30,0,0,-9,0.866,1.9000000000000001,79.53,-5,790,0 +2003,2,22,23,30,0,0,-10,0.866,3.4000000000000004,83.37,-6,790,0 +2003,2,23,0,30,0,0,-11,0.866,4.6000000000000005,84.06,-7,790,0 +2003,2,23,1,30,0,0,-12,0.866,4.7,80.31,-8,790,0 +2003,2,23,2,30,0,0,-14,0.866,3.7,75.76,-9,790,0 +2003,2,23,3,30,0,0,-15,0.866,2.4000000000000004,73.77,-10,790,0 +2003,2,23,4,30,0,0,-16,0.866,1.5,68.86,-10,790,0 +2003,2,23,5,30,0,0,-17,0.866,0.8,71.11,-11,790,0 +2003,2,23,6,30,0,0,-17,0.866,0.4,63.84,-10,790,0 +2003,2,23,7,30,20,0,-17,0.866,0.2,55.25,-8,790,20 +2003,2,23,8,30,110,8,-16,0.866,0.2,49.77,-6,790,113 +2003,2,23,9,30,211,209,-15,0.866,0.4,45.550000000000004,-4,790,307 +2003,2,23,10,30,168,652,-15,0.866,0.6000000000000001,40.96,-2,790,539 +2003,2,23,11,30,307,289,-15,0.866,0.7000000000000001,39.03,-1,790,490 +2003,2,23,12,30,293,388,-14,0.866,0.7000000000000001,40.04,-1,790,543 +2003,2,23,13,30,302,162,-14,0.866,0.7000000000000001,41.35,-1,790,401 +2003,2,23,14,30,55,0,-13,0.866,1,46.04,-2,790,55 +2003,2,23,15,30,67,0,-13,0.866,1.6,54.94,-3,790,67 +2003,2,23,16,30,74,371,-13,0.866,2.7,64.27,-5,790,157 +2003,2,23,17,30,18,0,-13,0.866,3.4000000000000004,67.57000000000001,-7,790,18 +2003,2,23,18,30,0,0,-14,0.866,3.4000000000000004,70.98,-8,790,0 +2003,2,23,19,30,0,0,-14,0.866,3.6,74.96000000000001,-9,800,0 +2003,2,23,20,30,0,0,-14,0.866,4.5,72.93,-9,800,0 +2003,2,23,21,30,0,0,-15,0.866,5.1000000000000005,75.88,-10,800,0 +2003,2,23,22,30,0,0,-16,0.866,5.2,71.51,-10,800,0 +2003,2,23,23,30,0,0,-16,0.866,4.9,72.54,-11,800,0 +2003,2,24,0,30,0,0,-17,0.866,4.4,74,-12,800,0 +2003,2,24,1,30,0,0,-18,0.866,4,70.81,-12,800,0 +2003,2,24,2,30,0,0,-18,0.866,3.7,68.83,-12,800,0 +2003,2,24,3,30,0,0,-18,0.866,3.6,72.75,-13,800,0 +2003,2,24,4,30,0,0,-19,0.866,3.5,70.55,-13,800,0 +2003,2,24,5,30,0,0,-19,0.866,3.4000000000000004,74.39,-14,800,0 +2003,2,24,6,30,0,0,-19,0.866,3.3000000000000003,66.24,-13,800,0 +2003,2,24,7,30,51,441,-19,0.866,3,62.910000000000004,-12,800,112 +2003,2,24,8,30,86,737,-18,0.866,2.9000000000000004,58.910000000000004,-10,800,318 +2003,2,24,9,30,110,855,-16,0.866,3.3000000000000003,56.980000000000004,-8,800,506 +2003,2,24,10,30,126,910,-15,0.866,3.8000000000000003,55.370000000000005,-6,800,648 +2003,2,24,11,30,139,927,-14,0.866,4.2,52.96,-4,800,729 +2003,2,24,12,30,254,499,-13,0.866,4.5,53.18,-3,800,578 +2003,2,24,13,30,153,876,-12,0.866,4.800000000000001,55.9,-3,800,688 +2003,2,24,14,30,171,750,-12,0.866,4.9,61.480000000000004,-4,800,564 +2003,2,24,15,30,148,625,-12,0.866,4.6000000000000005,65.43,-5,800,393 +2003,2,24,16,30,97,437,-12,0.866,4.1000000000000005,73.24,-7,800,197 +2003,2,24,17,30,23,0,-14,0.866,3.5,71.5,-8,800,23 +2003,2,24,18,30,0,0,-15,0.866,3,70.68,-9,800,0 +2003,2,24,19,30,0,0,-15,0.866,2.4000000000000004,72.93,-10,800,0 +2003,2,24,20,30,0,0,-16,0.866,1.8,71.57000000000001,-10,800,0 +2003,2,24,21,30,0,0,-16,0.866,1.4000000000000001,71.85000000000001,-10,800,0 +2003,2,24,22,30,0,0,-15,0.866,1.1,67.85,-9,800,0 +2003,2,24,23,30,0,0,-15,0.866,1.1,70.43,-9,800,0 +2003,2,25,0,30,0,0,-14,0.866,1.1,73.41,-9,800,0 +2003,2,25,1,30,0,0,-14,0.866,1,73.38,-9,800,0 +2003,2,25,2,30,0,0,-14,0.866,0.8,73.06,-9,800,0 +2003,2,25,3,30,0,0,-14,0.866,0.6000000000000001,70.17,-8,800,0 +2003,2,25,4,30,0,0,-13,0.866,0.5,75.38,-8,800,0 +2003,2,25,5,30,0,0,-13,0.866,0.4,78.08,-8,800,0 +2003,2,25,6,30,0,0,-12,0.866,0.2,74.43,-7,800,0 +2003,2,25,7,30,52,418,-11,0.866,0.2,68.57000000000001,-5,800,112 +2003,2,25,8,30,88,562,-10,0.866,0.7000000000000001,60.93,-2,800,268 +2003,2,25,9,30,114,686,-8,0.866,1.2000000000000002,61.2,0,800,436 +2003,2,25,10,30,152,714,-6,0.866,1.6,61.61,1,800,565 +2003,2,25,11,30,159,769,-5,0.866,2.2,65.42,2,800,652 +2003,2,25,12,30,194,697,-5,0.866,2.9000000000000004,67.77,2,790,650 +2003,2,25,13,30,270,406,-5,0.866,3.2,68.58,1,790,519 +2003,2,25,14,30,176,11,-5,0.866,2.8000000000000003,68.12,0,790,182 +2003,2,25,15,30,175,98,-5,0.866,2.3000000000000003,71.89,0,800,214 +2003,2,25,16,30,86,269,-6,0.866,2,79.68,-1,800,148 +2003,2,25,17,30,16,0,-7,0.866,1.8,83.77,-3,800,16 +2003,2,25,18,30,0,0,-8,0.866,1.7000000000000002,82.96000000000001,-4,800,0 +2003,2,25,19,30,0,0,-9,0.866,1.7000000000000002,79.22,-4,800,0 +2003,2,25,20,30,0,0,-9,0.866,1.7000000000000002,83.4,-5,800,0 +2003,2,25,21,30,0,0,-9,0.866,1.8,81.15,-5,800,0 +2003,2,25,22,30,0,0,-10,0.866,1.7000000000000002,78.73,-5,800,0 +2003,2,25,23,30,0,0,-10,0.866,1.3,82.21000000000001,-6,800,0 +2003,2,26,0,30,0,0,-10,0.866,0.8,85.66,-6,790,0 +2003,2,26,1,30,0,0,-11,0.866,0.5,83.15,-7,790,0 +2003,2,26,2,30,0,0,-11,0.866,0.4,88.05,-8,790,0 +2003,2,26,3,30,0,0,-11,0.866,0.2,87.23,-8,790,0 +2003,2,26,4,30,0,0,-11,0.866,0,86.46000000000001,-8,790,0 +2003,2,26,5,30,0,0,-11,0.866,0,85.72,-8,790,0 +2003,2,26,6,30,0,0,-11,0.866,0.2,79.5,-7,790,0 +2003,2,26,7,30,48,302,-11,0.866,0.7000000000000001,66,-4,790,93 +2003,2,26,8,30,67,684,-8,0.866,1,63.7,-1,790,290 +2003,2,26,9,30,107,721,-7,0.866,1.2000000000000002,63.77,0,790,449 +2003,2,26,10,30,135,769,-6,0.866,1.6,63.870000000000005,1,790,583 +2003,2,26,11,30,173,740,-5,0.866,2.2,67.21000000000001,2,790,652 +2003,2,26,12,30,190,715,-4,0.866,2.6,69.31,2,790,661 +2003,2,26,13,30,212,599,-4,0.866,2.7,69.91,2,790,583 +2003,2,26,14,30,188,519,-4,0.866,2.5,69.27,1,790,464 +2003,2,26,15,30,179,132,-4,0.866,2.1,74.76,0,790,232 +2003,2,26,16,30,71,0,-4,0.866,1.7000000000000002,86.69,0,790,71 +2003,2,26,17,30,4,0,-5,0.866,1.7000000000000002,88.64,-2,790,4 +2003,2,26,18,30,0,0,-6,0.866,1.5,90.78,-3,790,0 +2003,2,26,19,30,0,0,-6,0.866,1.2000000000000002,87.34,-3,790,0 +2003,2,26,20,30,0,0,-7,0.866,1,85.25,-3,790,0 +2003,2,26,21,30,0,0,-7,0.866,0.8,90.27,-4,790,0 +2003,2,26,22,30,0,0,-7,0.866,0.8,88.27,-4,790,0 +2003,2,26,23,30,0,0,-7,0.866,0.8,87.29,-4,790,0 +2003,2,27,0,30,0,0,-7,0.866,0.7000000000000001,85.92,-4,790,0 +2003,2,27,1,30,0,0,-8,0.866,0.4,83.55,-4,790,0 +2003,2,27,2,30,0,0,-8,0.866,0.30000000000000004,87.33,-5,790,0 +2003,2,27,3,30,0,0,-9,0.866,0.4,84.72,-5,790,0 +2003,2,27,4,30,0,0,-9,0.866,0.5,81.95,-5,790,0 +2003,2,27,5,30,0,0,-10,0.866,0.4,84.94,-6,790,0 +2003,2,27,6,30,0,0,-10,0.866,0.4,76.18,-5,790,0 +2003,2,27,7,30,17,0,-9,0.866,0.5,70.29,-3,790,17 +2003,2,27,8,30,92,0,-8,0.866,0.4,67.45,-1,790,92 +2003,2,27,9,30,115,0,-7,0.866,0.4,63.07,0,790,115 +2003,2,27,10,30,156,5,-6,0.866,0.8,60.480000000000004,1,790,159 +2003,2,27,11,30,254,25,-6,0.866,1.1,60.410000000000004,2,790,271 +2003,2,27,12,30,146,5,-6,0.866,1.5,56.19,3,790,150 +2003,2,27,13,30,295,72,-6,0.866,2.1,60.18,2,790,340 +2003,2,27,14,30,220,35,-6,0.866,2.8000000000000003,60.75,1,790,239 +2003,2,27,15,30,116,0,-6,0.866,3.1,66.61,0,790,116 +2003,2,27,16,30,80,0,-6,0.866,3,78.45,0,790,80 +2003,2,27,17,30,14,0,-6,0.866,2.7,82.94,-2,790,14 +2003,2,27,18,30,0,0,-7,0.866,2.2,85.85000000000001,-3,800,0 +2003,2,27,19,30,0,0,-7,0.866,1.7000000000000002,88.36,-4,800,0 +2003,2,27,20,30,0,0,-8,0.866,1.4000000000000001,84.60000000000001,-4,800,0 +2003,2,27,21,30,0,0,-8,0.866,1.3,88.78,-5,800,0 +2003,2,27,22,30,0,0,-8,0.866,1.2000000000000002,86.82000000000001,-5,790,0 +2003,2,27,23,30,0,0,-9,0.866,1.1,92.14,-5,790,0 +2003,2,28,0,30,0,0,-9,0.866,1.1,90.73,-6,790,0 +2003,2,28,1,30,0,0,-9,0.866,1.1,89.17,-6,790,0 +2003,2,28,2,30,0,0,-9,0.866,1.2000000000000002,87.74,-6,790,0 +2003,2,28,3,30,0,0,-9,0.866,1.4000000000000001,86.43,-6,790,0 +2003,2,28,4,30,0,0,-10,0.866,1.5,84.83,-6,790,0 +2003,2,28,5,30,0,0,-10,0.866,1.5,90.25,-6,790,0 +2003,2,28,6,30,0,0,-10,0.866,1.2000000000000002,82.42,-5,790,0 +2003,2,28,7,30,51,322,-10,0.866,1.1,72.85000000000001,-4,790,102 +2003,2,28,8,30,89,0,-9,0.866,1.1,68.02,-2,790,89 +2003,2,28,9,30,213,309,-8,0.866,1.4000000000000001,63.47,0,790,362 +2003,2,28,10,30,284,89,-7,0.866,1.9000000000000001,62.07,0,790,337 +2003,2,28,11,30,255,515,-7,0.866,2.2,59.14,0,790,593 +2003,2,28,12,30,341,141,-6,0.866,2.2,59.49,0,790,436 +2003,2,28,13,30,302,303,-6,0.866,2,64.07000000000001,0,790,492 +2003,2,28,14,30,277,187,-6,0.866,1.7000000000000002,64.31,0,790,378 +2003,2,28,15,30,181,94,-6,0.866,1.2000000000000002,68.85000000000001,0,790,220 +2003,2,28,16,30,97,72,-7,0.866,0.8,73.83,-1,790,115 +2003,2,28,17,30,23,60,-7,0.866,0.6000000000000001,82.44,-3,790,26 +2003,2,28,18,30,0,0,-8,0.866,0.7000000000000001,84.4,-4,790,0 +2003,2,28,19,30,0,0,-8,0.866,0.7000000000000001,80.4,-4,790,0 +2003,2,28,20,30,0,0,-9,0.866,0.7000000000000001,83.55,-5,790,0 +2003,2,28,21,30,0,0,-10,0.866,0.7000000000000001,78.62,-5,790,0 +2003,2,28,22,30,0,0,-11,0.866,1.1,78.64,-6,790,0 +2003,2,28,23,30,0,0,-12,0.866,1.7000000000000002,72.64,-6,790,0 +2003,3,1,0,30,0,0,-13,0.866,2.3000000000000003,67.18,-6,790,0 +2003,3,1,1,30,0,0,-13,0.866,2.7,67.67,-7,790,0 +2003,3,1,2,30,0,0,-14,0.866,2.9000000000000004,62.99,-7,790,0 +2003,3,1,3,30,0,0,-15,0.866,3,59.56,-7,790,0 +2003,3,1,4,30,0,0,-15,0.866,3,62.08,-7,790,0 +2003,3,1,5,30,0,0,-16,0.866,3,61.2,-8,790,0 +2003,3,1,6,30,0,0,-15,0.866,3.2,57.24,-7,790,0 +2003,3,1,7,30,43,464,-14,0.866,2.9000000000000004,51.13,-4,800,119 +2003,3,1,8,30,76,658,-11,0.866,2.4000000000000004,50.69,-1,800,300 +2003,3,1,9,30,104,752,-10,0.866,2.5,49.370000000000005,0,800,471 +2003,3,1,10,30,162,708,-9,0.866,2.7,51.27,0,800,586 +2003,3,1,11,30,160,786,-9,0.866,3,52.43,0,800,680 +2003,3,1,12,30,337,260,-9,0.866,3.3000000000000003,53.95,0,800,512 +2003,3,1,13,30,289,56,-8,0.866,3.6,55.65,0,800,325 +2003,3,1,14,30,195,13,-8,0.866,3.8000000000000003,61.230000000000004,0,800,203 +2003,3,1,15,30,182,224,-8,0.866,3.8000000000000003,66.53,-1,800,275 +2003,3,1,16,30,95,39,-8,0.866,3.6,76.27,-2,800,105 +2003,3,1,17,30,24,37,-9,0.866,3.4000000000000004,78.32000000000001,-4,800,26 +2003,3,1,18,30,0,0,-10,0.866,3.2,78.9,-5,800,0 +2003,3,1,19,30,0,0,-10,0.866,2.9000000000000004,82.3,-6,800,0 +2003,3,1,20,30,0,0,-10,0.866,2.4000000000000004,81.18,-6,800,0 +2003,3,1,21,30,0,0,-10,0.866,1.9000000000000001,79.60000000000001,-6,800,0 +2003,3,1,22,30,0,0,-11,0.866,1.5,82.41,-7,800,0 +2003,3,1,23,30,0,0,-12,0.866,1.3,84.99,-8,800,0 +2003,3,2,0,30,0,0,-12,0.866,1.3,88.95,-9,800,0 +2003,3,2,1,30,0,0,-12,0.866,1.2000000000000002,86.57000000000001,-9,800,0 +2003,3,2,2,30,0,0,-13,0.866,1.2000000000000002,89.67,-10,800,0 +2003,3,2,3,30,0,0,-14,0.866,1.3,83.74,-10,800,0 +2003,3,2,4,30,0,0,-15,0.866,1.8,77.62,-10,800,0 +2003,3,2,5,30,0,0,-15,0.866,2.5,68.74,-9,800,0 +2003,3,2,6,30,0,0,-15,0.866,3,63.300000000000004,-8,800,0 +2003,3,2,7,30,51,580,-15,0.866,3.6,52.83,-5,800,149 +2003,3,2,8,30,85,798,-12,0.866,3.9000000000000004,46.300000000000004,-1,800,361 +2003,3,2,9,30,105,903,-11,0.866,3.8000000000000003,44,0,800,551 +2003,3,2,10,30,117,955,-11,0.866,3.8000000000000003,43.15,0,800,694 +2003,3,2,11,30,133,963,-10,0.866,4.2,43.64,1,800,774 +2003,3,2,12,30,133,967,-10,0.866,4.5,44.43,2,800,788 +2003,3,2,13,30,126,952,-10,0.866,4.7,45.54,2,800,734 +2003,3,2,14,30,106,930,-10,0.866,4.5,46.9,2,800,617 +2003,3,2,15,30,87,860,-9,0.866,3.9000000000000004,48.910000000000004,1,800,446 +2003,3,2,16,30,62,713,-8,0.866,3.1,62.95,0,790,242 +2003,3,2,17,30,24,325,-9,0.866,2.9000000000000004,61.22,-1,790,44 +2003,3,2,18,30,0,0,-9,0.866,3.1,63.78,-2,790,0 +2003,3,2,19,30,0,0,-9,0.866,3.3000000000000003,63.49,-2,790,0 +2003,3,2,20,30,0,0,-10,0.866,3.3000000000000003,62.06,-2,790,0 +2003,3,2,21,30,0,0,-10,0.866,3.3000000000000003,60.1,-2,790,0 +2003,3,2,22,30,0,0,-10,0.866,3.4000000000000004,58.25,-2,790,0 +2003,3,2,23,30,0,0,-11,0.866,3.4000000000000004,57,-2,790,0 +2003,3,3,0,30,0,0,-11,0.866,3.5,56.21,-2,790,0 +2003,3,3,1,30,0,0,-11,0.866,3.6,55.5,-2,790,0 +2003,3,3,2,30,0,0,-11,0.866,3.7,55.01,-2,790,0 +2003,3,3,3,30,0,0,-11,0.866,3.5,54.02,-2,790,0 +2003,3,3,4,30,0,0,-12,0.866,3.1,53.160000000000004,-2,790,0 +2003,3,3,5,30,0,0,-12,0.866,2.9000000000000004,53.230000000000004,-2,790,0 +2003,3,3,6,30,0,0,-11,0.866,2.8000000000000003,49.99,-1,790,0 +2003,3,3,7,30,47,611,-10,0.866,2.9000000000000004,50.54,0,790,153 +2003,3,3,8,30,72,836,-8,0.866,3.3000000000000003,50.870000000000005,1,790,365 +2003,3,3,9,30,91,925,-9,0.866,3.9000000000000004,49.02,2,790,554 +2003,3,3,10,30,105,970,-9,0.866,4.5,46.71,3,790,696 +2003,3,3,11,30,109,997,-8,0.866,4.800000000000001,44.76,4,790,778 +2003,3,3,12,30,112,996,-8,0.866,4.9,42.94,5,790,792 +2003,3,3,13,30,109,978,-7,0.866,4.7,44.44,5,790,738 +2003,3,3,14,30,117,806,-7,0.866,4,49.32,5,790,564 +2003,3,3,15,30,82,750,-6,0.866,2.7,57.89,4,790,398 +2003,3,3,16,30,63,713,-5,0.866,1.3,66.34,1,790,245 +2003,3,3,17,30,25,236,-7,0.866,0.6000000000000001,62.940000000000005,0,790,41 +2003,3,3,18,30,0,0,-7,0.866,0.30000000000000004,64.05,0,790,0 +2003,3,3,19,30,0,0,-8,0.866,0.30000000000000004,67.03,-1,790,0 +2003,3,3,20,30,0,0,-8,0.866,0.6000000000000001,69.61,-2,790,0 +2003,3,3,21,30,0,0,-9,0.866,1.4000000000000001,67.03,-2,790,0 +2003,3,3,22,30,0,0,-9,0.866,2.1,65.61,-2,790,0 +2003,3,3,23,30,0,0,-9,0.866,2.3000000000000003,70.41,-2,790,0 +2003,3,4,0,30,0,0,-9,0.866,2,70.17,-3,790,0 +2003,3,4,1,30,0,0,-9,0.866,1.5,68.94,-3,790,0 +2003,3,4,2,30,0,0,-9,0.866,1,73.76,-4,790,0 +2003,3,4,3,30,0,0,-10,0.866,1.4000000000000001,72.88,-4,790,0 +2003,3,4,4,30,0,0,-10,0.866,2.5,77.32000000000001,-5,790,0 +2003,3,4,5,30,0,0,-10,0.866,3.2,82.05,-6,790,0 +2003,3,4,6,30,0,0,-11,0.866,3.1,78.67,-6,790,0 +2003,3,4,7,30,6,0,-11,0.866,2.6,72.81,-5,790,6 +2003,3,4,8,30,145,47,-10,0.866,2.1,65.62,-3,790,162 +2003,3,4,9,30,125,0,-10,0.866,2.2,58.5,-1,790,125 +2003,3,4,10,30,157,6,-9,0.866,2.7,55.75,0,790,161 +2003,3,4,11,30,297,416,-9,0.866,3,57.06,0,790,579 +2003,3,4,12,30,347,105,-9,0.866,3.4000000000000004,57.410000000000004,0,790,419 +2003,3,4,13,30,326,219,-9,0.866,4,61.77,0,790,468 +2003,3,4,14,30,282,96,-9,0.866,4.4,60.63,-1,790,336 +2003,3,4,15,30,191,108,-10,0.866,4.4,67.96000000000001,-3,790,238 +2003,3,4,16,30,106,138,-10,0.866,4.1000000000000005,75.32000000000001,-5,790,142 +2003,3,4,17,30,30,67,-11,0.866,3.6,74.62,-6,790,34 +2003,3,4,18,30,0,0,-13,0.866,3,72.60000000000001,-7,790,0 +2003,3,4,19,30,0,0,-13,0.866,2.3000000000000003,74.11,-8,790,0 +2003,3,4,20,30,0,0,-14,0.866,2,70.7,-8,790,0 +2003,3,4,21,30,0,0,-14,0.866,1.9000000000000001,69.8,-8,790,0 +2003,3,4,22,30,0,0,-14,0.866,1.8,66.26,-7,790,0 +2003,3,4,23,30,0,0,-13,0.866,1.5,68.83,-7,790,0 +2003,3,5,0,30,0,0,-13,0.866,1.2000000000000002,71.47,-7,790,0 +2003,3,5,1,30,0,0,-13,0.866,0.9,71.56,-7,790,0 +2003,3,5,2,30,0,0,-13,0.866,0.8,76.82000000000001,-8,790,0 +2003,3,5,3,30,0,0,-13,0.866,0.9,75.94,-8,790,0 +2003,3,5,4,30,0,0,-13,0.866,1.1,74.60000000000001,-8,790,0 +2003,3,5,5,30,0,0,-13,0.866,1.6,72.65,-8,790,0 +2003,3,5,6,30,0,0,-14,0.866,2.5,65.33,-7,790,0 +2003,3,5,7,30,70,149,-14,0.866,3.8000000000000003,57.32,-5,790,97 +2003,3,5,8,30,153,238,-13,0.866,4.9,49.89,-3,790,239 +2003,3,5,9,30,95,951,-14,0.866,5.4,41.410000000000004,-1,790,580 +2003,3,5,10,30,104,1005,-14,0.866,5.5,37.76,0,790,726 +2003,3,5,11,30,109,1028,-14,0.866,5.6000000000000005,35.53,0,790,809 +2003,3,5,12,30,107,1033,-13,0.866,5.6000000000000005,36.69,0,790,822 +2003,3,5,13,30,101,1018,-13,0.866,5.6000000000000005,38.28,0,790,765 +2003,3,5,14,30,120,786,-12,0.866,5.5,40.2,0,790,562 +2003,3,5,15,30,76,786,-12,0.866,4.9,42.21,0,790,414 +2003,3,5,16,30,52,668,-11,0.866,4.3,53.660000000000004,-1,790,228 +2003,3,5,17,30,26,304,-11,0.866,4.1000000000000005,56.51,-2,790,48 +2003,3,5,18,30,0,0,-11,0.866,4.4,60.06,-3,790,0 +2003,3,5,19,30,0,0,-11,0.866,4.5,60,-3,790,0 +2003,3,5,20,30,0,0,-11,0.866,4.4,59.77,-3,790,0 +2003,3,5,21,30,0,0,-11,0.866,4.4,60.17,-3,790,0 +2003,3,5,22,30,0,0,-11,0.866,4.4,60.03,-3,790,0 +2003,3,5,23,30,0,0,-11,0.866,4.5,60.09,-3,790,0 +2003,3,6,0,30,0,0,-11,0.866,4.5,60.47,-3,790,0 +2003,3,6,1,30,0,0,-11,0.866,4.5,60.85,-3,790,0 +2003,3,6,2,30,0,0,-11,0.866,4.6000000000000005,61.43,-3,790,0 +2003,3,6,3,30,0,0,-11,0.866,4.7,62.300000000000004,-3,790,0 +2003,3,6,4,30,0,0,-10,0.866,4.5,63.120000000000005,-3,790,0 +2003,3,6,5,30,0,0,-10,0.866,4.4,63.47,-3,790,0 +2003,3,6,6,30,0,0,-10,0.866,4.7,59.160000000000004,-2,790,0 +2003,3,6,7,30,52,465,-9,0.866,5.6000000000000005,51.75,0,790,140 +2003,3,6,8,30,78,833,-8,0.866,6.7,51.42,2,790,383 +2003,3,6,9,30,98,920,-7,0.866,7.7,52.1,4,790,572 +2003,3,6,10,30,123,841,-7,0.866,8.3,47.03,5,790,648 +2003,3,6,11,30,122,906,-6,0.866,8.200000000000001,44.72,6,790,744 +2003,3,6,12,30,121,922,-6,0.866,7.800000000000001,45.78,6,790,764 +2003,3,6,13,30,124,871,-6,0.866,7.4,47.11,6,790,696 +2003,3,6,14,30,154,713,-5,0.866,6.7,52.26,5,790,558 +2003,3,6,15,30,95,710,-5,0.866,5.300000000000001,58.31,4,790,403 +2003,3,6,16,30,71,540,-4,0.866,3.7,66.14,2,790,215 +2003,3,6,17,30,28,128,-5,0.131,2.8000000000000003,68.97,0,790,38 +2003,3,6,18,30,0,0,-5,0.131,2.6,72.54,0,790,0 +2003,3,6,19,30,0,0,-5,0.131,2.6,72.52,0,790,0 +2003,3,6,20,30,0,0,-5,0.131,2.6,71.89,0,790,0 +2003,3,6,21,30,0,0,-5,0.131,2.8000000000000003,70.82000000000001,0,790,0 +2003,3,6,22,30,0,0,-5,0.131,3,75.33,0,800,0 +2003,3,6,23,30,0,0,-5,0.131,3.4000000000000004,74.23,0,800,0 +2003,3,7,0,30,0,0,-6,0.131,3.7,73.37,0,800,0 +2003,3,7,1,30,0,0,-6,0.131,3.8000000000000003,72.71000000000001,0,800,0 +2003,3,7,2,30,0,0,-6,0.131,3.7,71.86,0,800,0 +2003,3,7,3,30,0,0,-6,0.131,3.4000000000000004,70.92,0,800,0 +2003,3,7,4,30,0,0,-6,0.131,3.1,69.33,0,800,0 +2003,3,7,5,30,0,0,-7,0.131,2.7,67,0,800,0 +2003,3,7,6,30,0,0,-7,0.131,2.5,60.67,0,800,0 +2003,3,7,7,30,58,516,-6,0.131,3,62.13,2,800,158 +2003,3,7,8,30,77,773,-5,0.131,3.7,55.77,4,800,365 +2003,3,7,9,30,93,865,-5,0.131,3.8000000000000003,48.980000000000004,6,800,544 +2003,3,7,10,30,97,928,-5,0.131,3.6,46.160000000000004,7,800,681 +2003,3,7,11,30,94,966,-5,0.131,3.3000000000000003,44,8,800,762 +2003,3,7,12,30,93,972,-4,0.131,3.4000000000000004,42.25,9,800,776 +2003,3,7,13,30,91,957,-4,0.131,3.7,43.64,9,790,723 +2003,3,7,14,30,81,930,-4,0.131,4,48.04,8,790,612 +2003,3,7,15,30,74,852,-3,0.131,3.6,53.08,7,790,448 +2003,3,7,16,30,59,704,-2,0.131,2.5,66.65,5,790,250 +2003,3,7,17,30,27,355,-3,0.131,1.9000000000000001,77.75,2,790,56 +2003,3,7,18,30,0,0,-4,0.131,2,73.7,0,790,0 +2003,3,7,19,30,0,0,-4,0.131,2.2,77.09,0,800,0 +2003,3,7,20,30,0,0,-4,0.131,2.5,75.26,0,800,0 +2003,3,7,21,30,0,0,-5,0.131,2.9000000000000004,74.18,0,800,0 +2003,3,7,22,30,0,0,-5,0.131,3.2,73.48,0,800,0 +2003,3,7,23,30,0,0,-5,0.131,3.3000000000000003,72.39,0,800,0 +2003,3,8,0,30,0,0,-5,0.131,3.4000000000000004,70.18,0,800,0 +2003,3,8,1,30,0,0,-6,0.131,3.7,67.75,0,800,0 +2003,3,8,2,30,0,0,-6,0.131,3.7,70.82000000000001,0,800,0 +2003,3,8,3,30,0,0,-6,0.131,3.5,69.41,0,800,0 +2003,3,8,4,30,0,0,-7,0.131,2.9000000000000004,68.44,0,800,0 +2003,3,8,5,30,0,0,-7,0.131,2.2,67.59,0,800,0 +2003,3,8,6,30,0,0,-7,0.131,2,62.43,1,800,0 +2003,3,8,7,30,77,71,-5,0.131,2.5,60.32,3,800,91 +2003,3,8,8,30,85,666,-5,0.131,3.3000000000000003,49.68,6,800,337 +2003,3,8,9,30,135,689,-5,0.131,4.3,47.42,7,800,497 +2003,3,8,10,30,93,946,-5,0.131,4.9,44.34,8,800,693 +2003,3,8,11,30,99,963,-5,0.131,5.1000000000000005,42.11,9,800,769 +2003,3,8,12,30,103,959,-4,0.131,5.300000000000001,40.65,10,800,780 +2003,3,8,13,30,102,936,-4,0.131,5.4,42,10,800,725 +2003,3,8,14,30,95,896,-3,0.131,5.5,45.730000000000004,9,800,611 +2003,3,8,15,30,132,570,-3,0.131,5,49.7,8,800,384 +2003,3,8,16,30,65,672,-3,0.131,3.3000000000000003,59.79,6,800,250 +2003,3,8,17,30,29,330,-2,0.131,2,71.19,4,800,57 +2003,3,8,18,30,0,0,-3,0.131,2,77.94,2,800,0 +2003,3,8,19,30,0,0,-3,0.131,2.2,74.9,1,800,0 +2003,3,8,20,30,0,0,-4,0.131,2.3000000000000003,71.9,1,800,0 +2003,3,8,21,30,0,0,-4,0.131,2.5,69.07000000000001,0,800,0 +2003,3,8,22,30,0,0,-5,0.131,2.6,71.39,0,800,0 +2003,3,8,23,30,0,0,-6,0.131,2.6,68.7,0,800,0 +2003,3,9,0,30,0,0,-6,0.131,2.6,71.8,0,800,0 +2003,3,9,1,30,0,0,-6,0.131,2.5,70.51,0,800,0 +2003,3,9,2,30,0,0,-6,0.131,2.3000000000000003,69.62,0,800,0 +2003,3,9,3,30,0,0,-6,0.131,2.2,68.74,0,800,0 +2003,3,9,4,30,0,0,-7,0.131,2.2,73.12,0,800,0 +2003,3,9,5,30,0,0,-7,0.131,2.2,67.28,0,800,0 +2003,3,9,6,30,0,0,-7,0.131,2.7,62.99,1,800,0 +2003,3,9,7,30,54,497,-5,0.131,3.4000000000000004,60.300000000000004,3,800,156 +2003,3,9,8,30,90,649,-5,0.131,4.1000000000000005,50.29,6,800,339 +2003,3,9,9,30,142,669,-5,0.131,4.800000000000001,45.02,8,800,497 +2003,3,9,10,30,225,579,-5,0.131,5.300000000000001,42.04,9,800,595 +2003,3,9,11,30,268,567,-5,0.131,5.6000000000000005,38.78,10,800,665 +2003,3,9,12,30,286,529,-5,0.131,5.800000000000001,36.06,11,800,663 +2003,3,9,13,30,268,482,-5,0.131,5.800000000000001,36.17,11,800,592 +2003,3,9,14,30,212,507,-4,0.131,5.6000000000000005,39.54,10,800,506 +2003,3,9,15,30,164,449,-4,0.131,4.5,43.13,9,800,364 +2003,3,9,16,30,66,602,-3,0.131,2.7,52.58,7,800,234 +2003,3,9,17,30,34,231,-3,0.131,1.9000000000000001,66.5,4,800,55 +2003,3,9,18,30,0,0,-4,0.131,2.2,72.48,2,800,0 +2003,3,9,19,30,0,0,-4,0.131,2.9000000000000004,72.06,2,800,0 +2003,3,9,20,30,0,0,-4,0.131,3.5,70.34,1,800,0 +2003,3,9,21,30,0,0,-5,0.131,3.7,67.55,1,800,0 +2003,3,9,22,30,0,0,-5,0.131,3.6,64.64,0,800,0 +2003,3,9,23,30,0,0,-6,0.131,3.4000000000000004,66.86,0,800,0 +2003,3,10,0,30,0,0,-6,0.131,3.2,65.19,0,800,0 +2003,3,10,1,30,0,0,-6,0.131,2.9000000000000004,68.81,0,800,0 +2003,3,10,2,30,0,0,-7,0.131,2.7,66.89,0,800,0 +2003,3,10,3,30,0,0,-7,0.131,2.5,65.58,0,800,0 +2003,3,10,4,30,0,0,-7,0.131,2.4000000000000004,70.17,0,800,0 +2003,3,10,5,30,0,0,-7,0.131,2.3000000000000003,64.92,0,800,0 +2003,3,10,6,30,0,0,-7,0.131,2.5,61,0,800,0 +2003,3,10,7,30,84,258,-6,0.131,2.7,59.02,3,800,138 +2003,3,10,8,30,167,230,-5,0.131,2.8000000000000003,50.86,6,800,256 +2003,3,10,9,30,238,327,-5,0.131,2.9000000000000004,43.06,8,800,413 +2003,3,10,10,30,324,160,-5,0.131,3,40.24,9,800,427 +2003,3,10,11,30,277,529,-5,0.131,3.3000000000000003,38.07,10,800,651 +2003,3,10,12,30,277,571,-5,0.131,3.6,36.38,11,800,686 +2003,3,10,13,30,128,870,-4,0.131,3.9000000000000004,37.300000000000004,11,800,715 +2003,3,10,14,30,125,812,-4,0.131,4.1000000000000005,40.71,10,800,599 +2003,3,10,15,30,184,420,-4,0.131,3.6,44.42,9,800,373 +2003,3,10,16,30,117,303,-3,0.131,2.3000000000000003,55.78,7,800,203 +2003,3,10,17,30,37,118,-2,0.131,1.2000000000000002,67.32000000000001,5,800,48 +2003,3,10,18,30,0,0,-2,0.131,1.2000000000000002,75.99,3,800,0 +2003,3,10,19,30,0,0,-2,0.131,1.2000000000000002,75.48,3,800,0 +2003,3,10,20,30,0,0,-3,0.131,1.4000000000000001,80.17,2,800,0 +2003,3,10,21,30,0,0,-3,0.131,1.8,78.38,1,800,0 +2003,3,10,22,30,0,0,-3,0.131,2.1,76.66,1,800,0 +2003,3,10,23,30,0,0,-4,0.131,2.3000000000000003,74.15,0,800,0 +2003,3,11,0,30,0,0,-4,0.131,2.6,76.46000000000001,0,800,0 +2003,3,11,1,30,0,0,-5,0.131,2.8000000000000003,73.31,0,800,0 +2003,3,11,2,30,0,0,-5,0.131,2.9000000000000004,76.53,0,800,0 +2003,3,11,3,30,0,0,-5,0.131,3,75.19,0,800,0 +2003,3,11,4,30,0,0,-5,0.131,2.9000000000000004,74.74,0,800,0 +2003,3,11,5,30,0,0,-5,0.131,2.7,69.36,0,800,0 +2003,3,11,6,30,12,0,-5,0.131,3.1,66.65,1,800,12 +2003,3,11,7,30,60,562,-4,0.131,4,62.86,4,800,181 +2003,3,11,8,30,78,790,-3,0.131,5,54.92,7,800,388 +2003,3,11,9,30,148,666,-2,0.131,5.7,49.13,9,800,508 +2003,3,11,10,30,245,529,-2,0.131,5.9,45.95,10,800,589 +2003,3,11,11,30,277,562,-2,0.131,6,42.980000000000004,11,800,676 +2003,3,11,12,30,101,960,-2,0.131,6.1000000000000005,40.38,12,800,793 +2003,3,11,13,30,100,943,-2,0.131,6.1000000000000005,41.11,12,800,740 +2003,3,11,14,30,93,907,-2,0.131,5.7,44.67,11,800,626 +2003,3,11,15,30,82,832,-2,0.131,4.9,48.89,10,800,460 +2003,3,11,16,30,101,362,-1,0.131,3,57.88,8,800,204 +2003,3,11,17,30,34,34,-1,0.131,1.6,74.82000000000001,5,800,37 +2003,3,11,18,30,0,0,-1,0.131,1.3,77.34,4,800,0 +2003,3,11,19,30,0,0,-1,0.131,1.3,80.66,3,800,0 +2003,3,11,20,30,0,0,-2,0.131,1.6,84.16,2,800,0 +2003,3,11,21,30,0,0,-2,0.131,1.9000000000000001,82.35000000000001,2,800,0 +2003,3,11,22,30,0,0,-2,0.131,2.2,80.45,1,800,0 +2003,3,11,23,30,0,0,-3,0.131,2.5,78.65,1,800,0 +2003,3,12,0,30,0,0,-3,0.131,2.7,77.01,1,800,0 +2003,3,12,1,30,0,0,-3,0.131,2.7,75.5,1,800,0 +2003,3,12,2,30,0,0,-3,0.131,2.6,74.60000000000001,1,800,0 +2003,3,12,3,30,0,0,-3,0.131,2.3000000000000003,74.51,1,800,0 +2003,3,12,4,30,0,0,-3,0.131,2.1,74.57000000000001,1,800,0 +2003,3,12,5,30,0,0,-4,0.131,2.1,74.22,1,800,0 +2003,3,12,6,30,14,0,-4,0.131,2.6,69.09,2,800,14 +2003,3,12,7,30,54,547,-3,0.131,3.7,59.51,6,800,174 +2003,3,12,8,30,71,818,-2,0.131,4.9,51.64,9,800,397 +2003,3,12,9,30,80,913,-2,0.131,5.6000000000000005,45.730000000000004,11,800,579 +2003,3,12,10,30,87,956,-2,0.131,5.7,42.230000000000004,12,800,713 +2003,3,12,11,30,293,511,-2,0.131,5.9,41.58,13,800,659 +2003,3,12,12,30,368,265,-2,0.131,6.1000000000000005,38.31,13,800,561 +2003,3,12,13,30,269,518,-2,0.131,6,37.87,13,800,623 +2003,3,12,14,30,224,489,-3,0.131,5.4,37.17,13,800,513 +2003,3,12,15,30,163,480,-3,0.131,4.3,39.35,12,800,383 +2003,3,12,16,30,58,731,-2,0.131,2.5,49.76,9,800,270 +2003,3,12,17,30,30,402,-1,0.131,1.3,70.11,5,800,71 +2003,3,12,18,30,0,0,-3,0.131,1.2000000000000002,71.36,3,800,0 +2003,3,12,19,30,0,0,-4,0.131,1.2000000000000002,74.06,2,800,0 +2003,3,12,20,30,0,0,-4,0.131,1.4000000000000001,72.06,1,800,0 +2003,3,12,21,30,0,0,-4,0.131,1.7000000000000002,69.19,0,810,0 +2003,3,12,22,30,0,0,-5,0.131,2,70.96000000000001,0,810,0 +2003,3,12,23,30,0,0,-6,0.131,2.1,67.74,0,810,0 +2003,3,13,0,30,0,0,-6,0.131,2.2,65.12,0,810,0 +2003,3,13,1,30,0,0,-7,0.131,2.4000000000000004,63.26,0,810,0 +2003,3,13,2,30,0,0,-7,0.131,2.7,62.15,0,810,0 +2003,3,13,3,30,0,0,-7,0.131,3,60.980000000000004,0,810,0 +2003,3,13,4,30,0,0,-7,0.131,3.4000000000000004,60.15,0,810,0 +2003,3,13,5,30,0,0,-7,0.131,3.5,55.27,0,810,0 +2003,3,13,6,30,14,188,-7,0.131,3.8000000000000003,52.28,3,810,20 +2003,3,13,7,30,75,348,-5,0.131,3.8000000000000003,45.02,7,810,154 +2003,3,13,8,30,66,862,-4,0.131,3.3000000000000003,39.17,11,810,414 +2003,3,13,9,30,76,942,-4,0.131,2.7,31.88,14,810,596 +2003,3,13,10,30,83,984,-4,0.131,2,28.84,15,810,732 +2003,3,13,11,30,88,999,-5,0.131,1.7000000000000002,26.22,16,810,807 +2003,3,13,12,30,90,998,-5,0.131,1.6,24.05,17,810,818 +2003,3,13,13,30,89,981,-5,0.131,1.5,23.68,17,800,763 +2003,3,13,14,30,84,944,-5,0.131,1.2000000000000002,23.54,17,800,647 +2003,3,13,15,30,76,873,-5,0.131,1,25.16,16,800,479 +2003,3,13,16,30,61,737,-2,0.131,0.7000000000000001,40.95,13,800,278 +2003,3,13,17,30,32,407,-1,0.139,0.6000000000000001,59.230000000000004,8,800,75 +2003,3,13,18,30,0,0,-3,0.139,0.6000000000000001,56.85,6,800,0 +2003,3,13,19,30,0,0,-4,0.139,0.9,58.65,5,810,0 +2003,3,13,20,30,0,0,-4,0.139,1.7000000000000002,60.51,4,800,0 +2003,3,13,21,30,0,0,-5,0.139,2.3000000000000003,59.68,4,800,0 +2003,3,13,22,30,0,0,-5,0.139,2.7,61.050000000000004,3,800,0 +2003,3,13,23,30,0,0,-6,0.139,2.7,58.57,3,800,0 +2003,3,14,0,30,0,0,-6,0.139,2.6,57.39,3,800,0 +2003,3,14,1,30,0,0,-6,0.139,2.6,57.13,3,800,0 +2003,3,14,2,30,0,0,-6,0.139,2.5,61.550000000000004,2,800,0 +2003,3,14,3,30,0,0,-6,0.139,2.4000000000000004,61.18,2,800,0 +2003,3,14,4,30,0,0,-6,0.139,2.3000000000000003,60.38,2,800,0 +2003,3,14,5,30,0,0,-7,0.139,2.2,59.230000000000004,2,800,0 +2003,3,14,6,30,15,207,-6,0.139,2.1,45.93,6,800,23 +2003,3,14,7,30,50,685,-3,0.139,2.2,41.24,11,800,209 +2003,3,14,8,30,67,857,-3,0.139,2,32.5,14,800,417 +2003,3,14,9,30,79,931,-5,0.139,1.9000000000000001,24.560000000000002,17,800,598 +2003,3,14,10,30,89,966,-5,0.139,2.1,22.1,18,800,731 +2003,3,14,11,30,161,836,-6,0.139,2.2,19.92,19,800,768 +2003,3,14,12,30,362,319,-6,0.139,2.4000000000000004,19.48,19,800,597 +2003,3,14,13,30,355,172,-6,0.139,2.7,19.32,19,800,474 +2003,3,14,14,30,263,384,-6,0.139,3,20.740000000000002,18,800,493 +2003,3,14,15,30,201,300,-6,0.139,3.2,24.2,16,800,341 +2003,3,14,16,30,120,220,-3,0.139,3,35.800000000000004,13,800,185 +2003,3,14,17,30,39,66,-2,0.139,3.1,44.68,11,800,47 +2003,3,14,18,30,0,0,-2,0.139,3.8000000000000003,49.43,9,800,0 +2003,3,14,19,30,0,0,-2,0.139,4.1000000000000005,49,9,800,0 +2003,3,14,20,30,0,0,-3,0.139,4.1000000000000005,48.61,9,800,0 +2003,3,14,21,30,0,0,-3,0.139,4.1000000000000005,50.84,8,800,0 +2003,3,14,22,30,0,0,-3,0.139,4.1000000000000005,49.31,8,800,0 +2003,3,14,23,30,0,0,-3,0.139,3.8000000000000003,52.72,7,800,0 +2003,3,15,0,30,0,0,-3,0.139,3.5,58.75,6,800,0 +2003,3,15,1,30,0,0,-2,0.139,3.5,60.61,6,800,0 +2003,3,15,2,30,0,0,-2,0.139,3.5,65.52,5,800,0 +2003,3,15,3,30,0,0,-3,0.139,3.3000000000000003,64.55,5,800,0 +2003,3,15,4,30,0,0,-3,0.139,3.1,66.93,4,800,0 +2003,3,15,5,30,0,0,-3,0.139,2.9000000000000004,65.08,4,800,0 +2003,3,15,6,30,18,168,-3,0.139,2.9000000000000004,60.86,5,800,25 +2003,3,15,7,30,55,682,-3,0.139,3.3000000000000003,47.35,9,800,216 +2003,3,15,8,30,67,877,-5,0.139,3.2,32.46,12,800,430 +2003,3,15,9,30,76,953,-7,0.139,2,24.64,14,800,612 +2003,3,15,10,30,83,989,-8,0.139,0.7000000000000001,22.1,15,800,745 +2003,3,15,11,30,89,999,-8,0.139,0.30000000000000004,20.73,16,800,818 +2003,3,15,12,30,89,998,-8,0.139,0.7000000000000001,20.87,16,800,827 +2003,3,15,13,30,88,981,-8,0.139,1.3,19.68,17,800,771 +2003,3,15,14,30,81,948,-7,0.139,1.8,21.05,16,800,655 +2003,3,15,15,30,102,725,-8,0.139,2,22.41,15,800,442 +2003,3,15,16,30,124,178,-7,0.139,1.7000000000000002,26.6,13,800,178 +2003,3,15,17,30,32,0,-4,0.139,1.4000000000000001,41.75,10,800,32 +2003,3,15,18,30,0,0,-5,0.139,1.4000000000000001,42.32,8,800,0 +2003,3,15,19,30,0,0,-5,0.139,1,45.57,7,800,0 +2003,3,15,20,30,0,0,-4,0.139,0.9,56.300000000000004,6,790,0 +2003,3,15,21,30,0,0,-4,0.139,1.2000000000000002,59.22,5,790,0 +2003,3,15,22,30,0,0,-4,0.139,1.6,59.370000000000005,5,790,0 +2003,3,15,23,30,0,0,-4,0.139,1.9000000000000001,64,4,790,0 +2003,3,16,0,30,0,0,-4,0.139,2.1,69.13,3,790,0 +2003,3,16,1,30,0,0,-3,0.139,2.2,69.88,3,790,0 +2003,3,16,2,30,0,0,-3,0.139,2.1,70.18,3,790,0 +2003,3,16,3,30,0,0,-3,0.139,1.9000000000000001,75.81,2,790,0 +2003,3,16,4,30,0,0,-3,0.139,1.7000000000000002,76.74,2,790,0 +2003,3,16,5,30,0,0,-3,0.139,1.5,77.93,2,790,0 +2003,3,16,6,30,8,0,-2,0.139,1.5,65.77,5,790,8 +2003,3,16,7,30,92,39,-1,0.139,1,58.160000000000004,8,790,102 +2003,3,16,8,30,81,0,-1,0.139,0.9,47.31,11,790,81 +2003,3,16,9,30,258,320,-2,0.139,1.8,42.730000000000004,12,790,439 +2003,3,16,10,30,266,510,-2,0.139,2.3000000000000003,39.58,13,790,610 +2003,3,16,11,30,362,78,-2,0.139,2.3000000000000003,37.25,14,790,420 +2003,3,16,12,30,336,45,-2,0.139,2.1,39.99,14,790,370 +2003,3,16,13,30,286,30,-2,0.139,1.8,40.230000000000004,13,790,308 +2003,3,16,14,30,252,34,-1,0.139,1.5,40.68,13,790,273 +2003,3,16,15,30,210,76,-1,0.139,1.1,44.14,12,790,247 +2003,3,16,16,30,115,309,0,0.139,0.8,54.71,10,790,210 +2003,3,16,17,30,44,126,1,0.139,1,72.72,8,790,58 +2003,3,16,18,30,0,0,1,0.139,1.5,76.24,7,790,0 +2003,3,16,19,30,0,0,1,0.139,2.1,84.3,6,790,0 +2003,3,16,20,30,0,0,1,0.139,2.6,92.83,5,790,0 +2003,3,16,21,30,0,0,2,0.139,3,93.97,5,790,0 +2003,3,16,22,30,0,0,2,0.139,3.1,93.97,5,790,0 +2003,3,16,23,30,0,0,1,0.139,2.9000000000000004,99.64,4,790,0 +2003,3,17,0,30,0,0,1,0.139,2.7,97.75,4,790,0 +2003,3,17,1,30,0,0,1,0.139,2.4000000000000004,95.58,4,790,0 +2003,3,17,2,30,0,0,1,0.139,2.3000000000000003,100,3,790,0 +2003,3,17,3,30,0,0,0,0.139,2.4000000000000004,99.59,3,790,0 +2003,3,17,4,30,0,0,0,0.139,2.4000000000000004,98.55,3,790,0 +2003,3,17,5,30,0,0,0,0.139,2.5,97.54,3,790,0 +2003,3,17,6,30,0,0,0,0.139,3.2,97.32000000000001,3,790,0 +2003,3,17,7,30,8,0,0,0.139,4.3,91.27,4,790,8 +2003,3,17,8,30,34,0,0,0.139,4.800000000000001,82.85000000000001,5,790,34 +2003,3,17,9,30,37,0,0,0.139,4.7,74.8,6,790,37 +2003,3,17,10,30,107,0,0,0.139,4.2,68.78,7,780,107 +2003,3,17,11,30,108,0,0,0.139,3.6,64.34,8,780,108 +2003,3,17,12,30,109,0,0,0.139,3.1,61.09,9,780,109 +2003,3,17,13,30,124,3,0,0.139,3,62.13,9,780,127 +2003,3,17,14,30,58,0,0,0.139,3.1,67.39,8,780,58 +2003,3,17,15,30,10,0,0,0.139,3.2,73.76,7,780,10 +2003,3,17,16,30,19,0,1,0.139,3,89.17,5,780,19 +2003,3,17,17,30,10,0,2,0.866,3,100,4,780,10 +2003,3,17,18,30,0,0,1,0.866,3.7,100,3,780,0 +2003,3,17,19,30,0,0,0,0.866,4.4,100,2,780,0 +2003,3,17,20,30,0,0,0,0.866,4.9,100,1,780,0 +2003,3,17,21,30,0,0,0,0.866,5.5,100,1,780,0 +2003,3,17,22,30,0,0,0,0.866,6,94.78,0,780,0 +2003,3,17,23,30,0,0,-1,0.866,6.2,94.66,0,780,0 +2003,3,18,0,30,0,0,-2,0.866,6.1000000000000005,95.13,0,790,0 +2003,3,18,1,30,0,0,-3,0.866,6,96.10000000000001,-1,790,0 +2003,3,18,2,30,0,0,-4,0.866,6,91.08,-1,790,0 +2003,3,18,3,30,0,0,-4,0.866,6.2,96.09,-2,790,0 +2003,3,18,4,30,0,0,-4,0.866,6.1000000000000005,94.68,-2,790,0 +2003,3,18,5,30,0,0,-5,0.866,6,92.53,-2,790,0 +2003,3,18,6,30,6,0,-5,0.866,5.7,91.35000000000001,-2,790,6 +2003,3,18,7,30,9,0,-4,0.866,5.300000000000001,87.21000000000001,-1,790,9 +2003,3,18,8,30,133,2,-4,0.866,5.2,86.09,0,790,135 +2003,3,18,9,30,141,3,-3,0.866,5.1000000000000005,85.10000000000001,0,790,143 +2003,3,18,10,30,146,6,-2,0.866,5.1000000000000005,89.33,0,790,150 +2003,3,18,11,30,219,14,-2,0.866,5.2,91.85000000000001,0,790,230 +2003,3,18,12,30,187,11,-1,0.866,5.7,92.99,0,790,196 +2003,3,18,13,30,148,7,-1,0.866,6.4,93.18,0,790,153 +2003,3,18,14,30,99,0,-2,0.866,6.800000000000001,92.3,0,790,99 +2003,3,18,15,30,116,0,-2,0.866,6.800000000000001,91.37,0,790,116 +2003,3,18,16,30,39,0,-2,0.866,6.6000000000000005,90.34,0,790,39 +2003,3,18,17,30,23,0,-2,0.866,6.6000000000000005,94.34,0,790,23 +2003,3,18,18,30,0,0,-3,0.866,7,97.23,-1,790,0 +2003,3,18,19,30,0,0,-3,0.866,7.5,93.13,-1,790,0 +2003,3,18,20,30,0,0,-4,0.866,7.800000000000001,96.17,-1,790,0 +2003,3,18,21,30,0,0,-5,0.866,7.7,92.73,-2,790,0 +2003,3,18,22,30,0,0,-5,0.866,7.6000000000000005,96.24000000000001,-2,790,0 +2003,3,18,23,30,0,0,-6,0.866,7.5,92.3,-3,790,0 +2003,3,19,0,30,0,0,-6,0.866,7.300000000000001,95.98,-3,790,0 +2003,3,19,1,30,0,0,-6,0.866,7,93.95,-4,790,0 +2003,3,19,2,30,0,0,-7,0.866,6.7,92.49,-4,800,0 +2003,3,19,3,30,0,0,-7,0.866,6.6000000000000005,90.39,-4,800,0 +2003,3,19,4,30,0,0,-7,0.866,6.2,88.28,-4,800,0 +2003,3,19,5,30,0,0,-7,0.866,5.7,88.91,-4,800,0 +2003,3,19,6,30,13,0,-7,0.866,5.300000000000001,84.94,-3,800,13 +2003,3,19,7,30,55,0,-6,0.866,5.2,85.5,-2,800,55 +2003,3,19,8,30,196,128,-4,0.866,5.5,83.46000000000001,0,800,252 +2003,3,19,9,30,60,0,-2,0.866,5.6000000000000005,86.38,0,800,60 +2003,3,19,10,30,90,0,-2,0.866,5.6000000000000005,92.84,0,800,90 +2003,3,19,11,30,167,9,-1,0.866,5.4,95.36,0,800,174 +2003,3,19,12,30,113,0,-1,0.866,5,96.59,0,800,114 +2003,3,19,13,30,90,0,-1,0.866,4.5,91.08,0,800,90 +2003,3,19,14,30,77,0,-1,0.866,3.7,92.43,1,800,77 +2003,3,19,15,30,169,13,0,0.866,3,93.44,1,800,176 +2003,3,19,16,30,49,0,0,0.866,2.8000000000000003,93.02,0,800,49 +2003,3,19,17,30,15,0,-1,0.866,2.6,97.03,0,800,15 +2003,3,19,18,30,0,0,-2,0.866,2.2,97.60000000000001,0,800,0 +2003,3,19,19,30,0,0,-2,0.866,1.9000000000000001,95.98,0,800,0 +2003,3,19,20,30,0,0,-2,0.866,1.6,95.79,0,800,0 +2003,3,19,21,30,0,0,-2,0.866,1.3,95.24,0,800,0 +2003,3,19,22,30,0,0,-3,0.866,1.2000000000000002,100,-1,800,0 +2003,3,19,23,30,0,0,-4,0.866,1.2000000000000002,96.69,-2,800,0 +2003,3,20,0,30,0,0,-6,0.866,1.3,88.48,-3,800,0 +2003,3,20,1,30,0,0,-7,0.866,1.2000000000000002,87.62,-4,800,0 +2003,3,20,2,30,0,0,-8,0.866,1,82.13,-4,800,0 +2003,3,20,3,30,0,0,-9,0.866,1,83.91,-5,800,0 +2003,3,20,4,30,0,0,-9,0.866,1,80.51,-5,800,0 +2003,3,20,5,30,0,0,-10,0.866,0.9,78.78,-5,800,0 +2003,3,20,6,30,24,307,-9,0.866,0.6000000000000001,73.5,-4,800,46 +2003,3,20,7,30,63,694,-7,0.866,0.5,69.93,-1,800,246 +2003,3,20,8,30,165,21,-2,0.866,0.7000000000000001,81.48,0,800,174 +2003,3,20,9,30,286,147,-2,0.866,0.8,84.61,1,800,373 +2003,3,20,10,30,280,487,-1,0.866,0.6000000000000001,87.54,1,800,619 +2003,3,20,11,30,291,591,-1,0.866,0.5,90.46000000000001,2,800,736 +2003,3,20,12,30,332,475,-1,0.866,0.7000000000000001,84.66,3,800,694 +2003,3,20,13,30,370,192,0,0.866,1,86.93,3,800,508 +2003,3,20,14,30,305,237,0,0.866,1.2000000000000002,88.12,3,800,453 +2003,3,20,15,30,192,29,0,0.866,1.2000000000000002,94.86,2,800,206 +2003,3,20,16,30,125,40,0,0.866,0.9,93.84,1,800,138 +2003,3,20,17,30,49,66,-1,0.866,0.7000000000000001,95.03,0,800,58 +2003,3,20,18,30,0,0,-3,0.866,0.8,86.98,0,800,0 +2003,3,20,19,30,0,0,-4,0.866,0.9,89.36,-1,800,0 +2003,3,20,20,30,0,0,-4,0.866,0.9,89.79,-1,800,0 +2003,3,20,21,30,0,0,-4,0.866,0.8,90.52,-1,800,0 +2003,3,20,22,30,0,0,-4,0.866,0.7000000000000001,90.09,-1,800,0 +2003,3,20,23,30,0,0,-4,0.866,0.8,89.68,-1,800,0 +2003,3,21,0,30,0,0,-4,0.866,0.9,95.28,-1,800,0 +2003,3,21,1,30,0,0,-4,0.866,0.9,94.89,-2,800,0 +2003,3,21,2,30,0,0,-4,0.866,0.9,89.75,-1,800,0 +2003,3,21,3,30,0,0,-4,0.866,0.8,91.29,-1,800,0 +2003,3,21,4,30,0,0,-4,0.866,0.5,91.5,-1,800,0 +2003,3,21,5,30,0,0,-4,0.866,0.4,95.10000000000001,-2,800,0 +2003,3,21,6,30,3,0,-5,0.866,0.6000000000000001,85.8,-1,800,3 +2003,3,21,7,30,17,0,-3,0.866,0.9,81.39,0,800,17 +2003,3,21,8,30,105,0,-2,0.866,0.9,83.63,1,800,105 +2003,3,21,9,30,265,57,-1,0.866,0.9,87.45,2,800,298 +2003,3,21,10,30,305,414,-1,0.866,0.9,81.36,3,800,595 +2003,3,21,11,30,389,259,-2,0.866,1.1,73.96000000000001,4,800,585 +2003,3,21,12,30,392,267,-2,0.866,1.4000000000000001,67.6,5,800,597 +2003,3,21,13,30,303,462,-2,0.866,1.7000000000000002,66.75,5,800,636 +2003,3,21,14,30,309,222,-2,0.866,1.7000000000000002,66.04,5,800,448 +2003,3,21,15,30,196,32,-2,0.866,1.5,65.19,5,800,212 +2003,3,21,16,30,126,285,-2,0.866,0.9,70.04,4,800,218 +2003,3,21,17,30,51,343,-2,0.866,0.5,80.43,1,800,96 +2003,3,21,18,30,0,0,-5,0.866,0.7000000000000001,76.98,0,800,0 +2003,3,21,19,30,0,0,-6,0.866,1.2000000000000002,75.91,-1,800,0 +2003,3,21,20,30,0,0,-7,0.866,1.6,82.9,-3,800,0 +2003,3,21,21,30,0,0,-8,0.866,2.1,84.29,-4,800,0 +2003,3,21,22,30,0,0,-8,0.866,2.8000000000000003,74.99,-3,800,0 +2003,3,21,23,30,0,0,-8,0.866,3.4000000000000004,73.59,-3,800,0 +2003,3,22,0,30,0,0,-8,0.866,3.7,70.53,-2,800,0 +2003,3,22,1,30,0,0,-8,0.866,3.8000000000000003,72.77,-2,800,0 +2003,3,22,2,30,0,0,-8,0.866,3.9000000000000004,73.28,-2,800,0 +2003,3,22,3,30,0,0,-8,0.866,3.9000000000000004,71.74,-2,800,0 +2003,3,22,4,30,0,0,-8,0.866,4,75.54,-3,800,0 +2003,3,22,5,30,0,0,-8,0.866,4.1000000000000005,70.09,-2,800,0 +2003,3,22,6,30,29,321,-8,0.866,4.1000000000000005,63.02,-1,800,54 +2003,3,22,7,30,81,0,-5,0.866,3.8000000000000003,64.43,1,800,81 +2003,3,22,8,30,194,281,-3,0.866,3.4000000000000004,69.7,3,800,321 +2003,3,22,9,30,109,933,-3,0.866,2.8000000000000003,62.9,5,800,667 +2003,3,22,10,30,278,528,-3,0.866,2.2,54.92,7,800,650 +2003,3,22,11,30,139,970,-3,0.866,1.7000000000000002,52.25,8,800,879 +2003,3,22,12,30,132,980,-2,0.866,1.6,50.78,9,800,887 +2003,3,22,13,30,271,592,-2,0.866,1.8,48.84,10,800,700 +2003,3,22,14,30,233,523,-1,0.866,1.9000000000000001,50.120000000000005,10,800,563 +2003,3,22,15,30,229,203,-1,0.866,1.9000000000000001,55.71,9,800,330 +2003,3,22,16,30,129,274,0,0.866,1.4000000000000001,64.28,8,800,218 +2003,3,22,17,30,51,80,0,0.866,1,78.36,5,800,62 +2003,3,22,18,30,0,0,-2,0.866,1.3,80.23,3,800,0 +2003,3,22,19,30,0,0,-2,0.866,1.8,83.46000000000001,2,800,0 +2003,3,22,20,30,0,0,-2,0.866,2.5,82.35000000000001,1,800,0 +2003,3,22,21,30,0,0,-3,0.866,3.1,79.52,1,800,0 +2003,3,22,22,30,0,0,-3,0.866,3.5,77.56,1,800,0 +2003,3,22,23,30,0,0,-3,0.866,3.6,76.64,1,800,0 +2003,3,23,0,30,0,0,-3,0.866,3.6,76.33,1,800,0 +2003,3,23,1,30,0,0,-3,0.866,3.7,75.74,1,800,0 +2003,3,23,2,30,0,0,-3,0.866,3.7,75.10000000000001,1,800,0 +2003,3,23,3,30,0,0,-3,0.866,3.8000000000000003,74.73,1,800,0 +2003,3,23,4,30,0,0,-3,0.866,3.9000000000000004,74.69,1,800,0 +2003,3,23,5,30,0,0,-3,0.866,3.9000000000000004,75.54,1,800,0 +2003,3,23,6,30,33,162,-3,0.866,3.8000000000000003,73.72,3,800,47 +2003,3,23,7,30,76,522,-1,0.866,3.8000000000000003,70.61,5,800,222 +2003,3,23,8,30,89,750,0,0.866,4.1000000000000005,61.39,8,800,432 +2003,3,23,9,30,144,747,0,0.866,4.1000000000000005,55.08,10,800,595 +2003,3,23,10,30,289,491,0,0.866,3.8000000000000003,52.730000000000004,11,800,637 +2003,3,23,11,30,322,538,0,0.866,3.5,49.83,12,800,735 +2003,3,23,12,30,344,476,0,0.866,3.5,47.04,13,800,713 +2003,3,23,13,30,242,662,0,0.866,3.6,47.2,13,800,726 +2003,3,23,14,30,219,584,0,0.866,3.5,47.410000000000004,13,800,591 +2003,3,23,15,30,204,381,0,0.866,3,52.36,12,800,395 +2003,3,23,16,30,136,72,1,0.866,2,60.38,11,800,160 +2003,3,23,17,30,54,102,1,0.866,1.3,74.86,8,800,69 +2003,3,23,18,30,0,0,0,0.866,1.3,80.41,6,800,0 +2003,3,23,19,30,0,0,1,0.866,1.3,86.87,5,800,0 +2003,3,23,20,30,0,0,0,0.866,1.3,90.29,4,800,0 +2003,3,23,21,30,0,0,0,0.866,1.3,96.28,2,800,0 +2003,3,23,22,30,0,0,-1,0.866,1.2000000000000002,89.73,1,800,0 +2003,3,23,23,30,0,0,-2,0.866,0.9,83.43,0,800,0 +2003,3,24,0,30,0,0,-3,0.866,0.5,85.32000000000001,0,800,0 +2003,3,24,1,30,0,0,-3,0.866,0.2,84.52,0,800,0 +2003,3,24,2,30,0,0,-3,0.866,0.30000000000000004,83.5,0,800,0 +2003,3,24,3,30,0,0,-3,0.866,0.7000000000000001,82,0,800,0 +2003,3,24,4,30,0,0,-3,0.866,0.9,81.3,0,800,0 +2003,3,24,5,30,0,0,-3,0.866,1.2000000000000002,89.52,0,800,0 +2003,3,24,6,30,4,0,-2,0.866,1.9000000000000001,87.92,0,800,4 +2003,3,24,7,30,63,0,-1,0.866,2.6,88.05,2,800,63 +2003,3,24,8,30,43,0,-1,0.866,2.7,84.7,3,800,43 +2003,3,24,9,30,216,18,-1,0.866,2.6,74.37,5,800,227 +2003,3,24,10,30,282,27,0,0.866,2.3000000000000003,70.66,6,800,301 +2003,3,24,11,30,346,43,0,0.866,1.7000000000000002,67.43,7,800,379 +2003,3,24,12,30,410,160,0,0.866,1.2000000000000002,64.63,8,800,535 +2003,3,24,13,30,380,189,0,0.866,1.5,71.41,7,800,519 +2003,3,24,14,30,200,12,0,0.866,2.4000000000000004,73.03,7,800,208 +2003,3,24,15,30,126,0,0,0.866,3.1,79.19,6,800,126 +2003,3,24,16,30,35,0,0,0.866,3.3000000000000003,84.38,5,800,35 +2003,3,24,17,30,49,15,0,0.866,2.7,96.33,3,800,52 +2003,3,24,18,30,0,0,0,0.866,1.8,100,2,800,0 +2003,3,24,19,30,0,0,0,0.866,1.1,97.84,1,800,0 +2003,3,24,20,30,0,0,-1,0.866,0.9,92.17,0,800,0 +2003,3,24,21,30,0,0,-1,0.866,0.9,94.3,0,800,0 +2003,3,24,22,30,0,0,-2,0.866,0.8,96.48,0,800,0 +2003,3,24,23,30,0,0,-3,0.866,0.7000000000000001,97.65,-1,800,0 +2003,3,25,0,30,0,0,-4,0.866,0.9,90.53,-1,800,0 +2003,3,25,1,30,0,0,-5,0.866,1.1,88.91,-2,800,0 +2003,3,25,2,30,0,0,-6,0.866,1.4000000000000001,85.95,-3,800,0 +2003,3,25,3,30,0,0,-8,0.866,1.7000000000000002,83.14,-4,800,0 +2003,3,25,4,30,0,0,-9,0.866,2.4000000000000004,81.2,-4,800,0 +2003,3,25,5,30,0,0,-10,0.866,3.2,68.89,-4,800,0 +2003,3,25,6,30,33,401,-10,0.866,3.7,60.19,-2,800,71 +2003,3,25,7,30,71,737,-9,0.866,3.4000000000000004,51.77,0,810,286 +2003,3,25,8,30,101,863,-9,0.866,2.6,44.11,3,810,504 +2003,3,25,9,30,123,926,-9,0.866,2.4000000000000004,39.1,5,810,690 +2003,3,25,10,30,139,958,-8,0.866,2.7,38.87,6,810,827 +2003,3,25,11,30,177,839,-7,0.866,2.9000000000000004,38.93,7,800,829 +2003,3,25,12,30,164,948,-6,0.866,2.9000000000000004,38.79,8,800,906 +2003,3,25,13,30,153,938,-6,0.866,3.1,38.79,9,800,845 +2003,3,25,14,30,131,917,-5,0.866,3.4000000000000004,40.54,9,800,721 +2003,3,25,15,30,100,768,-5,0.866,3.5,44.63,8,800,489 +2003,3,25,16,30,91,561,-4,0.866,2.5,49.83,7,800,280 +2003,3,25,17,30,52,36,-3,0.866,1.2000000000000002,67.39,4,800,57 +2003,3,25,18,30,0,0,-5,0.866,0.7000000000000001,67.4,2,800,0 +2003,3,25,19,30,0,0,-5,0.866,1.2000000000000002,64.23,1,800,0 +2003,3,25,20,30,0,0,-5,0.866,2.2,65.01,0,800,0 +2003,3,25,21,30,0,0,-5,0.866,3,70.72,0,800,0 +2003,3,25,22,30,0,0,-5,0.866,3.6,74.62,0,800,0 +2003,3,25,23,30,0,0,-6,0.866,4.1000000000000005,72.73,0,800,0 +2003,3,26,0,30,0,0,-6,0.866,4.4,71.79,0,800,0 +2003,3,26,1,30,0,0,-6,0.866,4.5,71.73,0,800,0 +2003,3,26,2,30,0,0,-6,0.866,4.3,67.52,0,800,0 +2003,3,26,3,30,0,0,-6,0.866,3.9000000000000004,68.22,0,800,0 +2003,3,26,4,30,0,0,-6,0.866,3.7,67.68,0,800,0 +2003,3,26,5,30,0,0,-6,0.866,3.7,62.64,0,800,0 +2003,3,26,6,30,36,229,-5,0.866,3.8000000000000003,61.47,2,800,59 +2003,3,26,7,30,65,753,-4,0.866,4.3,54.82,6,800,288 +2003,3,26,8,30,85,888,-3,0.866,5.7,47.04,9,800,504 +2003,3,26,9,30,102,948,-3,0.866,6.6000000000000005,42.33,11,800,688 +2003,3,26,10,30,196,750,-2,0.866,6.7,42.49,12,800,739 +2003,3,26,11,30,175,851,-1,0.866,6.9,41.46,13,800,839 +2003,3,26,12,30,211,783,-1,0.866,7,41.64,13,800,828 +2003,3,26,13,30,194,774,-1,0.866,6.9,41.64,13,790,768 +2003,3,26,14,30,190,682,-1,0.866,6.7,42.230000000000004,13,790,631 +2003,3,26,15,30,106,753,-1,0.866,5.9,45.84,12,790,491 +2003,3,26,16,30,71,669,0,0.866,4.4,55.300000000000004,11,790,299 +2003,3,26,17,30,40,429,0,0.866,3.1,69.88,8,790,104 +2003,3,26,18,30,0,0,0,0.866,2.9000000000000004,73.99,7,790,0 +2003,3,26,19,30,0,0,0,0.866,2.8000000000000003,74.79,7,790,0 +2003,3,26,20,30,0,0,1,0.866,3,83.18,6,790,0 +2003,3,26,21,30,0,0,1,0.866,4.2,83.82000000000001,6,790,0 +2003,3,26,22,30,0,0,0,0.866,4.3,84.54,5,790,0 +2003,3,26,23,30,0,0,0,0.866,3.4000000000000004,94.21000000000001,3,790,0 +2003,3,27,0,30,0,0,-1,0.866,3,90.37,1,790,0 +2003,3,27,1,30,0,0,-3,0.866,2.6,83.73,0,790,0 +2003,3,27,2,30,0,0,-5,0.866,1.9000000000000001,79.22,0,790,0 +2003,3,27,3,30,0,0,-6,0.866,1.9000000000000001,76.10000000000001,-1,790,0 +2003,3,27,4,30,0,0,-7,0.866,2.3000000000000003,74.22,-2,790,0 +2003,3,27,5,30,0,0,-9,0.866,2.8000000000000003,67.68,-2,790,0 +2003,3,27,6,30,34,461,-9,0.866,4.3,60.86,-1,790,83 +2003,3,27,7,30,67,786,-10,0.866,5.800000000000001,51.24,0,790,303 +2003,3,27,8,30,87,913,-11,0.866,6.1000000000000005,43.25,0,790,522 +2003,3,27,9,30,223,542,-10,0.866,6,45.230000000000004,1,790,561 +2003,3,27,10,30,283,25,-9,0.866,6.6000000000000005,48.86,0,790,302 +2003,3,27,11,30,286,21,-8,0.866,7.300000000000001,61.26,0,790,302 +2003,3,27,12,30,360,45,-8,0.866,7.300000000000001,65.49,-1,800,396 +2003,3,27,13,30,364,75,-9,0.866,6.4,64.52,-2,800,421 +2003,3,27,14,30,283,44,-10,0.866,5.5,60.01,-2,800,312 +2003,3,27,15,30,136,1,-11,0.866,5,58.230000000000004,-2,800,136 +2003,3,27,16,30,73,0,-11,0.866,4.6000000000000005,61.44,-3,800,73 +2003,3,27,17,30,42,0,-11,0.866,3.8000000000000003,64.62,-4,800,42 +2003,3,27,18,30,0,0,-11,0.866,2.9000000000000004,67.98,-5,800,0 +2003,3,27,19,30,0,0,-12,0.866,2.4000000000000004,72.08,-6,800,0 +2003,3,27,20,30,0,0,-12,0.866,2.6,75.56,-7,800,0 +2003,3,27,21,30,0,0,-12,0.866,3.1,73.85000000000001,-7,800,0 +2003,3,27,22,30,0,0,-12,0.866,3.6,73.89,-7,800,0 +2003,3,27,23,30,0,0,-12,0.866,4,73.91,-7,800,0 +2003,3,28,0,30,0,0,-12,0.866,4.2,73.5,-7,800,0 +2003,3,28,1,30,0,0,-13,0.866,4.1000000000000005,72.13,-7,800,0 +2003,3,28,2,30,0,0,-13,0.866,3.9000000000000004,70.34,-7,800,0 +2003,3,28,3,30,0,0,-13,0.866,3.6,73.65,-8,800,0 +2003,3,28,4,30,0,0,-14,0.866,3.4000000000000004,71.37,-8,800,0 +2003,3,28,5,30,0,0,-14,0.866,3.7,64.15,-7,800,0 +2003,3,28,6,30,44,90,-14,0.866,4.6000000000000005,58.99,-6,800,54 +2003,3,28,7,30,85,528,-14,0.866,5.5,52.47,-4,800,247 +2003,3,28,8,30,79,816,-13,0.866,5.7,47.54,-2,810,473 +2003,3,28,9,30,189,651,-13,0.866,5.5,45.67,-1,810,598 +2003,3,28,10,30,158,946,-12,0.866,5.2,44.07,0,810,850 +2003,3,28,11,30,154,901,-12,0.866,4.800000000000001,42.39,0,810,865 +2003,3,28,12,30,278,659,-11,0.866,4.5,43.47,0,800,803 +2003,3,28,13,30,161,846,-11,0.866,4.3,44.01,0,800,795 +2003,3,28,14,30,220,15,-11,0.866,4.3,44.4,0,800,231 +2003,3,28,15,30,224,57,-11,0.866,4.2,44.42,0,810,253 +2003,3,28,16,30,104,506,-11,0.866,3.7,47.81,0,810,280 +2003,3,28,17,30,53,245,-11,0.866,2.7,56.86,-2,810,91 +2003,3,28,18,30,0,0,-11,0.866,2.1,67.73,-5,810,0 +2003,3,28,19,30,0,0,-12,0.866,1.5,68.02,-6,810,0 +2003,3,28,20,30,0,0,-13,0.866,0.8,71.15,-7,810,0 +2003,3,28,21,30,0,0,-13,0.866,0.6000000000000001,74.32000000000001,-8,810,0 +2003,3,28,22,30,0,0,-14,0.866,1.3,74.8,-9,810,0 +2003,3,28,23,30,0,0,-14,0.866,2.2,72.74,-9,810,0 +2003,3,29,0,30,0,0,-15,0.866,2.9000000000000004,70.73,-9,810,0 +2003,3,29,1,30,0,0,-15,0.866,3.4000000000000004,68.17,-9,810,0 +2003,3,29,2,30,0,0,-15,0.866,3.7,66.6,-9,810,0 +2003,3,29,3,30,0,0,-16,0.866,3.9000000000000004,64.71000000000001,-9,810,0 +2003,3,29,4,30,0,0,-16,0.866,4.1000000000000005,62.27,-9,810,0 +2003,3,29,5,30,0,0,-17,0.866,4.5,55.99,-8,810,0 +2003,3,29,6,30,37,482,-16,0.866,4.800000000000001,48.82,-6,810,94 +2003,3,29,7,30,73,774,-15,0.866,4.800000000000001,41.42,-2,810,314 +2003,3,29,8,30,64,903,-13,0.866,4.7,40.19,0,810,504 +2003,3,29,9,30,100,896,-13,0.866,4.6000000000000005,36.56,0,810,667 +2003,3,29,10,30,137,891,-12,0.866,4.5,37.97,1,810,794 +2003,3,29,11,30,145,927,-12,0.866,4.4,39.93,1,810,881 +2003,3,29,12,30,402,307,-11,0.866,4.3,42.6,1,810,647 +2003,3,29,13,30,387,131,-10,0.866,4.5,46.22,1,810,486 +2003,3,29,14,30,35,0,-9,0.866,4.800000000000001,49.1,1,810,35 +2003,3,29,15,30,122,706,-9,0.866,4.3,50.06,0,810,489 +2003,3,29,16,30,128,367,-9,0.866,2.7,53.550000000000004,0,810,256 +2003,3,29,17,30,56,202,-8,0.866,1.3,65.28,-1,810,88 +2003,3,29,18,30,0,0,-9,0.866,0.5,67.31,-2,810,0 +2003,3,29,19,30,0,0,-9,0.866,0.30000000000000004,71.16,-3,810,0 +2003,3,29,20,30,0,0,-9,0.866,0.6000000000000001,74.99,-4,810,0 +2003,3,29,21,30,0,0,-10,0.866,1.1,72.48,-4,810,0 +2003,3,29,22,30,0,0,-10,0.866,1.7000000000000002,69.94,-4,810,0 +2003,3,29,23,30,0,0,-10,0.866,2.3000000000000003,67.87,-4,810,0 +2003,3,30,0,30,0,0,-11,0.866,3,70.35000000000001,-5,810,0 +2003,3,30,1,30,0,0,-11,0.866,3.6,65.08,-4,810,0 +2003,3,30,2,30,0,0,-11,0.866,4,66.26,-4,810,0 +2003,3,30,3,30,0,0,-10,0.866,4.3,63.15,-3,810,0 +2003,3,30,4,30,0,0,-10,0.866,4.5,65.8,-3,810,0 +2003,3,30,5,30,0,0,-10,0.866,4.9,62.63,-2,810,0 +2003,3,30,6,30,21,0,-9,0.866,5.300000000000001,56.870000000000005,0,810,21 +2003,3,30,7,30,69,0,-8,0.866,5.9,54.300000000000004,1,810,69 +2003,3,30,8,30,106,834,-6,0.866,6.2,54.49,4,810,517 +2003,3,30,9,30,191,658,-4,0.866,6,53.620000000000005,6,810,610 +2003,3,30,10,30,145,927,-3,0.866,5.800000000000001,50.78,8,810,832 +2003,3,30,11,30,140,960,-2,0.866,5.5,50.77,9,810,906 +2003,3,30,12,30,363,452,-1,0.866,5.2,49.75,10,810,726 +2003,3,30,13,30,209,751,-1,0.866,4.9,51.07,10,810,777 +2003,3,30,14,30,136,893,-1,0.866,4.800000000000001,51.45,10,810,726 +2003,3,30,15,30,127,692,-1,0.866,4.3,55,9,810,490 +2003,3,30,16,30,106,510,-1,0.866,3,60.27,8,810,286 +2003,3,30,17,30,66,207,0,0.866,2,79.04,5,810,100 +2003,3,30,18,30,0,0,-1,0.866,2.3000000000000003,89.51,2,810,0 +2003,3,30,19,30,0,0,-2,0.866,3.2,84.17,2,810,0 +2003,3,30,20,30,0,0,-3,0.866,4.1000000000000005,78.64,2,810,0 +2003,3,30,21,30,0,0,-4,0.866,4.5,73.98,1,810,0 +2003,3,30,22,30,0,0,-4,0.866,4.7,71.64,1,810,0 +2003,3,30,23,30,0,0,-4,0.866,4.6000000000000005,70.39,1,810,0 +2003,3,31,0,30,0,0,-4,0.866,4.6000000000000005,70.28,1,810,0 +2003,3,31,1,30,0,0,-4,0.866,4.5,70.61,1,810,0 +2003,3,31,2,30,0,0,-4,0.866,4.4,71.05,1,810,0 +2003,3,31,3,30,0,0,-4,0.866,4.4,71.67,1,810,0 +2003,3,31,4,30,0,0,-4,0.866,4.4,72.06,1,810,0 +2003,3,31,5,30,0,0,-4,0.866,4.5,72.13,1,810,0 +2003,3,31,6,30,39,0,-3,0.866,4.7,65.09,4,810,39 +2003,3,31,7,30,133,176,-2,0.866,4.7,58.31,7,810,190 +2003,3,31,8,30,229,183,-1,0.866,4.5,52.63,10,810,320 +2003,3,31,9,30,316,133,-1,0.866,4.2,45.86,12,810,402 +2003,3,31,10,30,364,77,-1,0.866,3.8000000000000003,42.82,13,800,422 +2003,3,31,11,30,272,676,-1,0.866,3.8000000000000003,40.24,14,800,815 +2003,3,31,12,30,320,593,-1,0.866,4.1000000000000005,40.480000000000004,15,800,798 +2003,3,31,13,30,221,731,0,0.866,4.4,38.01,15,800,777 +2003,3,31,14,30,138,820,-1,0.866,4.6000000000000005,40.45,14,800,683 +2003,3,31,15,30,245,217,-1,0.866,4.3,39.94,14,800,359 +2003,3,31,16,30,157,86,0,0.866,3.1,47.33,12,800,188 +2003,3,31,17,30,63,45,1,0.866,1.9000000000000001,67.05,9,800,71 +2003,3,31,18,30,0,0,0,0.866,1.7000000000000002,76.09,6,800,0 +2003,3,31,19,30,0,0,-1,0.866,2,74.98,5,800,0 +2003,3,31,20,30,0,0,-1,0.866,2.6,76.18,4,800,0 +2003,3,31,21,30,0,0,-2,0.866,3.2,71.09,4,800,0 +2003,3,31,22,30,0,0,-3,0.866,3.6,71.63,3,800,0 +2003,3,31,23,30,0,0,-4,0.866,3.8000000000000003,69.02,3,800,0 +2003,4,1,0,30,0,0,-4,0.866,3.9000000000000004,68.12,3,800,0 +2003,4,1,1,30,0,0,-4,0.866,4,68.18,3,800,0 +2003,4,1,2,30,0,0,-4,0.866,3.9000000000000004,68.42,3,800,0 +2003,4,1,3,30,0,0,-4,0.866,3.7,67.78,3,800,0 +2003,4,1,4,30,0,0,-4,0.866,3.6,66.09,3,800,0 +2003,4,1,5,30,0,0,-5,0.866,3.7,63.61,3,800,0 +2003,4,1,6,30,49,46,-4,0.866,4.1000000000000005,53.65,6,800,55 +2003,4,1,7,30,137,130,-2,0.866,4.3,46.25,10,800,180 +2003,4,1,8,30,188,453,-1,0.866,4.3,41.050000000000004,13,800,416 +2003,4,1,9,30,223,585,-2,0.866,4.4,36.56,15,800,601 +2003,4,1,10,30,140,900,-2,0.866,4.2,32.02,16,800,814 +2003,4,1,11,30,122,998,-2,0.866,4.2,29.82,17,800,926 +2003,4,1,12,30,119,1002,-2,0.866,4.3,27.53,18,800,931 +2003,4,1,13,30,212,754,-2,0.866,4.5,27.13,18,800,788 +2003,4,1,14,30,109,956,-3,0.866,4.7,26.740000000000002,18,800,747 +2003,4,1,15,30,96,900,-2,0.866,4.6000000000000005,29.310000000000002,17,800,573 +2003,4,1,16,30,99,562,-1,0.866,3.9000000000000004,40,14,800,301 +2003,4,1,17,30,38,539,0,0.866,3.1,50.9,11,800,129 +2003,4,1,18,30,0,0,-1,0.866,3.2,59.83,8,800,0 +2003,4,1,19,30,0,0,-1,0.866,3.7,61.300000000000004,7,800,0 +2003,4,1,20,30,0,0,-2,0.866,3.8000000000000003,63.54,6,800,0 +2003,4,1,21,30,0,0,-2,0.866,3.8000000000000003,61.13,6,800,0 +2003,4,1,22,30,0,0,-3,0.866,3.9000000000000004,62.480000000000004,6,800,0 +2003,4,1,23,30,0,0,-4,0.866,3.8000000000000003,59.160000000000004,5,800,0 +2003,4,2,0,30,0,0,-4,0.866,3.6,56.77,5,800,0 +2003,4,2,1,30,0,0,-5,0.866,3.5,59.35,4,800,0 +2003,4,2,2,30,0,0,-5,0.866,3.5,62.96,4,800,0 +2003,4,2,3,30,0,0,-5,0.866,3.6,62.35,3,800,0 +2003,4,2,4,30,0,0,-5,0.866,3.6,61.56,3,800,0 +2003,4,2,5,30,0,0,-5,0.866,3.8000000000000003,56.28,4,800,0 +2003,4,2,6,30,43,469,-5,0.866,4.2,46.89,7,800,108 +2003,4,2,7,30,48,790,-4,0.866,4.4,38.74,11,800,311 +2003,4,2,8,30,59,0,-4,0.866,4.800000000000001,31.82,14,800,59 +2003,4,2,9,30,120,858,-5,0.866,5.300000000000001,26.68,15,800,678 +2003,4,2,10,30,139,906,-5,0.866,5.4,24.88,16,800,823 +2003,4,2,11,30,170,885,-5,0.866,5.4,24.1,17,790,887 +2003,4,2,12,30,121,1011,-4,0.866,5.4,23.53,18,790,944 +2003,4,2,13,30,278,629,-4,0.866,5.4,24.19,18,790,761 +2003,4,2,14,30,150,800,-4,0.866,5.6000000000000005,25.92,17,790,687 +2003,4,2,15,30,96,811,-4,0.866,5.6000000000000005,27.09,16,790,529 +2003,4,2,16,30,79,713,-4,0.866,5,30.57,14,790,338 +2003,4,2,17,30,51,480,-4,0.866,3.8000000000000003,39.35,11,790,134 +2003,4,2,18,30,0,0,-3,0.866,3.4000000000000004,49.04,8,790,0 +2003,4,2,19,30,0,0,-4,0.866,3.7,50.550000000000004,7,790,0 +2003,4,2,20,30,0,0,-4,0.866,3.9000000000000004,53.120000000000005,6,790,0 +2003,4,2,21,30,0,0,-4,0.866,3.9000000000000004,56.01,5,790,0 +2003,4,2,22,30,0,0,-5,0.866,3.5,58.43,4,790,0 +2003,4,2,23,30,0,0,-5,0.866,3,61.81,3,790,0 +2003,4,3,0,30,0,0,-5,0.866,2.8000000000000003,60.35,3,790,0 +2003,4,3,1,30,0,0,-5,0.866,2.4000000000000004,64.31,2,790,0 +2003,4,3,2,30,0,0,-5,0.866,1.9000000000000001,64.56,2,790,0 +2003,4,3,3,30,0,0,-6,0.866,1.4000000000000001,63.99,2,790,0 +2003,4,3,4,30,0,0,-6,0.866,0.8,62.7,1,790,0 +2003,4,3,5,30,0,0,-6,0.866,0.5,62.04,2,790,0 +2003,4,3,6,30,56,354,-4,0.866,0.9,62.230000000000004,4,790,107 +2003,4,3,7,30,78,627,-5,0.866,1.6,48.21,7,790,289 +2003,4,3,8,30,142,781,-6,0.866,2.1,38.27,9,790,542 +2003,4,3,9,30,173,846,-7,0.866,2.8000000000000003,33.58,10,790,728 +2003,4,3,10,30,190,890,-7,0.866,3.7,32.26,10,790,865 +2003,4,3,11,30,187,926,-8,0.866,4.5,29.01,11,790,941 +2003,4,3,12,30,167,901,-8,0.866,5.2,27.900000000000002,11,790,904 +2003,4,3,13,30,145,908,-9,0.866,5.5,28.900000000000002,10,790,845 +2003,4,3,14,30,121,877,-9,0.866,5.2,30.21,9,790,713 +2003,4,3,15,30,147,801,-9,0.866,4.7,31.79,8,790,577 +2003,4,3,16,30,66,729,-9,0.866,3.6,33.69,7,790,333 +2003,4,3,17,30,44,486,-8,0.866,2.3000000000000003,45.28,4,790,129 +2003,4,3,18,30,0,0,-6,0.866,2.2,61.13,2,790,0 +2003,4,3,19,30,0,0,-5,0.866,2.7,64.81,1,800,0 +2003,4,3,20,30,0,0,-4,0.866,2.5,69.68,0,800,0 +2003,4,3,21,30,0,0,-4,0.866,1.7000000000000002,75,0,800,0 +2003,4,3,22,30,0,0,-4,0.866,0.8,74.74,0,800,0 +2003,4,3,23,30,0,0,-4,0.866,0.5,80,0,800,0 +2003,4,4,0,30,0,0,-5,0.866,0.5,84.95,-1,800,0 +2003,4,4,1,30,0,0,-5,0.866,0.5,83.04,-1,800,0 +2003,4,4,2,30,0,0,-5,0.866,0.7000000000000001,80.52,-1,800,0 +2003,4,4,3,30,0,0,-6,0.866,0.9,82.01,-2,800,0 +2003,4,4,4,30,0,0,-7,0.866,0.9,83.47,-3,800,0 +2003,4,4,5,30,0,0,-8,0.866,1.1,78.41,-2,800,0 +2003,4,4,6,30,37,478,-8,0.866,2,65.95,-1,800,108 +2003,4,4,7,30,91,736,-10,0.866,3,49.74,0,800,343 +2003,4,4,8,30,114,876,-12,0.866,3.4000000000000004,37.660000000000004,2,800,566 +2003,4,4,9,30,135,938,-14,0.866,3.5,31.12,3,800,754 +2003,4,4,10,30,149,970,-14,0.866,3.6,27.91,4,800,889 +2003,4,4,11,30,149,994,-14,0.866,3.6,26,5,800,962 +2003,4,4,12,30,152,990,-14,0.866,3.5,26.400000000000002,5,800,966 +2003,4,4,13,30,152,967,-14,0.866,3.5,25.36,6,800,900 +2003,4,4,14,30,103,944,-13,0.866,3.6,27.72,5,800,743 +2003,4,4,15,30,95,819,-13,0.866,3.5,29.85,4,800,537 +2003,4,4,16,30,75,686,-13,0.866,2.8000000000000003,32.37,3,800,329 +2003,4,4,17,30,58,316,-11,0.866,1.5,40.68,1,800,114 +2003,4,4,18,30,0,0,-9,0.866,0.8,52.370000000000005,0,800,0 +2003,4,4,19,30,0,0,-9,0.866,0.7000000000000001,55.230000000000004,0,800,0 +2003,4,4,20,30,0,0,-10,0.866,0.9,55.410000000000004,-1,800,0 +2003,4,4,21,30,0,0,-11,0.866,1.5,53.42,-1,800,0 +2003,4,4,22,30,0,0,-10,0.866,1.8,58.83,-2,800,0 +2003,4,4,23,30,0,0,-9,0.866,1.6,63.78,-2,800,0 +2003,4,5,0,30,0,0,-9,0.866,1.5,68.06,-2,800,0 +2003,4,5,1,30,0,0,-8,0.866,1.3,72.59,-2,800,0 +2003,4,5,2,30,0,0,-7,0.866,1.1,77.82000000000001,-2,800,0 +2003,4,5,3,30,0,0,-6,0.866,1,81.97,-2,800,0 +2003,4,5,4,30,0,0,-6,0.866,1.2000000000000002,83.94,-2,800,0 +2003,4,5,5,30,0,0,-6,0.866,1.9000000000000001,82.71000000000001,-2,800,0 +2003,4,5,6,30,43,400,-6,0.866,3.5,67.83,0,800,105 +2003,4,5,7,30,102,678,-6,0.866,4.800000000000001,58.11,2,800,337 +2003,4,5,8,30,136,801,-7,0.866,4.800000000000001,45.97,5,800,554 +2003,4,5,9,30,132,835,-8,0.866,4.4,37.14,7,790,687 +2003,4,5,10,30,157,872,-8,0.866,4.2,33.64,8,790,826 +2003,4,5,11,30,296,655,-8,0.866,4.1000000000000005,31.35,9,790,835 +2003,4,5,12,30,430,264,-8,0.866,4.1000000000000005,32.15,9,790,648 +2003,4,5,13,30,283,21,-7,0.866,3.9000000000000004,36.43,8,790,299 +2003,4,5,14,30,229,16,-6,0.866,3.5,43.36,7,790,240 +2003,4,5,15,30,25,0,-5,0.866,2.7,51.82,6,790,25 +2003,4,5,16,30,43,0,-3,0.866,2,60.15,5,790,43 +2003,4,5,17,30,6,0,-2,0.866,1.9000000000000001,76.2,3,790,6 +2003,4,5,18,30,0,0,-1,0.866,1.9000000000000001,87.08,1,790,0 +2003,4,5,19,30,0,0,-1,0.866,1.9000000000000001,86.84,1,790,0 +2003,4,5,20,30,0,0,-2,0.866,2,85.8,0,790,0 +2003,4,5,21,30,0,0,-2,0.866,1.9000000000000001,90.79,0,790,0 +2003,4,5,22,30,0,0,-2,0.866,1.6,95.82000000000001,0,790,0 +2003,4,5,23,30,0,0,-2,0.866,1.2000000000000002,93.68,0,790,0 +2003,4,6,0,30,0,0,-3,0.866,0.7000000000000001,92.13,0,790,0 +2003,4,6,1,30,0,0,-3,0.866,0.8,90.93,0,790,0 +2003,4,6,2,30,0,0,-3,0.866,1.2000000000000002,95.15,-1,790,0 +2003,4,6,3,30,0,0,-4,0.866,1.5,91.35000000000001,-1,790,0 +2003,4,6,4,30,0,0,-4,0.866,1.8,87.8,-1,790,0 +2003,4,6,5,30,0,0,-5,0.866,2,84.94,-1,790,0 +2003,4,6,6,30,9,0,-5,0.866,2.5,77.60000000000001,0,790,9 +2003,4,6,7,30,131,23,-5,0.866,3.2,71.19,0,790,140 +2003,4,6,8,30,247,161,-6,0.866,3.9000000000000004,62.92,2,790,332 +2003,4,6,9,30,334,206,-7,0.866,4.3,54.82,3,790,472 +2003,4,6,10,30,367,356,-7,0.866,4.6000000000000005,47.93,4,790,642 +2003,4,6,11,30,440,160,-8,0.866,4.800000000000001,42.660000000000004,5,790,572 +2003,4,6,12,30,410,444,-8,0.866,4.9,41.56,5,790,778 +2003,4,6,13,30,163,946,-9,0.866,4.9,40.68,5,790,901 +2003,4,6,14,30,112,914,-9,0.866,4.6000000000000005,39.660000000000004,5,790,737 +2003,4,6,15,30,116,880,-9,0.866,4.1000000000000005,41.27,4,790,597 +2003,4,6,16,30,90,779,-10,0.866,3.2,43.2,3,800,383 +2003,4,6,17,30,68,352,-9,0.866,1.7000000000000002,50.61,1,800,133 +2003,4,6,18,30,0,0,-7,0.866,0.7000000000000001,68.76,-1,800,0 +2003,4,6,19,30,0,0,-8,0.866,0.5,71.29,-2,800,0 +2003,4,6,20,30,0,0,-9,0.866,0.30000000000000004,73.13,-3,800,0 +2003,4,6,21,30,0,0,-9,0.866,0.2,76.17,-4,800,0 +2003,4,6,22,30,0,0,-9,0.866,0.2,74.11,-4,800,0 +2003,4,6,23,30,0,0,-10,0.866,0.4,78.92,-5,800,0 +2003,4,7,0,30,0,0,-10,0.866,0.6000000000000001,78.11,-5,800,0 +2003,4,7,1,30,0,0,-10,0.866,1,76.71000000000001,-5,800,0 +2003,4,7,2,30,0,0,-10,0.866,1.4000000000000001,74.53,-5,800,0 +2003,4,7,3,30,0,0,-11,0.866,1.7000000000000002,72.01,-5,800,0 +2003,4,7,4,30,0,0,-11,0.866,1.9000000000000001,69.75,-5,800,0 +2003,4,7,5,30,0,0,-11,0.866,2.3000000000000003,63.370000000000005,-4,800,0 +2003,4,7,6,30,57,229,-11,0.866,3.1,53.51,-1,800,94 +2003,4,7,7,30,104,524,-10,0.866,3.9000000000000004,50.04,0,800,291 +2003,4,7,8,30,158,6,-8,0.866,4.4,51.550000000000004,0,800,161 +2003,4,7,9,30,309,361,-8,0.866,4.6000000000000005,54.61,1,800,552 +2003,4,7,10,30,165,854,-7,0.866,4.5,55.97,1,810,827 +2003,4,7,11,30,438,143,-7,0.866,4.3,56.53,2,810,557 +2003,4,7,12,30,442,163,-7,0.866,4.2,56.21,2,810,578 +2003,4,7,13,30,164,9,-7,0.866,4.1000000000000005,51.92,3,810,172 +2003,4,7,14,30,309,52,-7,0.866,4,55.38,2,810,345 +2003,4,7,15,30,207,23,-7,0.866,3.7,55.11,2,810,220 +2003,4,7,16,30,62,0,-7,0.866,3.2,55.1,1,810,62 +2003,4,7,17,30,16,0,-7,0.866,2,60.18,0,810,16 +2003,4,7,18,30,0,0,-7,0.866,1.1,71.32000000000001,-1,810,0 +2003,4,7,19,30,0,0,-7,0.866,0.8,75.68,-2,810,0 +2003,4,7,20,30,0,0,-7,0.866,0.6000000000000001,80.38,-3,810,0 +2003,4,7,21,30,0,0,-8,0.866,0.6000000000000001,78.92,-3,810,0 +2003,4,7,22,30,0,0,-8,0.866,0.6000000000000001,82.59,-4,810,0 +2003,4,7,23,30,0,0,-8,0.866,0.7000000000000001,86.87,-5,810,0 +2003,4,8,0,30,0,0,-9,0.866,0.9,84.71000000000001,-5,810,0 +2003,4,8,1,30,0,0,-9,0.866,1.3,82.25,-5,810,0 +2003,4,8,2,30,0,0,-9,0.866,2,79.69,-5,810,0 +2003,4,8,3,30,0,0,-10,0.866,2.8000000000000003,76.53,-5,810,0 +2003,4,8,4,30,0,0,-10,0.866,3.2,73.27,-5,810,0 +2003,4,8,5,30,0,0,-11,0.866,3.7,65.08,-4,810,0 +2003,4,8,6,30,54,304,-11,0.866,3.7,49.660000000000004,-1,810,106 +2003,4,8,7,30,101,546,-10,0.866,2.9000000000000004,42.78,2,810,299 +2003,4,8,8,30,138,828,-10,0.866,2.2,36.730000000000004,5,810,581 +2003,4,8,9,30,151,912,-10,0.866,1.7000000000000002,32.55,7,810,769 +2003,4,8,10,30,155,962,-9,0.866,1.5,29.740000000000002,9,810,905 +2003,4,8,11,30,149,994,-8,0.866,1.5,29.23,10,810,977 +2003,4,8,12,30,149,993,-8,0.866,1.6,28.6,11,810,979 +2003,4,8,13,30,140,982,-8,0.866,1.6,27.26,12,810,914 +2003,4,8,14,30,124,873,-7,0.866,1.5,25.78,13,810,727 +2003,4,8,15,30,81,875,-7,0.866,1.4000000000000001,27.900000000000002,12,810,565 +2003,4,8,16,30,88,637,-7,0.866,1.1,32.81,10,810,332 +2003,4,8,17,30,55,579,-3,0.866,1,54.53,7,810,166 +2003,4,8,18,30,0,0,-4,0.866,1.1,64.37,3,810,0 +2003,4,8,19,30,0,0,-5,0.866,1.2000000000000002,65,1,810,0 +2003,4,8,20,30,0,0,-6,0.866,1.6,63.18,1,810,0 +2003,4,8,21,30,0,0,-6,0.866,2.4000000000000004,62.52,1,810,0 +2003,4,8,22,30,0,0,-6,0.866,3.2,61.410000000000004,1,810,0 +2003,4,8,23,30,0,0,-7,0.866,3.8000000000000003,58.88,0,810,0 +2003,4,9,0,30,0,0,-7,0.866,4,59.72,0,810,0 +2003,4,9,1,30,0,0,-8,0.866,4,57,0,810,0 +2003,4,9,2,30,0,0,-8,0.866,4,55.45,0,810,0 +2003,4,9,3,30,0,0,-9,0.866,3.9000000000000004,54.4,0,810,0 +2003,4,9,4,30,0,0,-9,0.866,3.9000000000000004,53.24,0,810,0 +2003,4,9,5,30,0,0,-9,0.866,4,48.57,1,810,0 +2003,4,9,6,30,49,585,-8,0.866,4.1000000000000005,43.72,5,810,151 +2003,4,9,7,30,79,816,-6,0.866,4,36.64,9,810,378 +2003,4,9,8,30,95,930,-6,0.866,3.6,28.91,13,810,597 +2003,4,9,9,30,111,982,-7,0.866,3,21.61,16,810,780 +2003,4,9,10,30,122,1008,-7,0.866,2.2,20.06,17,810,912 +2003,4,9,11,30,122,1027,-7,0.866,1.6,19.240000000000002,18,810,981 +2003,4,9,12,30,123,1025,-7,0.866,1,18.69,19,810,983 +2003,4,9,13,30,117,1011,-6,0.866,0.6000000000000001,17.97,20,810,917 +2003,4,9,14,30,110,978,-6,0.866,0.4,19.52,19,800,789 +2003,4,9,15,30,96,924,-6,0.866,0.2,21.27,18,800,609 +2003,4,9,16,30,77,826,-4,0.866,0.1,27.23,16,800,395 +2003,4,9,17,30,50,620,1,0.866,0.1,55.2,12,800,170 +2003,4,9,18,30,0,0,-2,0.866,0.2,51.800000000000004,9,810,0 +2003,4,9,19,30,0,0,-3,0.866,0.5,51.59,8,810,0 +2003,4,9,20,30,0,0,-3,0.866,1,58.26,6,810,0 +2003,4,9,21,30,0,0,-3,0.866,1.7000000000000002,61.19,5,810,0 +2003,4,9,22,30,0,0,-3,0.866,2.1,64.73,4,810,0 +2003,4,9,23,30,0,0,-4,0.866,2.2,62.5,4,800,0 +2003,4,10,0,30,0,0,-4,0.866,2.3000000000000003,59.92,4,800,0 +2003,4,10,1,30,0,0,-5,0.866,2.2,63.050000000000004,3,800,0 +2003,4,10,2,30,0,0,-5,0.866,2.1,62.95,3,800,0 +2003,4,10,3,30,0,0,-5,0.866,1.9000000000000001,66.95,3,800,0 +2003,4,10,4,30,0,0,-5,0.866,1.8,65.48,2,810,0 +2003,4,10,5,30,0,0,-6,0.866,1.7000000000000002,55.050000000000004,4,810,0 +2003,4,10,6,30,52,565,-3,0.866,2.1,50.89,8,810,153 +2003,4,10,7,30,82,802,-2,0.866,2,37.94,13,810,379 +2003,4,10,8,30,100,914,-5,0.866,1.2000000000000002,24.51,16,810,598 +2003,4,10,9,30,116,968,-7,0.866,1,20.7,17,810,780 +2003,4,10,10,30,132,962,-7,0.866,1.7000000000000002,19.240000000000002,18,810,889 +2003,4,10,11,30,131,1007,-7,0.866,2.5,18.43,19,800,977 +2003,4,10,12,30,133,1002,-6,0.866,3,17.67,20,800,977 +2003,4,10,13,30,131,982,-6,0.866,3.1,18,20,800,910 +2003,4,10,14,30,129,936,-6,0.866,3,18.18,20,800,781 +2003,4,10,15,30,116,869,-6,0.866,2.9000000000000004,19.63,19,800,601 +2003,4,10,16,30,59,792,-5,0.866,2.3000000000000003,24.02,17,800,366 +2003,4,10,17,30,62,515,-1,0.866,1.7000000000000002,38.59,14,800,164 +2003,4,10,18,30,0,0,-2,0.866,1.5,45.4,11,800,0 +2003,4,10,19,30,0,0,-2,0.866,1.4000000000000001,47.910000000000004,10,800,0 +2003,4,10,20,30,0,0,-2,0.866,1.1,47.59,10,800,0 +2003,4,10,21,30,0,0,-2,0.866,1.1,50.92,9,800,0 +2003,4,10,22,30,0,0,-2,0.866,1.2000000000000002,54.730000000000004,8,800,0 +2003,4,10,23,30,0,0,-2,0.866,1.4000000000000001,60.72,6,800,0 +2003,4,11,0,30,0,0,-3,0.866,1.5,63.07,5,800,0 +2003,4,11,1,30,0,0,-3,0.866,1.6,66.58,4,800,0 +2003,4,11,2,30,0,0,-3,0.866,1.6,65.78,4,800,0 +2003,4,11,3,30,0,0,-3,0.866,1.7000000000000002,64.9,4,800,0 +2003,4,11,4,30,0,0,-4,0.866,1.9000000000000001,64.12,4,800,0 +2003,4,11,5,30,0,0,-4,0.866,2.4000000000000004,59.57,5,800,0 +2003,4,11,6,30,49,453,-2,0.866,3,49.75,9,800,132 +2003,4,11,7,30,63,749,-3,0.866,2.5,37.07,13,800,345 +2003,4,11,8,30,105,786,-4,0.866,1.1,26.900000000000002,16,800,537 +2003,4,11,9,30,155,796,-5,0.866,1.4000000000000001,23.05,18,800,704 +2003,4,11,10,30,146,914,-4,0.866,2.6,22.46,19,800,869 +2003,4,11,11,30,162,926,-4,0.866,3.2,21.66,20,800,944 +2003,4,11,12,30,406,435,-4,0.866,3.4000000000000004,20.3,21,800,773 +2003,4,11,13,30,156,895,-4,0.866,3.2,21.240000000000002,20,800,869 +2003,4,11,14,30,256,573,-4,0.866,2.8000000000000003,21.13,20,800,657 +2003,4,11,15,30,78,901,-4,0.866,1.9000000000000001,22.42,19,800,584 +2003,4,11,16,30,115,677,-2,0.866,1.1,30.900000000000002,16,800,380 +2003,4,11,17,30,74,431,2,0.866,1,50.59,14,800,161 +2003,4,11,18,30,0,0,0,0.866,1.4000000000000001,48.07,12,800,0 +2003,4,11,19,30,0,0,-1,0.866,1.7000000000000002,47.1,11,800,0 +2003,4,11,20,30,0,0,-1,0.866,1.8,52.86,9,800,0 +2003,4,11,21,30,0,0,-2,0.866,2,59.74,7,800,0 +2003,4,11,22,30,0,0,-2,0.866,2.5,62.31,6,800,0 +2003,4,11,23,30,0,0,-3,0.866,2.8000000000000003,59.620000000000005,6,800,0 +2003,4,12,0,30,0,0,-3,0.866,2.8000000000000003,60.94,5,800,0 +2003,4,12,1,30,0,0,-4,0.866,2.6,58.09,5,800,0 +2003,4,12,2,30,0,0,-4,0.866,2.4000000000000004,56.06,5,800,0 +2003,4,12,3,30,0,0,-5,0.866,2.2,59.08,5,800,0 +2003,4,12,4,30,0,0,-5,0.866,2.1,58.13,5,800,0 +2003,4,12,5,30,0,0,-5,0.866,2.2,50.410000000000004,6,800,0 +2003,4,12,6,30,41,564,-2,0.866,2.7,42.76,11,800,147 +2003,4,12,7,30,84,791,-4,0.866,2.6,30.16,15,800,385 +2003,4,12,8,30,114,850,-6,0.866,2.1,21.35,18,800,584 +2003,4,12,9,30,139,896,-7,0.866,2.1,18.72,19,800,761 +2003,4,12,10,30,143,927,-7,0.866,2.2,17.45,20,800,879 +2003,4,12,11,30,209,829,-6,0.866,2.2,16.6,21,800,911 +2003,4,12,12,30,219,811,-6,0.866,2,15.91,22,800,908 +2003,4,12,13,30,183,837,-6,0.866,1.8,16.19,22,800,853 +2003,4,12,14,30,241,615,-6,0.866,1.6,17.6,21,800,674 +2003,4,12,15,30,189,534,-5,0.866,1.5,19.240000000000002,20,800,491 +2003,4,12,16,30,98,613,-4,0.866,1.1,24.3,18,800,339 +2003,4,12,17,30,77,62,1,0.866,0.8,45.43,15,800,90 +2003,4,12,18,30,0,0,0,0.866,1,53.120000000000005,12,800,0 +2003,4,12,19,30,0,0,0,0.866,1.4000000000000001,57.79,10,800,0 +2003,4,12,20,30,0,0,0,0.866,1.9000000000000001,60.9,9,800,0 +2003,4,12,21,30,0,0,-1,0.866,2.5,60.36,8,800,0 +2003,4,12,22,30,0,0,-2,0.866,2.8000000000000003,60.4,7,800,0 +2003,4,12,23,30,0,0,-2,0.866,2.9000000000000004,57.18,7,800,0 +2003,4,13,0,30,0,0,-3,0.866,2.9000000000000004,57.79,6,800,0 +2003,4,13,1,30,0,0,-4,0.866,2.9000000000000004,53.800000000000004,6,800,0 +2003,4,13,2,30,0,0,-5,0.866,3,53.88,5,800,0 +2003,4,13,3,30,0,0,-6,0.866,3,51.08,5,800,0 +2003,4,13,4,30,0,0,-6,0.866,3,49.410000000000004,5,800,0 +2003,4,13,5,30,0,0,-6,0.866,3,42.86,7,800,0 +2003,4,13,6,30,36,627,-4,0.866,3.2,36.94,11,800,158 +2003,4,13,7,30,106,740,-4,0.866,2.8000000000000003,29.03,15,800,390 +2003,4,13,8,30,133,853,-5,0.866,1.5,22.57,18,800,608 +2003,4,13,9,30,150,917,-6,0.866,0.8,18.77,20,800,790 +2003,4,13,10,30,161,949,-6,0.866,1.5,17.6,21,800,919 +2003,4,13,11,30,171,956,-6,0.866,2.3000000000000003,16.69,22,800,984 +2003,4,13,12,30,170,953,-5,0.866,2.7,15.97,23,800,983 +2003,4,13,13,30,161,937,-5,0.866,3,16.15,23,800,914 +2003,4,13,14,30,114,921,-5,0.866,3,16.37,23,800,764 +2003,4,13,15,30,127,844,-5,0.866,2.5,17.47,22,800,606 +2003,4,13,16,30,100,739,-4,0.866,1.6,20.6,20,800,393 +2003,4,13,17,30,51,508,0,0.866,0.9,37.800000000000004,16,800,156 +2003,4,13,18,30,0,0,1,0.866,0.30000000000000004,53.99,12,800,0 +2003,4,13,19,30,0,0,0,0.866,0.7000000000000001,56.02,10,800,0 +2003,4,13,20,30,0,0,-1,0.866,1.9000000000000001,53.49,9,800,0 +2003,4,13,21,30,0,0,-2,0.866,3,53.86,8,800,0 +2003,4,13,22,30,0,0,-4,0.866,3.5,51.83,8,800,0 +2003,4,13,23,30,0,0,-4,0.866,3.6,48.83,7,800,0 +2003,4,14,0,30,0,0,-5,0.866,3.6,47.96,7,800,0 +2003,4,14,1,30,0,0,-5,0.866,3.5,51.54,7,800,0 +2003,4,14,2,30,0,0,-4,0.866,3.3000000000000003,52.27,6,800,0 +2003,4,14,3,30,0,0,-4,0.866,3.1,53.25,6,800,0 +2003,4,14,4,30,0,0,-4,0.866,2.9000000000000004,54.35,6,800,0 +2003,4,14,5,30,0,0,-3,0.866,3,52.5,7,800,0 +2003,4,14,6,30,62,352,-2,0.866,3.4000000000000004,44.19,11,800,132 +2003,4,14,7,30,84,664,-1,0.866,3.3000000000000003,35.42,15,800,343 +2003,4,14,8,30,116,766,-2,0.866,2.6,27.75,18,800,546 +2003,4,14,9,30,137,850,-3,0.866,1.8,23.77,19,800,733 +2003,4,14,10,30,138,957,-4,0.866,1.6,21.54,20,800,905 +2003,4,14,11,30,157,959,-4,0.866,1.7000000000000002,19.89,21,800,976 +2003,4,14,12,30,218,819,-4,0.866,1.9000000000000001,18.76,22,800,918 +2003,4,14,13,30,174,861,-4,0.866,1.8,18.81,22,800,868 +2003,4,14,14,30,136,859,-4,0.866,1.4000000000000001,18.86,22,800,745 +2003,4,14,15,30,188,549,-4,0.866,0.9,20.12,21,800,501 +2003,4,14,16,30,129,494,-2,0.866,0.4,27.53,18,800,326 +2003,4,14,17,30,71,477,3,0.866,0.4,53.06,15,800,171 +2003,4,14,18,30,0,0,2,0.866,0.8,55.51,13,800,0 +2003,4,14,19,30,0,0,1,0.866,1.3,55.09,12,800,0 +2003,4,14,20,30,0,0,1,0.866,2,61.370000000000005,11,800,0 +2003,4,14,21,30,0,0,1,0.866,3,58.95,11,800,0 +2003,4,14,22,30,0,0,0,0.866,3.7,59.5,11,800,0 +2003,4,14,23,30,0,0,0,0.866,4,56.89,10,800,0 +2003,4,15,0,30,0,0,0,0.866,4.2,59.84,9,800,0 +2003,4,15,1,30,0,0,0,0.866,4.1000000000000005,58.81,9,800,0 +2003,4,15,2,30,0,0,0,0.866,3.7,62.160000000000004,8,790,0 +2003,4,15,3,30,0,0,-1,0.866,3.3000000000000003,65.16,7,790,0 +2003,4,15,4,30,0,0,-1,0.866,3.2,66.52,6,790,0 +2003,4,15,5,30,0,0,-2,0.866,3.3000000000000003,59.49,7,790,0 +2003,4,15,6,30,65,518,-1,0.866,3,46.800000000000004,11,790,170 +2003,4,15,7,30,101,735,-1,0.866,1.9000000000000001,38.37,14,790,391 +2003,4,15,8,30,129,831,-2,0.866,1.7000000000000002,32.3,16,790,599 +2003,4,15,9,30,169,853,-1,0.866,2.7,31.650000000000002,17,790,771 +2003,4,15,10,30,187,836,0,0.866,3.3000000000000003,35.68,16,790,860 +2003,4,15,11,30,379,38,0,0.866,3.1,37.9,16,790,411 +2003,4,15,12,30,414,362,0,0.866,2.6,38.85,16,790,725 +2003,4,15,13,30,330,29,0,0.866,1.5,41.660000000000004,15,790,354 +2003,4,15,14,30,133,5,0,0.866,2.3000000000000003,46.09,14,790,137 +2003,4,15,15,30,128,1,1,0.866,5.5,59.2,11,790,129 +2003,4,15,16,30,114,0,1,0.866,8.1,79.3,7,790,114 +2003,4,15,17,30,7,0,0,0.14300000000000002,8.9,83.14,5,790,7 +2003,4,15,18,30,0,0,0,0.14300000000000002,9.4,75.35000000000001,5,790,0 +2003,4,15,19,30,0,0,-1,0.14300000000000002,9.8,70.26,5,790,0 +2003,4,15,20,30,0,0,-1,0.14300000000000002,9.600000000000001,69.69,5,790,0 +2003,4,15,21,30,0,0,-1,0.14300000000000002,9.5,70.87,5,790,0 +2003,4,15,22,30,0,0,-2,0.14300000000000002,9.600000000000001,69.12,5,790,0 +2003,4,15,23,30,0,0,-2,0.14300000000000002,9.4,66.45,5,790,0 +2003,4,16,0,30,0,0,-3,0.14300000000000002,9,69.31,4,790,0 +2003,4,16,1,30,0,0,-3,0.14300000000000002,8.5,70.5,3,790,0 +2003,4,16,2,30,0,0,-4,0.14300000000000002,7.800000000000001,70.2,2,800,0 +2003,4,16,3,30,0,0,-5,0.14300000000000002,7,65.97,2,800,0 +2003,4,16,4,30,0,0,-6,0.14300000000000002,6.4,63.24,1,800,0 +2003,4,16,5,30,0,0,-6,0.14300000000000002,6.4,61.870000000000005,1,800,0 +2003,4,16,6,30,55,466,-6,0.14300000000000002,6.800000000000001,57.36,3,800,152 +2003,4,16,7,30,85,762,-6,0.14300000000000002,7,46.84,6,800,389 +2003,4,16,8,30,101,870,-6,0.14300000000000002,6.800000000000001,41.44,8,800,597 +2003,4,16,9,30,114,923,-6,0.14300000000000002,6.1000000000000005,36.04,10,800,769 +2003,4,16,10,30,120,954,-6,0.14300000000000002,5.4,33.86,11,800,891 +2003,4,16,11,30,120,970,-5,0.14300000000000002,4.800000000000001,29.97,13,800,955 +2003,4,16,12,30,115,975,-5,0.14300000000000002,4.2,28.52,14,800,955 +2003,4,16,13,30,109,964,-5,0.14300000000000002,3.6,28.91,14,800,892 +2003,4,16,14,30,100,939,-5,0.14300000000000002,3.2,29.310000000000002,14,800,771 +2003,4,16,15,30,92,880,-5,0.14300000000000002,2.8000000000000003,29.650000000000002,14,800,599 +2003,4,16,16,30,80,769,-5,0.14300000000000002,2.2,32.17,13,800,393 +2003,4,16,17,30,58,549,-4,0.14300000000000002,1.5,42.36,10,800,177 +2003,4,16,18,30,10,39,-2,0.14300000000000002,1.3,58.300000000000004,7,800,11 +2003,4,16,19,30,0,0,-3,0.14300000000000002,1.3,63.39,5,800,0 +2003,4,16,20,30,0,0,-3,0.14300000000000002,1.3,73.94,3,800,0 +2003,4,16,21,30,0,0,-3,0.14300000000000002,1.3,73.12,3,800,0 +2003,4,16,22,30,0,0,-3,0.14300000000000002,1.4000000000000001,77.36,2,800,0 +2003,4,16,23,30,0,0,-3,0.14300000000000002,1.4000000000000001,76.13,2,800,0 +2003,4,17,0,30,0,0,-3,0.14300000000000002,1.4000000000000001,75.07000000000001,2,800,0 +2003,4,17,1,30,0,0,-4,0.14300000000000002,1.5,73.9,1,800,0 +2003,4,17,2,30,0,0,-4,0.14300000000000002,1.5,72.85000000000001,1,800,0 +2003,4,17,3,30,0,0,-4,0.14300000000000002,1.6,72.26,1,800,0 +2003,4,17,4,30,0,0,-4,0.14300000000000002,1.6,71.48,1,800,0 +2003,4,17,5,30,0,0,-4,0.14300000000000002,1.9000000000000001,66.36,3,800,0 +2003,4,17,6,30,58,558,-3,0.14300000000000002,2.4000000000000004,52.54,7,800,176 +2003,4,17,7,30,82,773,-3,0.14300000000000002,2.8000000000000003,39.79,11,800,393 +2003,4,17,8,30,82,896,-5,0.14300000000000002,2.8000000000000003,28.73,14,800,595 +2003,4,17,9,30,119,904,-6,0.14300000000000002,2.4000000000000004,24.93,15,800,764 +2003,4,17,10,30,182,848,-7,0.14300000000000002,2.4000000000000004,22.580000000000002,16,800,871 +2003,4,17,11,30,384,39,-7,0.14300000000000002,2.6,20.830000000000002,17,800,418 +2003,4,17,12,30,439,315,-7,0.14300000000000002,2.9000000000000004,19.47,18,800,712 +2003,4,17,13,30,429,167,-7,0.14300000000000002,3.3000000000000003,20.87,17,790,566 +2003,4,17,14,30,355,101,-6,0.14300000000000002,3.5,23.69,16,790,428 +2003,4,17,15,30,251,352,-4,0.14300000000000002,3.3000000000000003,30.310000000000002,14,790,455 +2003,4,17,16,30,179,158,-2,0.14300000000000002,2.2,38.72,13,790,244 +2003,4,17,17,30,44,0,0,0.14300000000000002,1.3,55.95,11,790,44 +2003,4,17,18,30,2,0,1,0.14300000000000002,1,66.55,9,790,2 +2003,4,17,19,30,0,0,0,0.14300000000000002,0.7000000000000001,69.62,8,790,0 +2003,4,17,20,30,0,0,0,0.14300000000000002,1.3,74.36,7,790,0 +2003,4,17,21,30,0,0,1,0.14300000000000002,2.4000000000000004,82.31,6,790,0 +2003,4,17,22,30,0,0,1,0.14300000000000002,2.8000000000000003,89.4,5,790,0 +2003,4,17,23,30,0,0,1,0.14300000000000002,3.3000000000000003,86.73,5,790,0 +2003,4,18,0,30,0,0,0,0.14300000000000002,3.8000000000000003,90.49,5,790,0 +2003,4,18,1,30,0,0,0,0.14300000000000002,4.1000000000000005,88.54,4,790,0 +2003,4,18,2,30,0,0,0,0.14300000000000002,4.4,93.39,3,790,0 +2003,4,18,3,30,0,0,0,0.14300000000000002,4.4,91.13,3,790,0 +2003,4,18,4,30,0,0,0,0.14300000000000002,3.1,88.19,3,790,0 +2003,4,18,5,30,7,0,-1,0.14300000000000002,1.9000000000000001,85.27,3,790,7 +2003,4,18,6,30,82,177,-1,0.14300000000000002,2,72.97,5,790,120 +2003,4,18,7,30,175,215,-2,0.14300000000000002,3.2,60.39,7,790,262 +2003,4,18,8,30,209,490,-3,0.14300000000000002,4.4,51.14,8,790,492 +2003,4,18,9,30,287,517,-4,0.14300000000000002,4.9,41.74,10,790,657 +2003,4,18,10,30,247,729,-4,0.14300000000000002,4.800000000000001,38.33,11,790,842 +2003,4,18,11,30,284,714,-4,0.14300000000000002,4.4,35.78,12,790,903 +2003,4,18,12,30,156,902,-4,0.14300000000000002,4,33.63,13,790,938 +2003,4,18,13,30,364,512,-4,0.14300000000000002,3.6,35.96,12,790,782 +2003,4,18,14,30,162,811,-4,0.14300000000000002,3,36.65,12,790,745 +2003,4,18,15,30,172,625,-3,0.14300000000000002,2.3000000000000003,39.93,11,790,536 +2003,4,18,16,30,175,234,-3,0.14300000000000002,1.3,44.45,10,790,272 +2003,4,18,17,30,56,506,-1,0.14300000000000002,0.7000000000000001,58.06,8,790,169 +2003,4,18,18,30,12,0,0,0.14300000000000002,0.8,75.77,6,790,12 +2003,4,18,19,30,0,0,0,0.14300000000000002,0.9,74.91,6,800,0 +2003,4,18,20,30,0,0,0,0.14300000000000002,0.9,83.76,5,800,0 +2003,4,18,21,30,0,0,1,0.14300000000000002,1,93.47,4,800,0 +2003,4,18,22,30,0,0,1,0.14300000000000002,1.1,93.56,4,800,0 +2003,4,18,23,30,0,0,0,0.14300000000000002,1.2000000000000002,99.73,3,800,0 +2003,4,19,0,30,0,0,0,0.14300000000000002,1.7000000000000002,97.59,3,800,0 +2003,4,19,1,30,0,0,0,0.14300000000000002,2.2,100,2,800,0 +2003,4,19,2,30,0,0,0,0.14300000000000002,2.5,100,2,800,0 +2003,4,19,3,30,0,0,0,0.14300000000000002,2.7,99.8,2,800,0 +2003,4,19,4,30,0,0,0,0.14300000000000002,2.8000000000000003,98.86,2,800,0 +2003,4,19,5,30,0,0,0,0.14300000000000002,3.2,98.08,2,800,0 +2003,4,19,6,30,8,0,0,0.14300000000000002,4,90.91,3,800,8 +2003,4,19,7,30,159,33,0,0.14300000000000002,4.9,88.26,3,800,173 +2003,4,19,8,30,168,8,-1,0.14300000000000002,5.5,78.71000000000001,4,800,173 +2003,4,19,9,30,303,36,-1,0.14300000000000002,5.800000000000001,70.44,5,800,329 +2003,4,19,10,30,236,15,-2,0.14300000000000002,5.7,64.26,6,800,249 +2003,4,19,11,30,349,27,-2,0.14300000000000002,5.5,63.160000000000004,6,800,373 +2003,4,19,12,30,359,30,-2,0.14300000000000002,5.2,57.95,7,800,385 +2003,4,19,13,30,420,268,-2,0.14300000000000002,5,56.97,7,800,641 +2003,4,19,14,30,183,10,-3,0.14300000000000002,4.7,55.82,7,800,190 +2003,4,19,15,30,92,0,-3,0.14300000000000002,4.4,54.42,7,800,92 +2003,4,19,16,30,115,0,-3,0.14300000000000002,3.8000000000000003,56.99,6,800,115 +2003,4,19,17,30,33,0,-3,0.14300000000000002,2.6,61.24,5,800,33 +2003,4,19,18,30,3,0,-2,0.14300000000000002,1.6,74.83,3,800,3 +2003,4,19,19,30,0,0,-2,0.14300000000000002,1.4000000000000001,80.39,2,800,0 +2003,4,19,20,30,0,0,-3,0.14300000000000002,1.1,78.7,1,800,0 +2003,4,19,21,30,0,0,-3,0.14300000000000002,0.8,77.76,1,810,0 +2003,4,19,22,30,0,0,-3,0.14300000000000002,0.6000000000000001,75.57000000000001,1,810,0 +2003,4,19,23,30,0,0,-4,0.14300000000000002,0.7000000000000001,73.9,0,810,0 +2003,4,20,0,30,0,0,-4,0.14300000000000002,0.8,78.44,0,810,0 +2003,4,20,1,30,0,0,-4,0.14300000000000002,0.8,77.53,0,810,0 +2003,4,20,2,30,0,0,-4,0.14300000000000002,0.6000000000000001,77.17,0,810,0 +2003,4,20,3,30,0,0,-4,0.14300000000000002,0.5,76.98,0,810,0 +2003,4,20,4,30,0,0,-4,0.14300000000000002,0.5,76.68,0,810,0 +2003,4,20,5,30,13,121,-4,0.14300000000000002,0.7000000000000001,76.41,1,810,17 +2003,4,20,6,30,55,604,-3,0.14300000000000002,0.8,70.57000000000001,3,810,191 +2003,4,20,7,30,76,796,-4,0.14300000000000002,1.5,55.2,6,810,406 +2003,4,20,8,30,86,899,-4,0.14300000000000002,2.4000000000000004,45.38,8,810,612 +2003,4,20,9,30,95,950,-5,0.14300000000000002,2.9000000000000004,41.03,9,810,783 +2003,4,20,10,30,101,977,-5,0.14300000000000002,3.4000000000000004,35.69,11,810,904 +2003,4,20,11,30,99,996,-5,0.14300000000000002,3.6,33.62,12,810,969 +2003,4,20,12,30,101,992,-5,0.14300000000000002,3.5,33.57,12,810,967 +2003,4,20,13,30,101,974,-5,0.14300000000000002,3.2,33.4,12,810,902 +2003,4,20,14,30,292,497,-5,0.14300000000000002,3,33.480000000000004,12,810,653 +2003,4,20,15,30,116,0,-5,0.14300000000000002,2.8000000000000003,36.24,11,810,116 +2003,4,20,16,30,83,0,-4,0.14300000000000002,2.5,40.050000000000004,10,810,83 +2003,4,20,17,30,10,0,-3,0.14300000000000002,1.8,51.39,8,810,10 +2003,4,20,18,30,14,113,-1,0.14300000000000002,1.2000000000000002,71.79,5,810,18 +2003,4,20,19,30,0,0,-2,0.14300000000000002,1.2000000000000002,77.42,3,810,0 +2003,4,20,20,30,0,0,-2,0.14300000000000002,1.2000000000000002,80.65,2,810,0 +2003,4,20,21,30,0,0,-3,0.14300000000000002,1.2000000000000002,78.98,2,810,0 +2003,4,20,22,30,0,0,-3,0.14300000000000002,1.5,77.93,1,810,0 +2003,4,20,23,30,0,0,-3,0.14300000000000002,1.6,77.55,1,810,0 +2003,4,21,0,30,0,0,-3,0.14300000000000002,1.6,77.63,1,810,0 +2003,4,21,1,30,0,0,-3,0.14300000000000002,1.6,77.53,1,810,0 +2003,4,21,2,30,0,0,-3,0.14300000000000002,1.6,77.21000000000001,0,810,0 +2003,4,21,3,30,0,0,-3,0.14300000000000002,1.5,82.39,0,810,0 +2003,4,21,4,30,0,0,-3,0.14300000000000002,1.3,81.18,0,800,0 +2003,4,21,5,30,15,103,-3,0.14300000000000002,1.5,74.59,1,800,19 +2003,4,21,6,30,59,580,-3,0.14300000000000002,1.8,63.18,5,800,192 +2003,4,21,7,30,82,769,-3,0.14300000000000002,1.9000000000000001,47.95,10,800,404 +2003,4,21,8,30,96,866,-4,0.14300000000000002,1.7000000000000002,34.1,13,800,606 +2003,4,21,9,30,111,907,-4,0.14300000000000002,1.9000000000000001,32.36,14,800,771 +2003,4,21,10,30,363,516,-3,0.14300000000000002,2.6,31.650000000000002,15,800,789 +2003,4,21,11,30,303,685,-2,0.14300000000000002,3.2,31.07,16,800,903 +2003,4,21,12,30,416,378,-2,0.14300000000000002,3.4000000000000004,34.9,15,800,747 +2003,4,21,13,30,247,16,-1,0.14300000000000002,3.3000000000000003,39.56,15,800,261 +2003,4,21,14,30,31,0,0,0.14300000000000002,3,42.300000000000004,14,800,31 +2003,4,21,15,30,207,17,0,0.14300000000000002,2.5,48.47,13,800,218 +2003,4,21,16,30,142,8,1,0.14300000000000002,1.8,55.480000000000004,12,800,145 +2003,4,21,17,30,9,0,3,0.14300000000000002,1.4000000000000001,71.35000000000001,10,800,9 +2003,4,21,18,30,0,0,2,0.14300000000000002,1.4000000000000001,79.77,8,800,0 +2003,4,21,19,30,0,0,1,0.14300000000000002,1.5,84.92,6,800,0 +2003,4,21,20,30,0,0,1,0.14300000000000002,1.4000000000000001,83.55,6,800,0 +2003,4,21,21,30,0,0,1,0.14300000000000002,1.2000000000000002,88.79,5,800,0 +2003,4,21,22,30,0,0,1,0.14300000000000002,1,94.62,4,800,0 +2003,4,21,23,30,0,0,1,0.14300000000000002,0.9,94.15,4,800,0 +2003,4,22,0,30,0,0,1,0.14300000000000002,0.8,94.24,4,800,0 +2003,4,22,1,30,0,0,1,0.14300000000000002,0.8,88.67,5,800,0 +2003,4,22,2,30,0,0,1,0.14300000000000002,0.8,89.14,5,800,0 +2003,4,22,3,30,0,0,1,0.14300000000000002,1,88.16,5,800,0 +2003,4,22,4,30,0,0,1,0.14300000000000002,1.2000000000000002,87.09,5,800,0 +2003,4,22,5,30,3,0,0,0.14300000000000002,1.3,80.09,6,800,3 +2003,4,22,6,30,34,0,2,0.14300000000000002,1.6,77.22,8,800,34 +2003,4,22,7,30,185,117,1,0.14300000000000002,1.9000000000000001,61.18,11,800,235 +2003,4,22,8,30,208,17,0,0.14300000000000002,2.1,47.51,13,800,219 +2003,4,22,9,30,367,238,0,0.14300000000000002,2.8000000000000003,42.02,14,800,541 +2003,4,22,10,30,148,8,0,0.14300000000000002,3.8000000000000003,42.02,14,800,156 +2003,4,22,11,30,148,902,0,0.14300000000000002,4.6000000000000005,39.480000000000004,15,790,941 +2003,4,22,12,30,458,100,0,0.14300000000000002,5.300000000000001,39.2,15,790,547 +2003,4,22,13,30,153,9,0,0.14300000000000002,5.6000000000000005,39.050000000000004,15,790,161 +2003,4,22,14,30,279,562,0,0.14300000000000002,5.7,40.15,15,790,690 +2003,4,22,15,30,31,0,0,0.14300000000000002,5.6000000000000005,44.92,14,790,31 +2003,4,22,16,30,185,121,1,0.14300000000000002,5.2,50.68,13,790,237 +2003,4,22,17,30,26,0,2,0.14200000000000002,4.5,70.27,10,790,26 +2003,4,22,18,30,2,0,3,0.14200000000000002,4.5,84.65,8,790,2 +2003,4,22,19,30,0,0,3,0.14200000000000002,5.1000000000000005,91.64,7,790,0 +2003,4,22,20,30,0,0,4,0.14200000000000002,4.5,95.36,7,790,0 +2003,4,22,21,30,0,0,4,0.14200000000000002,3.2,100,6,790,0 +2003,4,22,22,30,0,0,2,0.14200000000000002,2.8000000000000003,100,5,790,0 +2003,4,22,23,30,0,0,2,0.14200000000000002,2.5,100,5,790,0 +2003,4,23,0,30,0,0,2,0.14200000000000002,2.4000000000000004,100,5,790,0 +2003,4,23,1,30,0,0,2,0.14200000000000002,2.1,99.52,5,790,0 +2003,4,23,2,30,0,0,2,0.14200000000000002,1.6,100,4,790,0 +2003,4,23,3,30,0,0,1,0.14200000000000002,1.5,95.22,4,790,0 +2003,4,23,4,30,0,0,0,0.14200000000000002,1.4000000000000001,89.37,4,790,0 +2003,4,23,5,30,4,0,0,0.14200000000000002,1.6,88.10000000000001,4,790,4 +2003,4,23,6,30,39,0,0,0.14200000000000002,2.6,84.88,5,790,39 +2003,4,23,7,30,165,363,0,0.14200000000000002,4,75.34,6,790,320 +2003,4,23,8,30,47,0,0,0.14200000000000002,4.7,65.43,7,790,47 +2003,4,23,9,30,372,127,-1,0.14200000000000002,5.1000000000000005,57.92,8,790,466 +2003,4,23,10,30,81,0,-1,0.14200000000000002,5.6000000000000005,60.99,7,790,81 +2003,4,23,11,30,107,0,-1,0.14200000000000002,6.5,65.23,6,790,107 +2003,4,23,12,30,128,6,-1,0.14200000000000002,7.6000000000000005,65.53,6,780,133 +2003,4,23,13,30,179,12,-1,0.14200000000000002,8.5,71.07000000000001,5,780,189 +2003,4,23,14,30,140,6,-1,0.14200000000000002,8.9,77.76,4,780,145 +2003,4,23,15,30,52,0,0,0.14200000000000002,9,80.60000000000001,4,790,52 +2003,4,23,16,30,180,71,0,0.14200000000000002,8.700000000000001,88,3,790,211 +2003,4,23,17,30,14,0,0,0.14200000000000002,7.7,88.08,3,790,14 +2003,4,23,18,30,1,0,0,0.14200000000000002,6.7,88.14,3,790,1 +2003,4,23,19,30,0,0,0,0.14200000000000002,6,89.83,3,790,0 +2003,4,23,20,30,0,0,0,0.14200000000000002,5.1000000000000005,93.57000000000001,3,790,0 +2003,4,23,21,30,0,0,0,0.14200000000000002,4.6000000000000005,95.26,3,790,0 +2003,4,23,22,30,0,0,0,0.14200000000000002,4.6000000000000005,100,2,790,0 +2003,4,23,23,30,0,0,0,0.14200000000000002,4.6000000000000005,100,2,790,0 +2003,4,24,0,30,0,0,0,0.14200000000000002,4.1000000000000005,98.7,2,790,0 +2003,4,24,1,30,0,0,0,0.14200000000000002,3.5,97.26,2,790,0 +2003,4,24,2,30,0,0,0,0.14200000000000002,3,96.10000000000001,2,790,0 +2003,4,24,3,30,0,0,0,0.14200000000000002,2.5,95.52,1,790,0 +2003,4,24,4,30,0,0,0,0.14200000000000002,2,95.2,1,790,0 +2003,4,24,5,30,3,0,0,0.14200000000000002,1.9000000000000001,94.93,1,790,3 +2003,4,24,6,30,65,0,0,0.14200000000000002,2.1,96.21000000000001,2,790,65 +2003,4,24,7,30,188,99,0,0.14200000000000002,2.4000000000000004,91.2,3,800,230 +2003,4,24,8,30,255,45,0,0.14200000000000002,2.7,89.08,4,800,282 +2003,4,24,9,30,267,21,0,0.14200000000000002,2.7,86.52,5,800,283 +2003,4,24,10,30,415,77,0,0.14200000000000002,2.7,74.71000000000001,7,800,479 +2003,4,24,11,30,462,270,0,0.14200000000000002,2.9000000000000004,69.29,8,800,702 +2003,4,24,12,30,474,154,0,0.14200000000000002,3.1,64.73,9,800,610 +2003,4,24,13,30,391,431,0,0.14200000000000002,3.1,60.92,10,800,750 +2003,4,24,14,30,123,875,1,0.14200000000000002,2.9000000000000004,61.51,10,800,767 +2003,4,24,15,30,222,475,1,0.14200000000000002,2.5,66.24,9,800,505 +2003,4,24,16,30,98,707,1,0.14200000000000002,2,71.25,8,800,400 +2003,4,24,17,30,71,507,1,0.14200000000000002,1,78.23,7,800,193 +2003,4,24,18,30,23,0,1,0.14200000000000002,0.6000000000000001,98.98,4,800,23 +2003,4,24,19,30,0,0,0,0.14200000000000002,1.3,95.2,3,800,0 +2003,4,24,20,30,0,0,0,0.14200000000000002,2.1,95.12,2,800,0 +2003,4,24,21,30,0,0,-1,0.14200000000000002,2.7,89.22,1,800,0 +2003,4,24,22,30,0,0,-2,0.14200000000000002,2.8000000000000003,84.34,1,800,0 +2003,4,24,23,30,0,0,-3,0.14200000000000002,2.5,80.17,1,800,0 +2003,4,25,0,30,0,0,-3,0.14200000000000002,2.2,77.32000000000001,0,800,0 +2003,4,25,1,30,0,0,-3,0.14200000000000002,1.8,80.83,0,800,0 +2003,4,25,2,30,0,0,-4,0.14200000000000002,1.5,79.14,0,800,0 +2003,4,25,3,30,0,0,-4,0.14200000000000002,1.2000000000000002,78.05,0,800,0 +2003,4,25,4,30,0,0,-4,0.14200000000000002,1.1,77.67,0,800,0 +2003,4,25,5,30,19,0,-4,0.14200000000000002,1.1,73.63,1,800,19 +2003,4,25,6,30,91,232,-2,0.14200000000000002,0.8,72.84,4,800,149 +2003,4,25,7,30,176,47,0,0.14200000000000002,0.6000000000000001,67.56,7,800,196 +2003,4,25,8,30,180,10,0,0.14200000000000002,0.8,58.45,10,800,186 +2003,4,25,9,30,256,19,0,0.14200000000000002,0.9,52.370000000000005,12,800,270 +2003,4,25,10,30,325,25,0,0.14200000000000002,1.1,49.58,13,800,346 +2003,4,25,11,30,426,56,0,0.14200000000000002,1.3,46.75,14,800,477 +2003,4,25,12,30,455,207,0,0.14200000000000002,1.6,43.910000000000004,15,800,639 +2003,4,25,13,30,395,441,0,0.14200000000000002,1.9000000000000001,40.9,16,800,764 +2003,4,25,14,30,317,416,0,0.14200000000000002,2.1,40.42,17,800,624 +2003,4,25,15,30,123,781,0,0.14200000000000002,2.4000000000000004,39.87,16,800,591 +2003,4,25,16,30,151,471,0,0.14200000000000002,2.4000000000000004,42.63,15,800,354 +2003,4,25,17,30,70,442,1,0.14200000000000002,2.1,56.64,12,800,177 +2003,4,25,18,30,18,0,2,0.14200000000000002,1.7000000000000002,79.12,8,800,18 +2003,4,25,19,30,0,0,1,0.14200000000000002,1.4000000000000001,83.13,6,800,0 +2003,4,25,20,30,0,0,0,0.14200000000000002,1,85.72,5,800,0 +2003,4,25,21,30,0,0,0,0.14200000000000002,1,90.15,5,800,0 +2003,4,25,22,30,0,0,0,0.14200000000000002,1.3,86.66,5,800,0 +2003,4,25,23,30,0,0,0,0.14200000000000002,1.8,82.54,4,800,0 +2003,4,26,0,30,0,0,-1,0.14200000000000002,2.4000000000000004,78.42,4,800,0 +2003,4,26,1,30,0,0,-1,0.14200000000000002,2.8000000000000003,75.81,4,800,0 +2003,4,26,2,30,0,0,-1,0.14200000000000002,3,75.89,4,800,0 +2003,4,26,3,30,0,0,-1,0.14200000000000002,3.1,76.32000000000001,4,800,0 +2003,4,26,4,30,0,0,-1,0.14200000000000002,3,75.65,4,800,0 +2003,4,26,5,30,21,98,-1,0.14200000000000002,3.1,70.08,5,800,27 +2003,4,26,6,30,72,450,0,0.14200000000000002,3.1,61.49,8,800,185 +2003,4,26,7,30,94,688,0,0.14200000000000002,3.2,52.17,12,800,395 +2003,4,26,8,30,135,754,0,0.14200000000000002,3.3000000000000003,40.730000000000004,15,800,593 +2003,4,26,9,30,164,819,-1,0.14200000000000002,2.9000000000000004,34.05,16,800,773 +2003,4,26,10,30,121,943,-1,0.14200000000000002,2.4000000000000004,31.8,17,800,912 +2003,4,26,11,30,113,971,-1,0.14200000000000002,2,30.060000000000002,18,800,977 +2003,4,26,12,30,113,968,-1,0.14200000000000002,1.7000000000000002,28.54,19,800,974 +2003,4,26,13,30,109,954,-1,0.14200000000000002,1.7000000000000002,26.97,20,790,909 +2003,4,26,14,30,104,922,-1,0.14200000000000002,1.8,27.150000000000002,20,790,786 +2003,4,26,15,30,94,869,-1,0.14200000000000002,1.9000000000000001,28.96,19,790,617 +2003,4,26,16,30,77,789,-1,0.14200000000000002,1.8,31.150000000000002,18,800,419 +2003,4,26,17,30,61,582,1,0.14200000000000002,1.3,48.34,14,800,204 +2003,4,26,18,30,20,153,2,0.14200000000000002,0.8,62.63,11,800,28 +2003,4,26,19,30,0,0,0,0.14200000000000002,0.9,63.81,9,800,0 +2003,4,26,20,30,0,0,0,0.14200000000000002,1.4000000000000001,65.02,8,800,0 +2003,4,26,21,30,0,0,0,0.14200000000000002,1.8,69.02,7,800,0 +2003,4,26,22,30,0,0,0,0.14200000000000002,2,77.83,5,800,0 +2003,4,26,23,30,0,0,-1,0.14200000000000002,1.9000000000000001,74.44,5,800,0 +2003,4,27,0,30,0,0,-1,0.14200000000000002,1.4000000000000001,77.02,4,800,0 +2003,4,27,1,30,0,0,-1,0.14200000000000002,0.7000000000000001,81.25,3,800,0 +2003,4,27,2,30,0,0,-2,0.14200000000000002,0.5,85.05,2,800,0 +2003,4,27,3,30,0,0,-2,0.14200000000000002,0.8,83.58,2,800,0 +2003,4,27,4,30,0,0,-2,0.14200000000000002,0.9,82.06,2,800,0 +2003,4,27,5,30,22,143,-2,0.14200000000000002,1.1,77.06,3,800,31 +2003,4,27,6,30,63,597,-3,0.14200000000000002,1.8,59.9,6,800,215 +2003,4,27,7,30,130,546,-4,0.14200000000000002,2.4000000000000004,46.97,8,800,371 +2003,4,27,8,30,95,877,-4,0.14200000000000002,2.6,37.18,11,800,629 +2003,4,27,9,30,106,921,-4,0.14200000000000002,3.2,33.53,13,800,794 +2003,4,27,10,30,113,946,-3,0.14200000000000002,4,30.79,15,800,910 +2003,4,27,11,30,315,677,-3,0.14200000000000002,4.7,30.25,16,800,919 +2003,4,27,12,30,453,422,-2,0.14200000000000002,4.9,29.86,17,800,829 +2003,4,27,13,30,396,461,-1,0.14200000000000002,4.7,31.54,17,800,783 +2003,4,27,14,30,310,463,0,0.14200000000000002,4.3,33.45,17,800,654 +2003,4,27,15,30,291,181,0,0.14200000000000002,4.1000000000000005,37.04,16,800,400 +2003,4,27,16,30,190,199,0,0.14200000000000002,3.8000000000000003,40.550000000000004,15,800,277 +2003,4,27,17,30,96,169,1,0.14200000000000002,3.2,52.43,13,800,138 +2003,4,27,18,30,21,152,2,0.14200000000000002,2.7,62.22,11,800,29 +2003,4,27,19,30,0,0,1,0.14200000000000002,2.2,69.72,9,800,0 +2003,4,27,20,30,0,0,1,0.14200000000000002,1.7000000000000002,74.39,8,800,0 +2003,4,27,21,30,0,0,1,0.14200000000000002,1.5,78.53,7,800,0 +2003,4,27,22,30,0,0,1,0.14200000000000002,1.5,83.63,6,800,0 +2003,4,27,23,30,0,0,1,0.14200000000000002,1.4000000000000001,94.72,4,800,0 +2003,4,28,0,30,0,0,0,0.14200000000000002,1.1,99.77,3,800,0 +2003,4,28,1,30,0,0,0,0.14200000000000002,0.8,96.35000000000001,3,800,0 +2003,4,28,2,30,0,0,0,0.14200000000000002,0.6000000000000001,92.87,3,800,0 +2003,4,28,3,30,0,0,0,0.14200000000000002,0.7000000000000001,89.38,3,800,0 +2003,4,28,4,30,0,0,-1,0.14200000000000002,0.8,86.08,3,800,0 +2003,4,28,5,30,11,0,-1,0.14200000000000002,1.1,78.67,4,800,11 +2003,4,28,6,30,82,0,-1,0.14200000000000002,1.5,64.49,7,800,82 +2003,4,28,7,30,188,271,-1,0.14200000000000002,1.6,52.800000000000004,10,800,308 +2003,4,28,8,30,207,551,-1,0.14200000000000002,1.4000000000000001,42.7,13,800,545 +2003,4,28,9,30,129,877,-1,0.14200000000000002,1.2000000000000002,37.57,15,800,786 +2003,4,28,10,30,438,251,-1,0.14200000000000002,1.5,35.03,17,800,651 +2003,4,28,11,30,398,39,-1,0.14200000000000002,1.8,30.810000000000002,18,800,433 +2003,4,28,12,30,479,198,-1,0.14200000000000002,1.9000000000000001,28.92,19,800,656 +2003,4,28,13,30,198,13,-1,0.14200000000000002,1.8,28.29,19,800,210 +2003,4,28,14,30,379,146,-1,0.14200000000000002,1.6,29.41,18,800,488 +2003,4,28,15,30,291,194,-1,0.14200000000000002,1.4000000000000001,31.89,17,800,409 +2003,4,28,16,30,155,15,0,0.14200000000000002,1.4000000000000001,39.1,16,800,162 +2003,4,28,17,30,101,198,2,0.14200000000000002,1.5,57.160000000000004,13,800,151 +2003,4,28,18,30,13,0,3,0.14200000000000002,1.6,69.52,11,800,13 +2003,4,28,19,30,0,0,2,0.14200000000000002,1.7000000000000002,69.67,10,800,0 +2003,4,28,20,30,0,0,2,0.14200000000000002,1.5,75.49,9,800,0 +2003,4,28,21,30,0,0,2,0.14200000000000002,1.1,84.43,7,800,0 +2003,4,28,22,30,0,0,1,0.14200000000000002,0.9,85.22,6,800,0 +2003,4,28,23,30,0,0,0,0.14200000000000002,1,85.11,5,800,0 +2003,4,29,0,30,0,0,0,0.14200000000000002,1.5,85.16,4,800,0 +2003,4,29,1,30,0,0,0,0.14200000000000002,2,80.77,4,800,0 +2003,4,29,2,30,0,0,-1,0.14200000000000002,2.5,76.42,4,800,0 +2003,4,29,3,30,0,0,-2,0.14200000000000002,2.9000000000000004,78.04,3,800,0 +2003,4,29,4,30,0,0,-2,0.14200000000000002,3,74.85000000000001,3,800,0 +2003,4,29,5,30,25,155,-3,0.14200000000000002,3.3000000000000003,63.480000000000004,5,800,36 +2003,4,29,6,30,67,594,-3,0.14200000000000002,3.1,48.730000000000004,9,800,223 +2003,4,29,7,30,91,767,-2,0.14200000000000002,2,40.03,12,800,435 +2003,4,29,8,30,208,557,-4,0.14200000000000002,1.3,30.150000000000002,15,800,551 +2003,4,29,9,30,119,902,-4,0.14200000000000002,1,28.310000000000002,16,800,797 +2003,4,29,10,30,393,395,-3,0.14200000000000002,1.4000000000000001,27.35,17,800,728 +2003,4,29,11,30,458,308,-3,0.14200000000000002,2.1,26.62,18,800,735 +2003,4,29,12,30,473,115,-2,0.14200000000000002,2.5,27.59,18,800,576 +2003,4,29,13,30,365,36,-1,0.14200000000000002,2.6,31.48,17,800,396 +2003,4,29,14,30,55,0,0,0.14200000000000002,2.6,38.660000000000004,15,800,55 +2003,4,29,15,30,22,0,0,0.14200000000000002,2.7,44.11,14,800,22 +2003,4,29,16,30,191,87,0,0.14200000000000002,2.5,53.26,12,800,229 +2003,4,29,17,30,4,0,2,0.14200000000000002,2.2,62.620000000000005,11,800,4 +2003,4,29,18,30,0,0,3,0.14200000000000002,2.3000000000000003,79.73,9,800,0 +2003,4,29,19,30,0,0,3,0.14200000000000002,2.3000000000000003,93.14,7,800,0 +2003,4,29,20,30,0,0,4,0.14200000000000002,1.4000000000000001,100,6,800,0 +2003,4,29,21,30,0,0,4,0.14200000000000002,0.6000000000000001,100,6,800,0 +2003,4,29,22,30,0,0,4,0.14200000000000002,0.6000000000000001,100,6,800,0 +2003,4,29,23,30,0,0,2,0.14200000000000002,0.6000000000000001,100,5,800,0 +2003,4,30,0,30,0,0,2,0.14200000000000002,0.30000000000000004,100,5,800,0 +2003,4,30,1,30,0,0,2,0.14200000000000002,0.30000000000000004,100,4,800,0 +2003,4,30,2,30,0,0,2,0.14200000000000002,0.30000000000000004,100,4,800,0 +2003,4,30,3,30,0,0,1,0.14200000000000002,0.30000000000000004,100,3,800,0 +2003,4,30,4,30,0,0,1,0.14200000000000002,0.2,100,3,800,0 +2003,4,30,5,30,28,118,1,0.14200000000000002,0.4,95.66,4,800,37 +2003,4,30,6,30,74,475,1,0.14200000000000002,0.7000000000000001,83.79,6,800,200 +2003,4,30,7,30,102,728,0,0.14200000000000002,0.9,61.81,9,800,432 +2003,4,30,8,30,242,29,-1,0.14200000000000002,0.9,46.800000000000004,11,800,261 +2003,4,30,9,30,386,193,-3,0.14200000000000002,0.9,39.47,12,800,532 +2003,4,30,10,30,163,11,-4,0.14200000000000002,1,34.61,13,790,173 +2003,4,30,11,30,458,311,-4,0.14200000000000002,1.2000000000000002,30.79,14,790,738 +2003,4,30,12,30,434,362,-5,0.14200000000000002,1.4000000000000001,29.91,14,790,759 +2003,4,30,13,30,309,22,-5,0.14200000000000002,1.7000000000000002,29.67,14,790,328 +2003,4,30,14,30,359,325,-4,0.14200000000000002,2.2,32.31,13,790,603 +2003,4,30,15,30,118,0,-4,0.14200000000000002,2.8000000000000003,36.14,12,800,119 +2003,4,30,16,30,44,0,-3,0.14200000000000002,3.2,43.94,10,800,44 +2003,4,30,17,30,99,185,-2,0.153,3,50.69,9,800,147 +2003,4,30,18,30,1,0,0,0.153,2.3000000000000003,65.87,7,800,1 +2003,4,30,19,30,0,0,0,0.153,1.4000000000000001,85.03,5,800,0 +2003,4,30,20,30,0,0,0,0.153,0.7000000000000001,88.72,4,800,0 +2003,4,30,21,30,0,0,0,0.153,0.6000000000000001,95.73,3,800,0 +2003,4,30,22,30,0,0,0,0.153,0.7000000000000001,100,2,800,0 +2003,4,30,23,30,0,0,0,0.153,0.9,98.73,2,800,0 +2003,5,1,0,30,0,0,0,0.153,1,96.36,1,800,0 +2003,5,1,1,30,0,0,0,0.153,0.9,93.96000000000001,1,800,0 +2003,5,1,2,30,0,0,-1,0.153,0.8,91.58,1,800,0 +2003,5,1,3,30,0,0,-1,0.153,0.7000000000000001,89.2,0,800,0 +2003,5,1,4,30,0,0,-1,0.153,0.5,87.21000000000001,0,800,0 +2003,5,1,5,30,29,127,-1,0.153,0.7000000000000001,81.38,2,800,38 +2003,5,1,6,30,76,555,-1,0.153,1.4000000000000001,72.24,5,800,225 +2003,5,1,7,30,102,733,-2,0.153,1.8,56.45,8,800,435 +2003,5,1,8,30,235,466,-2,0.153,2,50.35,9,800,525 +2003,5,1,9,30,132,879,-3,0.153,2.1,45.39,10,800,798 +2003,5,1,10,30,139,911,-3,0.153,2.1,41.7,11,800,916 +2003,5,1,11,30,462,402,-3,0.153,2.2,41.49,12,800,825 +2003,5,1,12,30,330,659,-3,0.153,2.2,38.7,12,800,923 +2003,5,1,13,30,401,55,-3,0.153,2.2,38.62,12,800,448 +2003,5,1,14,30,356,68,-3,0.153,2,41.42,11,800,407 +2003,5,1,15,30,215,522,-3,0.153,1.7000000000000002,41.85,11,800,536 +2003,5,1,16,30,139,4,-3,0.153,1.5,45.660000000000004,10,800,141 +2003,5,1,17,30,72,470,-2,0.153,1,54.43,8,800,194 +2003,5,1,18,30,27,111,0,0.153,0.6000000000000001,65.31,7,800,34 +2003,5,1,19,30,0,0,0,0.153,0.5,78.17,6,800,0 +2003,5,1,20,30,0,0,0,0.153,0.6000000000000001,79.58,5,800,0 +2003,5,1,21,30,0,0,0,0.153,0.7000000000000001,83.9,4,800,0 +2003,5,1,22,30,0,0,0,0.153,0.9,87.86,3,800,0 +2003,5,1,23,30,0,0,-1,0.153,1.1,91.31,2,800,0 +2003,5,2,0,30,0,0,-1,0.153,1.2000000000000002,88.24,2,800,0 +2003,5,2,1,30,0,0,-2,0.153,1.3,84.22,2,800,0 +2003,5,2,2,30,0,0,-3,0.153,1.2000000000000002,80.05,1,800,0 +2003,5,2,3,30,0,0,-3,0.153,1.1,76.99,1,800,0 +2003,5,2,4,30,0,0,-3,0.153,1,74.93,1,800,0 +2003,5,2,5,30,31,178,-3,0.153,1.2000000000000002,69.97,3,800,46 +2003,5,2,6,30,79,545,-3,0.153,1.5,57.06,6,800,228 +2003,5,2,7,30,105,723,-4,0.153,1.4000000000000001,43.36,9,800,437 +2003,5,2,8,30,122,820,-4,0.153,1,35.07,12,800,634 +2003,5,2,9,30,381,249,-4,0.153,0.7000000000000001,33.77,13,800,571 +2003,5,2,10,30,423,72,-3,0.153,0.9,32.65,14,800,485 +2003,5,2,11,30,468,93,-3,0.153,1.1,34.07,14,800,552 +2003,5,2,12,30,474,109,-2,0.153,0.9,36.06,14,800,573 +2003,5,2,13,30,406,451,-1,0.153,0.7000000000000001,38.11,14,800,791 +2003,5,2,14,30,367,299,-1,0.153,1.1,39.27,14,800,593 +2003,5,2,15,30,195,597,-1,0.153,1.3,39.45,14,800,563 +2003,5,2,16,30,179,368,-1,0.153,1.1,41.82,13,800,344 +2003,5,2,17,30,91,314,0,0.153,0.6000000000000001,49.68,11,800,174 +2003,5,2,18,30,23,31,1,0.153,0.5,67.05,9,800,26 +2003,5,2,19,30,0,0,0,0.153,1,67.71000000000001,7,800,0 +2003,5,2,20,30,0,0,0,0.153,1.4000000000000001,72.12,6,800,0 +2003,5,2,21,30,0,0,0,0.153,1.6,72,6,800,0 +2003,5,2,22,30,0,0,0,0.153,1.5,74.19,6,800,0 +2003,5,2,23,30,0,0,0,0.153,1.4000000000000001,75.08,6,800,0 +2003,5,3,0,30,0,0,0,0.153,1.4000000000000001,73,6,800,0 +2003,5,3,1,30,0,0,-1,0.153,1.6,74.17,5,800,0 +2003,5,3,2,30,0,0,-1,0.153,2,70.24,5,800,0 +2003,5,3,3,30,0,0,-2,0.153,2.4000000000000004,67.3,6,800,0 +2003,5,3,4,30,0,0,-2,0.153,2.6,65.48,6,800,0 +2003,5,3,5,30,30,147,-2,0.153,3,56.620000000000005,7,800,42 +2003,5,3,6,30,63,578,-2,0.153,3.4000000000000004,44.61,11,800,223 +2003,5,3,7,30,79,818,-2,0.153,3.6,35.160000000000004,14,800,457 +2003,5,3,8,30,90,904,-4,0.153,3.8000000000000003,25.62,17,800,657 +2003,5,3,9,30,97,950,-5,0.153,3.9000000000000004,23.23,18,800,822 +2003,5,3,10,30,104,971,-4,0.153,3.9000000000000004,22.35,19,800,936 +2003,5,3,11,30,449,384,-4,0.153,4.2,21.61,20,800,798 +2003,5,3,12,30,469,397,-4,0.153,4.6000000000000005,21.84,20,790,829 +2003,5,3,13,30,447,124,-4,0.153,4.800000000000001,21.57,20,790,553 +2003,5,3,14,30,322,442,-4,0.153,4.7,22.87,19,790,657 +2003,5,3,15,30,208,563,-4,0.153,4.6000000000000005,24.6,18,790,556 +2003,5,3,16,30,181,334,-3,0.153,4,27.05,17,790,332 +2003,5,3,17,30,88,399,-2,0.153,2.8000000000000003,36.72,14,790,194 +2003,5,3,18,30,26,154,0,0.153,1.9000000000000001,51.19,11,790,37 +2003,5,3,19,30,0,0,0,0.153,1.8,62.370000000000005,8,790,0 +2003,5,3,20,30,0,0,0,0.153,2.1,61.38,8,790,0 +2003,5,3,21,30,0,0,0,0.153,2.7,65.8,7,790,0 +2003,5,3,22,30,0,0,0,0.153,3.2,71.65,6,790,0 +2003,5,3,23,30,0,0,0,0.153,3.2,73.24,6,790,0 +2003,5,4,0,30,0,0,0,0.153,2.8000000000000003,79.9,5,790,0 +2003,5,4,1,30,0,0,0,0.153,2.3000000000000003,80.57000000000001,5,790,0 +2003,5,4,2,30,0,0,0,0.153,1.8,81.31,5,790,0 +2003,5,4,3,30,0,0,0,0.153,1.4000000000000001,83.88,5,790,0 +2003,5,4,4,30,0,0,0,0.153,1.1,85.03,5,790,0 +2003,5,4,5,30,26,0,0,0.153,0.8,85.59,5,790,26 +2003,5,4,6,30,94,360,1,0.153,0.9,81.79,6,790,194 +2003,5,4,7,30,203,89,0,0.153,1.5,67.2,8,790,245 +2003,5,4,8,30,261,38,0,0.153,2.4000000000000004,58.08,9,790,285 +2003,5,4,9,30,337,43,-1,0.153,3.2,46.07,11,790,371 +2003,5,4,10,30,233,16,-2,0.153,3.4000000000000004,40.59,12,790,247 +2003,5,4,11,30,236,16,-3,0.153,3.6,37.24,13,790,251 +2003,5,4,12,30,365,27,-3,0.153,4.1000000000000005,34.74,14,790,390 +2003,5,4,13,30,448,123,-3,0.153,4.9,34.67,14,790,554 +2003,5,4,14,30,92,0,-3,0.153,5.5,37.03,13,790,92 +2003,5,4,15,30,267,381,-3,0.153,5.7,39.62,12,790,504 +2003,5,4,16,30,181,41,-2,0.153,5.4,43.25,11,790,200 +2003,5,4,17,30,102,214,-2,0.153,4.3,48.61,10,790,160 +2003,5,4,18,30,26,98,0,0.153,3.2,62.050000000000004,8,790,33 +2003,5,4,19,30,0,0,0,0.153,2.9000000000000004,73.83,6,790,0 +2003,5,4,20,30,0,0,0,0.153,2.8000000000000003,74.31,6,790,0 +2003,5,4,21,30,0,0,0,0.153,2.8000000000000003,79.45,5,790,0 +2003,5,4,22,30,0,0,0,0.153,2.7,78.79,5,790,0 +2003,5,4,23,30,0,0,0,0.153,2.2,83.49,4,790,0 +2003,5,5,0,30,0,0,0,0.153,1.6,82.06,4,790,0 +2003,5,5,1,30,0,0,-1,0.153,1.1,85.54,3,790,0 +2003,5,5,2,30,0,0,-1,0.153,1,83.23,3,790,0 +2003,5,5,3,30,0,0,-1,0.153,1.1,87.3,2,790,0 +2003,5,5,4,30,0,0,-2,0.153,1.2000000000000002,84.7,2,790,0 +2003,5,5,5,30,30,319,-2,0.153,1.9000000000000001,79.12,4,790,59 +2003,5,5,6,30,63,669,-2,0.153,3.5,61.75,6,790,252 +2003,5,5,7,30,81,825,-4,0.153,4.3,47.230000000000004,8,790,467 +2003,5,5,8,30,94,904,-5,0.153,4.2,39.64,9,790,666 +2003,5,5,9,30,104,946,-6,0.153,3.8000000000000003,35.52,10,800,831 +2003,5,5,10,30,362,566,-6,0.153,3.4000000000000004,33.230000000000004,11,790,850 +2003,5,5,11,30,441,365,-6,0.153,3.2,31.55,12,790,774 +2003,5,5,12,30,472,393,-5,0.153,3.2,29.86,13,790,829 +2003,5,5,13,30,418,424,-5,0.153,3.2,30.04,13,790,781 +2003,5,5,14,30,333,401,-5,0.153,3.3000000000000003,32.17,12,790,638 +2003,5,5,15,30,270,368,-5,0.153,3.3000000000000003,34.57,11,790,500 +2003,5,5,16,30,162,446,-5,0.153,3,37.21,10,800,365 +2003,5,5,17,30,77,463,-5,0.153,2.3000000000000003,42.07,9,800,202 +2003,5,5,18,30,30,79,-3,0.153,1.4000000000000001,55.31,7,800,37 +2003,5,5,19,30,0,0,-2,0.153,0.8,66.61,5,800,0 +2003,5,5,20,30,0,0,-2,0.153,0.6000000000000001,71.84,4,800,0 +2003,5,5,21,30,0,0,-2,0.153,0.30000000000000004,70.42,4,800,0 +2003,5,5,22,30,0,0,-3,0.153,0.1,73.9,3,800,0 +2003,5,5,23,30,0,0,-3,0.153,0.2,72.25,3,800,0 +2003,5,6,0,30,0,0,-3,0.153,0.30000000000000004,75.38,2,800,0 +2003,5,6,1,30,0,0,-4,0.153,0.4,73.59,1,800,0 +2003,5,6,2,30,0,0,-4,0.153,0.5,72.49,1,800,0 +2003,5,6,3,30,0,0,-4,0.153,0.6000000000000001,71.86,0,800,0 +2003,5,6,4,30,0,0,-4,0.153,0.7000000000000001,71.03,0,800,0 +2003,5,6,5,30,33,272,-4,0.153,1.3,66.76,2,800,58 +2003,5,6,6,30,86,438,-4,0.153,2.2,56.18,5,800,211 +2003,5,6,7,30,208,206,-6,0.153,2.5,41.53,8,800,306 +2003,5,6,8,30,289,318,-6,0.153,2.2,37.2,9,800,491 +2003,5,6,9,30,309,541,-6,0.153,1.7000000000000002,32.51,11,800,726 +2003,5,6,10,30,416,460,-6,0.153,1.2000000000000002,30.92,12,800,813 +2003,5,6,11,30,490,198,-6,0.153,0.9,29.67,13,800,671 +2003,5,6,12,30,452,468,-5,0.153,0.8,28.47,14,800,878 +2003,5,6,13,30,453,145,-5,0.153,0.5,29.01,14,800,578 +2003,5,6,14,30,358,331,-5,0.153,0.4,31.17,13,800,610 +2003,5,6,15,30,113,844,-5,0.153,0.5,33.62,12,800,640 +2003,5,6,16,30,178,372,-5,0.153,0.6000000000000001,36.35,11,800,348 +2003,5,6,17,30,65,623,-4,0.153,0.6000000000000001,40.15,10,800,236 +2003,5,6,18,30,28,288,-1,0.153,0.5,61.550000000000004,7,800,51 +2003,5,6,19,30,0,0,-2,0.153,0.4,67.46000000000001,5,800,0 +2003,5,6,20,30,0,0,-2,0.153,0.5,72.92,4,800,0 +2003,5,6,21,30,0,0,-2,0.153,0.7000000000000001,78.21000000000001,3,800,0 +2003,5,6,22,30,0,0,-2,0.153,1.1,80.68,2,800,0 +2003,5,6,23,30,0,0,-3,0.153,1.5,76.41,2,800,0 +2003,5,7,0,30,0,0,-4,0.153,1.6,71.96000000000001,2,800,0 +2003,5,7,1,30,0,0,-5,0.153,1.6,68.71000000000001,1,800,0 +2003,5,7,2,30,0,0,-5,0.153,1.6,66.81,1,800,0 +2003,5,7,3,30,0,0,-5,0.153,1.5,65.62,1,800,0 +2003,5,7,4,30,0,0,-5,0.153,1.5,65.35,2,800,0 +2003,5,7,5,30,40,173,-4,0.153,1.5,61.84,4,800,56 +2003,5,7,6,30,99,466,-2,0.153,1.7000000000000002,61.88,6,800,234 +2003,5,7,7,30,173,431,-2,0.153,1.6,51.71,9,800,377 +2003,5,7,8,30,310,141,-1,0.153,1.4000000000000001,47.28,11,800,400 +2003,5,7,9,30,331,485,-1,0.153,1.8,41.81,13,800,705 +2003,5,7,10,30,459,159,-1,0.153,2.3000000000000003,38.86,14,800,597 +2003,5,7,11,30,447,375,-1,0.153,2.4000000000000004,36.02,15,800,790 +2003,5,7,12,30,288,19,-2,0.153,2.3000000000000003,35.03,15,790,306 +2003,5,7,13,30,408,362,-2,0.153,2,32.07,16,790,720 +2003,5,7,14,30,52,0,-2,0.153,1.6,31.91,16,790,52 +2003,5,7,15,30,59,0,-2,0.153,0.8,34.64,15,790,59 +2003,5,7,16,30,163,452,-1,0.153,0.6000000000000001,39.07,14,790,372 +2003,5,7,17,30,76,0,1,0.153,1.1,57.57,11,790,76 +2003,5,7,18,30,35,114,2,0.153,1.9000000000000001,71.2,9,790,44 +2003,5,7,19,30,0,0,1,0.153,2.2,77.31,7,800,0 +2003,5,7,20,30,0,0,1,0.153,1.6,81.91,6,800,0 +2003,5,7,21,30,0,0,1,0.153,1,88.11,5,790,0 +2003,5,7,22,30,0,0,1,0.153,0.9,93.63,4,790,0 +2003,5,7,23,30,0,0,0,0.153,1.1,90.60000000000001,4,790,0 +2003,5,8,0,30,0,0,0,0.153,1.2000000000000002,94.08,3,790,0 +2003,5,8,1,30,0,0,0,0.153,1.4000000000000001,90.87,3,790,0 +2003,5,8,2,30,0,0,0,0.153,1.5,94.58,2,790,0 +2003,5,8,3,30,0,0,-1,0.153,1.5,91.97,2,790,0 +2003,5,8,4,30,0,0,-1,0.153,1.4000000000000001,89.64,2,790,0 +2003,5,8,5,30,40,134,-1,0.153,1.8,78.08,4,790,53 +2003,5,8,6,30,82,486,0,0.153,2.2,66.91,7,790,224 +2003,5,8,7,30,171,19,0,0.153,2.2,58.36,9,790,180 +2003,5,8,8,30,302,91,-1,0.153,2.2,52.39,10,790,361 +2003,5,8,9,30,89,0,-1,0.153,2.3000000000000003,46.410000000000004,11,790,89 +2003,5,8,10,30,461,186,-2,0.153,2.2,41.68,12,790,623 +2003,5,8,11,30,485,394,-2,0.153,1.7000000000000002,41.86,12,790,846 +2003,5,8,12,30,467,448,-2,0.153,1.5,42.67,12,790,876 +2003,5,8,13,30,443,172,-1,0.153,1.6,43.5,13,790,592 +2003,5,8,14,30,330,432,-1,0.153,2,43.78,12,790,661 +2003,5,8,15,30,303,211,-1,0.153,2.3000000000000003,43.39,12,790,436 +2003,5,8,16,30,207,148,-1,0.153,2,47.22,11,790,275 +2003,5,8,17,30,106,44,0,0.152,1.1,56.96,9,790,118 +2003,5,8,18,30,19,0,1,0.152,0.6000000000000001,78.62,7,800,19 +2003,5,8,19,30,0,0,0,0.152,1.1,84.45,5,800,0 +2003,5,8,20,30,0,0,0,0.152,1.7000000000000002,88.21000000000001,4,800,0 +2003,5,8,21,30,0,0,0,0.152,2,94.79,3,800,0 +2003,5,8,22,30,0,0,0,0.152,1.7000000000000002,100,2,800,0 +2003,5,8,23,30,0,0,0,0.152,1.5,100,2,800,0 +2003,5,9,0,30,0,0,0,0.152,1.4000000000000001,100,2,800,0 +2003,5,9,1,30,0,0,0,0.152,1.5,97.94,1,800,0 +2003,5,9,2,30,0,0,0,0.152,1.6,95.7,1,800,0 +2003,5,9,3,30,0,0,0,0.152,1.6,93.77,1,800,0 +2003,5,9,4,30,0,0,-1,0.152,1.6,92.4,1,800,0 +2003,5,9,5,30,43,149,-1,0.152,1.8,91.91,2,800,58 +2003,5,9,6,30,104,454,-1,0.152,2.3000000000000003,78.66,4,800,238 +2003,5,9,7,30,80,0,-1,0.152,2.5,66.09,6,800,80 +2003,5,9,8,30,109,0,-2,0.152,2.7,60.28,7,800,109 +2003,5,9,9,30,143,7,-2,0.152,3,55.46,8,800,149 +2003,5,9,10,30,194,13,-2,0.152,3.5,51.85,9,800,206 +2003,5,9,11,30,136,7,-2,0.152,3.8000000000000003,49.050000000000004,10,800,143 +2003,5,9,12,30,184,13,-1,0.152,4,50.06,10,800,197 +2003,5,9,13,30,310,21,-1,0.152,4.3,51.24,10,800,329 +2003,5,9,14,30,196,12,-1,0.152,4.6000000000000005,56.5,9,800,205 +2003,5,9,15,30,101,0,0,0.152,4.6000000000000005,63.480000000000004,8,800,101 +2003,5,9,16,30,30,0,0,0.152,4.4,75.71000000000001,6,800,30 +2003,5,9,17,30,106,40,0,0.152,3.7,88.84,4,800,117 +2003,5,9,18,30,1,0,0,0.152,2.8000000000000003,100,2,800,1 +2003,5,9,19,30,0,0,0,0.152,2.1,100,2,800,0 +2003,5,9,20,30,0,0,0,0.152,1.7000000000000002,97.67,1,800,0 +2003,5,9,21,30,0,0,0,0.152,1.4000000000000001,94.97,1,800,0 +2003,5,9,22,30,0,0,-1,0.152,1.3,91.28,0,800,0 +2003,5,9,23,30,0,0,-1,0.152,1.3,94.09,0,800,0 +2003,5,10,0,30,0,0,-2,0.152,1.4000000000000001,90.25,0,800,0 +2003,5,10,1,30,0,0,-2,0.152,1.6,87.82000000000001,0,800,0 +2003,5,10,2,30,0,0,-3,0.152,1.7000000000000002,91.97,0,800,0 +2003,5,10,3,30,0,0,-3,0.152,1.8,89.58,0,800,0 +2003,5,10,4,30,0,0,-3,0.152,1.9000000000000001,87.8,0,800,0 +2003,5,10,5,30,5,0,-3,0.152,2.2,81.82000000000001,0,800,5 +2003,5,10,6,30,42,0,-2,0.152,2.5,81.32000000000001,0,800,42 +2003,5,10,7,30,82,0,-2,0.152,2.9000000000000004,85.28,1,800,82 +2003,5,10,8,30,196,12,-1,0.152,3,86.71000000000001,1,800,204 +2003,5,10,9,30,369,65,-1,0.152,2.8000000000000003,87.07000000000001,2,800,420 +2003,5,10,10,30,316,22,-1,0.152,2.7,87.54,2,800,335 +2003,5,10,11,30,493,145,-1,0.152,2.9000000000000004,81.88,3,800,627 +2003,5,10,12,30,493,183,-1,0.152,3,76.12,4,800,662 +2003,5,10,13,30,446,291,-1,0.152,3.1,71.07000000000001,5,800,699 +2003,5,10,14,30,337,42,-1,0.152,3.2,71.21000000000001,5,800,370 +2003,5,10,15,30,275,51,-1,0.152,3.1,71.45,5,800,307 +2003,5,10,16,30,197,62,-1,0.152,2.6,77.60000000000001,4,800,226 +2003,5,10,17,30,93,373,-1,0.866,1.6,85.58,3,800,199 +2003,5,10,18,30,37,54,0,0.866,0.7000000000000001,93.36,2,800,42 +2003,5,10,19,30,0,0,-2,0.866,0.5,88.5,0,800,0 +2003,5,10,20,30,0,0,-3,0.866,0.7000000000000001,89.81,0,810,0 +2003,5,10,21,30,0,0,-4,0.866,0.9,85.44,0,810,0 +2003,5,10,22,30,0,0,-4,0.866,1,87.24,-1,810,0 +2003,5,10,23,30,0,0,-5,0.866,0.9,89.24,-2,810,0 +2003,5,11,0,30,0,0,-6,0.866,0.9,85.09,-2,810,0 +2003,5,11,1,30,0,0,-6,0.866,0.8,87.69,-3,810,0 +2003,5,11,2,30,0,0,-7,0.866,0.8,84.23,-3,810,0 +2003,5,11,3,30,0,0,-7,0.866,0.9,80.94,-3,810,0 +2003,5,11,4,30,0,0,-8,0.866,1.1,72.9,-2,810,0 +2003,5,11,5,30,43,282,-7,0.866,1.2000000000000002,65.53,0,810,74 +2003,5,11,6,30,92,605,-4,0.866,0.9,66.02,2,810,274 +2003,5,11,7,30,128,757,-2,0.866,0.5,65.62,5,810,494 +2003,5,11,8,30,141,866,-2,0.866,0.7000000000000001,59.54,8,810,702 +2003,5,11,9,30,164,904,-1,0.866,1.1,52.910000000000004,9,810,869 +2003,5,11,10,30,419,459,-1,0.866,1.3,50.46,10,810,821 +2003,5,11,11,30,226,840,-1,0.866,1.2000000000000002,47.94,11,810,1001 +2003,5,11,12,30,204,881,-1,0.866,1,45.35,12,810,1014 +2003,5,11,13,30,460,144,-1,0.866,0.8,45.93,12,810,585 +2003,5,11,14,30,349,51,0,0.866,0.8,43.54,13,810,388 +2003,5,11,15,30,227,512,0,0.866,1,47,12,810,553 +2003,5,11,16,30,118,626,0,0.866,1.1,51.620000000000005,11,810,412 +2003,5,11,17,30,95,366,1,0.866,1.2000000000000002,61.44,10,810,200 +2003,5,11,18,30,35,293,2,0.866,1.3,85.13,7,810,63 +2003,5,11,19,30,0,0,0,0.866,1.2000000000000002,83.45,5,810,0 +2003,5,11,20,30,0,0,0,0.866,1.1,84.47,4,810,0 +2003,5,11,21,30,0,0,0,0.866,1.1,87.8,3,810,0 +2003,5,11,22,30,0,0,-1,0.866,1.2000000000000002,90.88,2,810,0 +2003,5,11,23,30,0,0,-2,0.866,1.2000000000000002,86.24,1,810,0 +2003,5,12,0,30,0,0,-2,0.866,1.2000000000000002,81.26,1,810,0 +2003,5,12,1,30,0,0,-3,0.866,1.2000000000000002,76.78,1,810,0 +2003,5,12,2,30,0,0,-4,0.866,1.6,73.43,1,800,0 +2003,5,12,3,30,0,0,-4,0.866,2.3000000000000003,71.16,1,800,0 +2003,5,12,4,30,0,0,-4,0.866,2.8000000000000003,69.42,1,800,0 +2003,5,12,5,30,44,278,-4,0.866,3.1,61.79,4,810,75 +2003,5,12,6,30,90,613,-3,0.866,2.7,55.67,7,810,275 +2003,5,12,7,30,119,777,-1,0.866,1.8,47.31,11,810,497 +2003,5,12,8,30,137,871,-2,0.866,1.1,36.06,14,810,703 +2003,5,12,9,30,150,924,-2,0.866,0.4,31.19,16,810,873 +2003,5,12,10,30,157,952,-2,0.866,0.4,30.14,17,800,991 +2003,5,12,11,30,151,974,-1,0.866,0.8,29.22,18,800,1050 +2003,5,12,12,30,147,975,-1,0.866,1.1,28.26,19,800,1045 +2003,5,12,13,30,140,963,-1,0.866,1.3,27.150000000000002,20,800,978 +2003,5,12,14,30,183,793,-1,0.866,1.3,27.47,20,800,797 +2003,5,12,15,30,133,781,-1,0.866,1.3,29.26,19,800,631 +2003,5,12,16,30,110,661,0,0.866,1.2000000000000002,32.1,18,800,422 +2003,5,12,17,30,61,613,1,0.866,1.1,45.47,15,800,238 +2003,5,12,18,30,37,165,2,0.866,1.2000000000000002,64.99,11,800,53 +2003,5,12,19,30,0,0,0,0.866,1.1,64.68,9,800,0 +2003,5,12,20,30,0,0,1,0.866,1.1,75.52,7,800,0 +2003,5,12,21,30,0,0,0,0.866,1.6,73.24,7,800,0 +2003,5,12,22,30,0,0,0,0.866,2,70.18,7,800,0 +2003,5,12,23,30,0,0,0,0.866,2.4000000000000004,66.84,7,800,0 +2003,5,13,0,30,0,0,-1,0.866,2.9000000000000004,63.440000000000005,7,800,0 +2003,5,13,1,30,0,0,-1,0.866,3.2,61.32,7,800,0 +2003,5,13,2,30,0,0,-1,0.866,3.3000000000000003,60.99,7,800,0 +2003,5,13,3,30,0,0,-1,0.866,3.1,65.3,6,800,0 +2003,5,13,4,30,0,0,-2,0.866,3.2,64.13,6,800,0 +2003,5,13,5,30,39,356,-2,0.866,3.7,55.5,8,800,80 +2003,5,13,6,30,81,649,-1,0.866,4.3,45.230000000000004,12,800,280 +2003,5,13,7,30,113,783,0,0.866,4.5,40.78,15,800,496 +2003,5,13,8,30,132,869,0,0.866,4.4,36.57,17,800,699 +2003,5,13,9,30,151,911,0,0.866,4.1000000000000005,35.03,18,800,866 +2003,5,13,10,30,163,935,0,0.866,4,33.4,19,800,983 +2003,5,13,11,30,158,958,0,0.866,4,31.62,20,800,1044 +2003,5,13,12,30,229,836,0,0.866,3.9000000000000004,31.830000000000002,20,800,1001 +2003,5,13,13,30,228,793,1,0.866,3.9000000000000004,30.14,21,800,920 +2003,5,13,14,30,218,725,1,0.866,3.9000000000000004,32,20,800,780 +2003,5,13,15,30,197,620,0,0.866,3.7,33.78,19,800,594 +2003,5,13,16,30,113,653,1,0.866,3.1,36.58,18,800,423 +2003,5,13,17,30,93,401,3,0.866,1.9000000000000001,50.99,15,800,209 +2003,5,13,18,30,21,0,4,0.866,1.1,70.87,12,800,21 +2003,5,13,19,30,0,0,3,0.866,1.1,75.79,10,800,0 +2003,5,13,20,30,0,0,3,0.866,1.1,78.37,9,800,0 +2003,5,13,21,30,0,0,3,0.866,1.3,76.2,9,800,0 +2003,5,13,22,30,0,0,2,0.866,1.7000000000000002,79.25,8,800,0 +2003,5,13,23,30,0,0,2,0.866,2.2,81.99,7,800,0 +2003,5,14,0,30,0,0,1,0.866,2.5,84.7,6,800,0 +2003,5,14,1,30,0,0,1,0.866,2.5,87.03,5,800,0 +2003,5,14,2,30,0,0,0,0.866,2.3000000000000003,83.44,5,800,0 +2003,5,14,3,30,0,0,0,0.866,2.1,80.56,5,800,0 +2003,5,14,4,30,0,0,0,0.866,2.2,78.07000000000001,5,800,0 +2003,5,14,5,30,40,351,0,0.866,2.5,64.55,8,800,81 +2003,5,14,6,30,79,655,0,0.866,2,51.49,12,800,281 +2003,5,14,7,30,113,671,0,0.866,1.8,40.93,15,800,443 +2003,5,14,8,30,129,872,0,0.866,2.3000000000000003,34.550000000000004,17,800,699 +2003,5,14,9,30,146,914,0,0.866,2.4000000000000004,30.94,19,800,865 +2003,5,14,10,30,196,860,0,0.866,2.3000000000000003,29.86,20,800,952 +2003,5,14,11,30,332,672,0,0.866,2.1,28.78,21,800,955 +2003,5,14,12,30,447,368,0,0.866,1.8,29.46,21,800,788 +2003,5,14,13,30,454,127,0,0.866,1.7000000000000002,28.1,22,800,565 +2003,5,14,14,30,341,399,1,0.866,1.8,30.12,21,800,651 +2003,5,14,15,30,94,902,1,0.866,1.8,32.6,20,800,673 +2003,5,14,16,30,20,0,1,0.866,1.6,36.17,19,800,20 +2003,5,14,17,30,115,194,3,0.866,1.3,46.78,17,800,172 +2003,5,14,18,30,40,198,6,0.866,1.2000000000000002,63.79,15,800,61 +2003,5,14,19,30,0,0,5,0.866,1.3,66.95,13,800,0 +2003,5,14,20,30,0,0,4,0.866,1.2000000000000002,69.12,12,800,0 +2003,5,14,21,30,0,0,4,0.866,1.2000000000000002,80.25,11,800,0 +2003,5,14,22,30,0,0,5,0.866,1.1,81.65,10,800,0 +2003,5,14,23,30,0,0,5,0.866,1,83.01,10,800,0 +2003,5,15,0,30,0,0,5,0.866,0.8,90.01,9,800,0 +2003,5,15,1,30,0,0,5,0.866,0.5,95.96000000000001,8,800,0 +2003,5,15,2,30,0,0,4,0.866,0.2,99.12,7,800,0 +2003,5,15,3,30,0,0,4,0.866,0.4,94.32000000000001,7,800,0 +2003,5,15,4,30,0,0,3,0.866,1.1,89.99,7,800,0 +2003,5,15,5,30,43,308,3,0.866,1.9000000000000001,79.7,9,800,80 +2003,5,15,6,30,93,581,4,0.866,2.3000000000000003,69.43,12,800,273 +2003,5,15,7,30,136,706,4,0.866,2.4000000000000004,55.88,15,800,484 +2003,5,15,8,30,240,510,3,0.866,2.3000000000000003,50.86,16,800,574 +2003,5,15,9,30,366,355,4,0.866,1.9000000000000001,48.11,17,800,645 +2003,5,15,10,30,341,25,4,0.866,1.6,49.620000000000005,17,800,364 +2003,5,15,11,30,289,19,5,0.866,1.2000000000000002,51.49,17,800,306 +2003,5,15,12,30,489,113,5,0.866,1.2000000000000002,49.550000000000004,18,800,595 +2003,5,15,13,30,350,594,5,0.866,1.9000000000000001,49.9,18,800,870 +2003,5,15,14,30,338,416,5,0.866,3,50.18,18,800,663 +2003,5,15,15,30,214,581,5,0.866,3.3000000000000003,54.660000000000004,17,800,588 +2003,5,15,16,30,142,549,6,0.866,2.9000000000000004,61.6,16,800,405 +2003,5,15,17,30,26,0,8,0.152,2.8000000000000003,82.3,13,800,26 +2003,5,15,18,30,3,0,9,0.152,2.8000000000000003,100,11,800,3 +2003,5,15,19,30,0,0,8,0.152,2.5,100,10,800,0 +2003,5,15,20,30,0,0,8,0.152,2.3000000000000003,100,10,800,0 +2003,5,15,21,30,0,0,7,0.152,1.8,100,9,800,0 +2003,5,15,22,30,0,0,7,0.152,1.1,100,9,800,0 +2003,5,15,23,30,0,0,6,0.152,0.8,100,8,800,0 +2003,5,16,0,30,0,0,6,0.152,1.1,100,8,800,0 +2003,5,16,1,30,0,0,4,0.152,2,100,7,800,0 +2003,5,16,2,30,0,0,4,0.152,2.7,99.66,7,800,0 +2003,5,16,3,30,0,0,4,0.152,3,100,6,800,0 +2003,5,16,4,30,0,0,3,0.152,3.5,96.9,6,800,0 +2003,5,16,5,30,37,384,3,0.152,4,82.18,8,800,84 +2003,5,16,6,30,126,117,3,0.152,4.1000000000000005,65.28,12,800,163 +2003,5,16,7,30,212,280,4,0.152,4,55.17,15,800,350 +2003,5,16,8,30,113,846,3,0.152,3.7,42.65,18,800,669 +2003,5,16,9,30,122,895,2,0.152,3.4000000000000004,36.09,20,800,828 +2003,5,16,10,30,125,922,2,0.152,2.9000000000000004,33.42,21,800,939 +2003,5,16,11,30,366,622,2,0.152,2.3000000000000003,32.160000000000004,22,800,944 +2003,5,16,12,30,258,17,3,0.152,1.8,31.27,23,800,275 +2003,5,16,13,30,414,362,3,0.152,1.2000000000000002,32.06,23,800,732 +2003,5,16,14,30,337,458,3,0.152,0.7000000000000001,32.53,23,800,695 +2003,5,16,15,30,313,150,3,0.152,0.30000000000000004,34.65,22,800,410 +2003,5,16,16,30,190,361,4,0.152,0.30000000000000004,37.18,21,800,364 +2003,5,16,17,30,94,413,4,0.14400000000000002,0.5,44.76,19,800,217 +2003,5,16,18,30,37,181,8,0.14400000000000002,0.9,72.24,15,800,57 +2003,5,16,19,30,0,0,6,0.14400000000000002,1.4000000000000001,71.64,13,800,0 +2003,5,16,20,30,0,0,5,0.14400000000000002,1.8,78.86,11,800,0 +2003,5,16,21,30,0,0,5,0.14400000000000002,2.2,76.52,11,800,0 +2003,5,16,22,30,0,0,4,0.14400000000000002,2.5,75.15,11,800,0 +2003,5,16,23,30,0,0,4,0.14400000000000002,2.8000000000000003,78.66,10,800,0 +2003,5,17,0,30,0,0,3,0.14400000000000002,2.9000000000000004,75.49,10,800,0 +2003,5,17,1,30,0,0,3,0.14400000000000002,2.7,72.11,10,800,0 +2003,5,17,2,30,0,0,2,0.14400000000000002,2.4000000000000004,74.74,9,800,0 +2003,5,17,3,30,0,0,2,0.14400000000000002,2,73.8,9,800,0 +2003,5,17,4,30,0,0,2,0.14400000000000002,1.8,72.14,9,800,0 +2003,5,17,5,30,38,386,2,0.14400000000000002,2.1,61.65,12,800,86 +2003,5,17,6,30,79,555,4,0.14400000000000002,2.2,49.18,17,800,254 +2003,5,17,7,30,141,574,3,0.14400000000000002,2.1,37.730000000000004,20,800,427 +2003,5,17,8,30,92,885,2,0.14400000000000002,2.4000000000000004,29.09,23,800,676 +2003,5,17,9,30,344,429,2,0.14400000000000002,2.8000000000000003,26.990000000000002,24,800,684 +2003,5,17,10,30,103,952,2,0.14400000000000002,3.2,25.89,25,800,945 +2003,5,17,11,30,445,499,2,0.14400000000000002,3.4000000000000004,24.67,26,800,910 +2003,5,17,12,30,488,412,2,0.14400000000000002,3.5,23.46,27,800,871 +2003,5,17,13,30,462,211,2,0.14400000000000002,3.4000000000000004,23.51,27,800,649 +2003,5,17,14,30,400,143,2,0.14400000000000002,2.9000000000000004,24.77,26,800,512 +2003,5,17,15,30,314,174,3,0.14400000000000002,2.3000000000000003,29.35,24,800,427 +2003,5,17,16,30,211,88,5,0.14400000000000002,2.1,41.47,21,800,254 +2003,5,17,17,30,119,178,6,0.14400000000000002,2.5,51.01,19,800,173 +2003,5,17,18,30,39,33,6,0.14400000000000002,2.4000000000000004,59.93,17,800,42 +2003,5,17,19,30,0,0,6,0.14400000000000002,1.8,67.22,15,800,0 +2003,5,17,20,30,0,0,6,0.14400000000000002,1.2000000000000002,71.9,13,800,0 +2003,5,17,21,30,0,0,5,0.14400000000000002,1.2000000000000002,77.96000000000001,11,800,0 +2003,5,17,22,30,0,0,4,0.14400000000000002,1.2000000000000002,77.15,10,800,0 +2003,5,17,23,30,0,0,3,0.14400000000000002,1.6,72.25,10,800,0 +2003,5,18,0,30,0,0,2,0.14400000000000002,2.2,66.94,10,800,0 +2003,5,18,1,30,0,0,1,0.14400000000000002,2.7,61.74,10,800,0 +2003,5,18,2,30,0,0,0,0.14400000000000002,3,59.45,10,800,0 +2003,5,18,3,30,0,0,0,0.14400000000000002,3.1,64.47,9,800,0 +2003,5,18,4,30,0,0,0,0.14400000000000002,3.5,65.62,9,800,0 +2003,5,18,5,30,44,245,1,0.14400000000000002,3.7,62.92,10,800,76 +2003,5,18,6,30,108,367,2,0.14400000000000002,3.3000000000000003,55.01,13,800,225 +2003,5,18,7,30,192,414,3,0.14400000000000002,2.7,48.49,16,800,399 +2003,5,18,8,30,322,152,3,0.14400000000000002,1.9000000000000001,44.06,18,800,423 +2003,5,18,9,30,252,675,4,0.14400000000000002,0.9,42.53,19,800,788 +2003,5,18,10,30,469,191,4,0.14400000000000002,0.4,41.12,20,800,638 +2003,5,18,11,30,175,13,4,0.14400000000000002,0.30000000000000004,39.4,21,800,187 +2003,5,18,12,30,458,227,5,0.14400000000000002,0.5,43.050000000000004,20,800,670 +2003,5,18,13,30,105,0,5,0.14400000000000002,1.2000000000000002,44.12,20,800,105 +2003,5,18,14,30,157,9,5,0.14400000000000002,1.6,44.61,20,800,164 +2003,5,18,15,30,312,223,5,0.14400000000000002,1.2000000000000002,47.39,19,800,457 +2003,5,18,16,30,137,576,5,0.14400000000000002,0.5,50.75,18,800,416 +2003,5,18,17,30,120,75,6,0.14400000000000002,0.6000000000000001,57.5,17,800,143 +2003,5,18,18,30,26,0,8,0.14400000000000002,1.3,79.54,14,800,26 +2003,5,18,19,30,0,0,8,0.14400000000000002,1.3,89.47,12,800,0 +2003,5,18,20,30,0,0,8,0.14400000000000002,0.9,94.02,11,800,0 +2003,5,18,21,30,0,0,7,0.14400000000000002,0.8,98.28,10,800,0 +2003,5,18,22,30,0,0,7,0.14400000000000002,1.2000000000000002,100,9,800,0 +2003,5,18,23,30,0,0,5,0.14400000000000002,1.9000000000000001,99.46000000000001,8,800,0 +2003,5,19,0,30,0,0,4,0.14400000000000002,2.8000000000000003,96.31,7,810,0 +2003,5,19,1,30,0,0,2,0.14400000000000002,3.1,91.81,6,810,0 +2003,5,19,2,30,0,0,1,0.14400000000000002,2.5,90.44,5,810,0 +2003,5,19,3,30,0,0,0,0.14400000000000002,1.8,98.45,3,810,0 +2003,5,19,4,30,0,0,0,0.14400000000000002,1.8,95.28,3,810,0 +2003,5,19,5,30,42,370,0,0.14400000000000002,2.7,87.12,4,810,91 +2003,5,19,6,30,77,649,0,0.14400000000000002,3.6,72.28,6,810,284 +2003,5,19,7,30,104,0,-1,0.14400000000000002,3.8000000000000003,54.480000000000004,9,810,104 +2003,5,19,8,30,135,4,-2,0.14400000000000002,3.9000000000000004,47.19,10,810,138 +2003,5,19,9,30,164,9,-2,0.14400000000000002,4,40.03,12,810,171 +2003,5,19,10,30,161,10,-2,0.14400000000000002,4.1000000000000005,37.58,13,810,170 +2003,5,19,11,30,136,7,-2,0.14400000000000002,4.4,35.76,14,810,143 +2003,5,19,12,30,188,13,-2,0.14400000000000002,4.6000000000000005,34.160000000000004,15,810,201 +2003,5,19,13,30,221,15,-2,0.14400000000000002,4.7,34.81,15,810,234 +2003,5,19,14,30,171,10,-2,0.14400000000000002,4.7,37.6,14,810,179 +2003,5,19,15,30,146,5,-1,0.14400000000000002,4.800000000000001,40.45,13,810,150 +2003,5,19,16,30,58,0,-1,0.14400000000000002,4.6000000000000005,43.26,12,810,58 +2003,5,19,17,30,22,0,-1,0.14400000000000002,4.3,52.84,9,810,22 +2003,5,19,18,30,2,0,-1,0.14400000000000002,3.6,67.45,6,810,2 +2003,5,19,19,30,0,0,-1,0.14400000000000002,3.1,77.54,4,810,0 +2003,5,19,20,30,0,0,-2,0.14400000000000002,2.8000000000000003,80.04,3,820,0 +2003,5,19,21,30,0,0,-2,0.14400000000000002,2.5,82.54,2,820,0 +2003,5,19,22,30,0,0,-3,0.14400000000000002,2.2,79.5,1,820,0 +2003,5,19,23,30,0,0,-3,0.14400000000000002,1.9000000000000001,77.58,1,820,0 +2003,5,20,0,30,0,0,-3,0.14400000000000002,1.6,75.98,0,810,0 +2003,5,20,1,30,0,0,-3,0.14400000000000002,1.4000000000000001,80.83,0,810,0 +2003,5,20,2,30,0,0,-4,0.14400000000000002,1.4000000000000001,79.83,0,810,0 +2003,5,20,3,30,0,0,-4,0.14400000000000002,1.5,79.43,0,810,0 +2003,5,20,4,30,0,0,-4,0.14400000000000002,2,74.15,0,810,0 +2003,5,20,5,30,17,0,-3,0.14400000000000002,3.2,70.46000000000001,2,810,17 +2003,5,20,6,30,102,0,-3,0.14400000000000002,4.3,62.97,5,810,102 +2003,5,20,7,30,173,15,-2,0.14400000000000002,4.7,50.69,9,810,181 +2003,5,20,8,30,241,21,-1,0.14400000000000002,4.7,43.37,12,810,256 +2003,5,20,9,30,293,23,-1,0.14400000000000002,4.6000000000000005,39.85,14,810,312 +2003,5,20,10,30,346,26,0,0.14400000000000002,4.6000000000000005,36.82,16,810,370 +2003,5,20,11,30,468,73,0,0.14400000000000002,4.4,36.17,17,810,537 +2003,5,20,12,30,499,148,0,0.14400000000000002,4,37.4,17,810,637 +2003,5,20,13,30,417,55,0,0.14400000000000002,3.5,36.160000000000004,18,810,466 +2003,5,20,14,30,383,82,1,0.14400000000000002,2.9000000000000004,39.38,17,810,447 +2003,5,20,15,30,270,402,1,0.14400000000000002,2.4000000000000004,39.6,17,810,533 +2003,5,20,16,30,203,53,1,0.14400000000000002,2.2,42.410000000000004,16,810,229 +2003,5,20,17,30,123,162,1,0.14400000000000002,1.8,48.65,14,810,173 +2003,5,20,18,30,44,80,3,0.14400000000000002,1.2000000000000002,68.47,11,810,54 +2003,5,20,19,30,0,0,2,0.14400000000000002,0.7000000000000001,79.62,8,810,0 +2003,5,20,20,30,0,0,1,0.14400000000000002,0.5,79.39,7,810,0 +2003,5,20,21,30,0,0,1,0.14400000000000002,0.7000000000000001,88.01,6,810,0 +2003,5,20,22,30,0,0,0,0.14400000000000002,0.9,83.22,5,810,0 +2003,5,20,23,30,0,0,0,0.14400000000000002,1.2000000000000002,77.81,5,810,0 +2003,5,21,0,30,0,0,-1,0.14400000000000002,1.5,73.13,5,810,0 +2003,5,21,1,30,0,0,-2,0.14400000000000002,1.8,69.01,5,810,0 +2003,5,21,2,30,0,0,-2,0.14400000000000002,2.1,70.67,5,810,0 +2003,5,21,3,30,0,0,-3,0.14400000000000002,2.4000000000000004,67.97,5,810,0 +2003,5,21,4,30,0,0,-3,0.14400000000000002,2.6,62.01,5,810,0 +2003,5,21,5,30,42,372,-2,0.14400000000000002,3,56.38,8,810,92 +2003,5,21,6,30,72,662,-2,0.14400000000000002,2.8000000000000003,43.65,12,810,286 +2003,5,21,7,30,92,794,-3,0.14400000000000002,2.3000000000000003,31.470000000000002,15,810,492 +2003,5,21,8,30,101,877,-4,0.14400000000000002,2.2,25.72,17,810,684 +2003,5,21,9,30,107,922,-4,0.14400000000000002,2.1,23.13,19,810,842 +2003,5,21,10,30,114,942,-3,0.14400000000000002,1.9000000000000001,22.79,20,810,951 +2003,5,21,11,30,463,373,-2,0.14400000000000002,1.7000000000000002,22.73,21,810,813 +2003,5,21,12,30,486,382,-1,0.14400000000000002,1.5,22.72,22,810,843 +2003,5,21,13,30,333,624,-1,0.14400000000000002,1.5,24.060000000000002,22,810,885 +2003,5,21,14,30,342,454,0,0.14400000000000002,1.7000000000000002,26.97,21,810,700 +2003,5,21,15,30,306,273,0,0.14400000000000002,1.8,27.98,21,810,485 +2003,5,21,16,30,136,584,0,0.14400000000000002,1.6,30.42,20,810,423 +2003,5,21,17,30,88,486,1,0.14400000000000002,0.9,36.96,18,810,238 +2003,5,21,18,30,42,255,5,0.14400000000000002,0.4,58.78,15,810,73 +2003,5,21,19,30,0,0,3,0.14400000000000002,0.4,58.07,13,810,0 +2003,5,21,20,30,0,0,2,0.14400000000000002,0.6000000000000001,58.06,12,810,0 +2003,5,21,21,30,0,0,2,0.14400000000000002,1.1,62.65,11,810,0 +2003,5,21,22,30,0,0,1,0.14400000000000002,1.4000000000000001,70.17,9,810,0 +2003,5,21,23,30,0,0,1,0.14400000000000002,1.5,73.16,8,810,0 +2003,5,22,0,30,0,0,1,0.14400000000000002,1.5,71.03,8,810,0 +2003,5,22,1,30,0,0,0,0.14400000000000002,1.5,68.41,8,810,0 +2003,5,22,2,30,0,0,0,0.14400000000000002,1.8,65.78,8,810,0 +2003,5,22,3,30,0,0,0,0.14400000000000002,2.3000000000000003,63.38,8,810,0 +2003,5,22,4,30,0,0,0,0.14400000000000002,2.7,61.870000000000005,8,810,0 +2003,5,22,5,30,42,345,0,0.14400000000000002,3.2,51.83,11,810,90 +2003,5,22,6,30,87,557,0,0.14400000000000002,3.2,41.69,15,810,268 +2003,5,22,7,30,78,811,0,0.14400000000000002,3,35.42,18,810,488 +2003,5,22,8,30,166,722,0,0.14400000000000002,2.9000000000000004,31.36,20,810,647 +2003,5,22,9,30,107,914,1,0.14400000000000002,2.5,28.87,22,810,836 +2003,5,22,10,30,308,669,1,0.14400000000000002,2.2,28.310000000000002,23,810,904 +2003,5,22,11,30,419,544,2,0.14400000000000002,1.8,27.54,24,810,928 +2003,5,22,12,30,497,229,2,0.14400000000000002,1.4000000000000001,26.61,25,810,711 +2003,5,22,13,30,423,396,3,0.14400000000000002,1.3,27.1,25,810,773 +2003,5,22,14,30,404,154,3,0.14400000000000002,1.4000000000000001,29.05,24,810,525 +2003,5,22,15,30,319,171,3,0.14400000000000002,1.6,29.07,24,810,431 +2003,5,22,16,30,221,161,3,0.14400000000000002,1.4000000000000001,30.61,23,810,301 +2003,5,22,17,30,126,128,3,0.14400000000000002,0.9,38.67,20,810,166 +2003,5,22,18,30,44,153,7,0.14400000000000002,0.5,61.31,17,810,63 +2003,5,22,19,30,0,0,5,0.14400000000000002,0.6000000000000001,59.18,15,810,0 +2003,5,22,20,30,0,0,4,0.14400000000000002,0.7000000000000001,66.38,13,810,0 +2003,5,22,21,30,0,0,4,0.14400000000000002,0.8,74.39,11,810,0 +2003,5,22,22,30,0,0,4,0.14400000000000002,0.9,71.88,11,810,0 +2003,5,22,23,30,0,0,3,0.14400000000000002,1,69.14,11,810,0 +2003,5,23,0,30,0,0,3,0.14400000000000002,0.9,66.26,11,810,0 +2003,5,23,1,30,0,0,2,0.14400000000000002,1,68.87,10,810,0 +2003,5,23,2,30,0,0,2,0.14400000000000002,1.3,68.84,10,810,0 +2003,5,23,3,30,0,0,2,0.14400000000000002,1.5,73.72,9,810,0 +2003,5,23,4,30,0,0,2,0.14400000000000002,1.5,73.41,9,810,0 +2003,5,23,5,30,44,357,3,0.14400000000000002,1.8,64.69,12,810,93 +2003,5,23,6,30,75,641,4,0.14400000000000002,1.9000000000000001,53.92,16,810,284 +2003,5,23,7,30,93,782,4,0.14400000000000002,1.7000000000000002,42.82,19,810,489 +2003,5,23,8,30,108,854,3,0.14400000000000002,1.7000000000000002,32.65,22,810,678 +2003,5,23,9,30,118,897,3,0.14400000000000002,1.9000000000000001,30.53,23,810,835 +2003,5,23,10,30,125,920,3,0.14400000000000002,2,27.14,25,810,945 +2003,5,23,11,30,452,492,2,0.14400000000000002,2,25.35,26,810,913 +2003,5,23,12,30,399,574,2,0.14400000000000002,1.8,25.25,26,810,936 +2003,5,23,13,30,122,918,2,0.14400000000000002,1.5,23.73,27,810,936 +2003,5,23,14,30,263,649,2,0.14400000000000002,1.2000000000000002,25.060000000000002,26,810,777 +2003,5,23,15,30,162,724,2,0.14400000000000002,1,26.580000000000002,25,810,638 +2003,5,23,16,30,219,222,2,0.14400000000000002,1,28.03,24,810,329 +2003,5,23,17,30,110,342,3,0.14400000000000002,0.9,33.67,22,810,217 +2003,5,23,18,30,45,173,8,0.14400000000000002,0.9,56.18,19,810,68 +2003,5,23,19,30,0,0,5,0.14400000000000002,0.8,53.120000000000005,17,810,0 +2003,5,23,20,30,0,0,4,0.14400000000000002,0.5,52.61,16,810,0 +2003,5,23,21,30,0,0,4,0.14400000000000002,0.6000000000000001,59.78,15,810,0 +2003,5,23,22,30,0,0,4,0.14400000000000002,0.9,59.39,14,810,0 +2003,5,23,23,30,0,0,4,0.14400000000000002,1.7000000000000002,62.86,13,810,0 +2003,5,24,0,30,0,0,4,0.14400000000000002,2.7,64.39,13,810,0 +2003,5,24,1,30,0,0,5,0.14400000000000002,3.1,73.45,12,810,0 +2003,5,24,2,30,0,0,6,0.14400000000000002,2.5,84.32000000000001,11,810,0 +2003,5,24,3,30,0,0,6,0.14400000000000002,1.7000000000000002,93.25,10,810,0 +2003,5,24,4,30,0,0,6,0.14400000000000002,1.7000000000000002,92.93,10,810,0 +2003,5,24,5,30,36,0,7,0.14400000000000002,2,82.31,12,810,36 +2003,5,24,6,30,131,78,8,0.14400000000000002,2.4000000000000004,73.95,15,810,157 +2003,5,24,7,30,204,356,8,0.14400000000000002,2.8000000000000003,59.7,18,810,385 +2003,5,24,8,30,311,290,7,0.14400000000000002,3,55.01,19,810,505 +2003,5,24,9,30,403,244,8,0.14400000000000002,3,52.2,20,810,599 +2003,5,24,10,30,446,78,8,0.14400000000000002,3,49.300000000000004,21,810,516 +2003,5,24,11,30,201,18,8,0.14400000000000002,3,49.24,21,810,218 +2003,5,24,12,30,44,0,8,0.14400000000000002,3,49.47,21,810,44 +2003,5,24,13,30,131,6,8,0.14400000000000002,2.9000000000000004,53.25,20,810,136 +2003,5,24,14,30,324,32,8,0.14400000000000002,2.9000000000000004,57.410000000000004,19,810,350 +2003,5,24,15,30,320,141,8,0.14400000000000002,2.8000000000000003,62.53,18,810,413 +2003,5,24,16,30,143,4,9,0.14400000000000002,2.4000000000000004,68.58,17,810,145 +2003,5,24,17,30,126,184,9,0.145,1.7000000000000002,76.41,16,810,184 +2003,5,24,18,30,37,0,10,0.145,1,85.53,15,810,37 +2003,5,24,19,30,0,0,10,0.145,0.8,96.86,13,810,0 +2003,5,24,20,30,0,0,10,0.145,1,96.39,13,810,0 +2003,5,24,21,30,0,0,9,0.145,1.1,100,12,810,0 +2003,5,24,22,30,0,0,9,0.145,1.2000000000000002,100,12,810,0 +2003,5,24,23,30,0,0,9,0.145,1.2000000000000002,100,11,810,0 +2003,5,25,0,30,0,0,8,0.145,1.2000000000000002,100,10,800,0 +2003,5,25,1,30,0,0,8,0.145,1.1,100,10,800,0 +2003,5,25,2,30,0,0,7,0.145,0.8,100,9,800,0 +2003,5,25,3,30,0,0,7,0.145,0.6000000000000001,100,9,800,0 +2003,5,25,4,30,0,0,7,0.145,0.8,100,9,800,0 +2003,5,25,5,30,50,308,8,0.145,1.2000000000000002,95.98,11,800,94 +2003,5,25,6,30,89,569,8,0.145,1.2000000000000002,80.4,14,800,277 +2003,5,25,7,30,224,245,8,0.145,1.2000000000000002,65.45,17,800,349 +2003,5,25,8,30,286,383,7,0.145,1.5,51.67,20,800,544 +2003,5,25,9,30,360,378,7,0.145,1.7000000000000002,47.25,21,800,663 +2003,5,25,10,30,472,147,7,0.145,2,43.57,22,800,604 +2003,5,25,11,30,350,23,7,0.145,2.1,40.71,23,800,372 +2003,5,25,12,30,504,182,7,0.145,2.1,40.85,23,800,675 +2003,5,25,13,30,110,1,7,0.145,1.9000000000000001,43.7,22,800,111 +2003,5,25,14,30,384,312,7,0.145,1.6,46.71,21,800,633 +2003,5,25,15,30,213,15,7,0.145,1.4000000000000001,46.86,21,800,223 +2003,5,25,16,30,18,0,7,0.145,1.3,50.18,20,800,18 +2003,5,25,17,30,68,0,8,0.145,1.1,56.34,19,800,68 +2003,5,25,18,30,48,142,10,0.145,0.9,77.27,16,800,67 +2003,5,25,19,30,0,0,8,0.145,1,81.14,14,800,0 +2003,5,25,20,30,0,0,8,0.145,1.1,82.69,13,800,0 +2003,5,25,21,30,0,0,7,0.145,1.1,85.52,12,800,0 +2003,5,25,22,30,0,0,7,0.145,1.1,88.76,11,800,0 +2003,5,25,23,30,0,0,6,0.145,1.2000000000000002,86.03,11,800,0 +2003,5,26,0,30,0,0,6,0.145,1.5,83.74,11,800,0 +2003,5,26,1,30,0,0,6,0.145,1.9000000000000001,81.86,11,800,0 +2003,5,26,2,30,0,0,5,0.145,2.5,86.57000000000001,10,800,0 +2003,5,26,3,30,0,0,5,0.145,2.9000000000000004,86.13,10,800,0 +2003,5,26,4,30,0,0,5,0.145,3.2,79.74,11,800,0 +2003,5,26,5,30,43,388,6,0.145,3.4000000000000004,71.4,13,810,99 +2003,5,26,6,30,70,625,6,0.145,2.6,57.870000000000005,17,810,277 +2003,5,26,7,30,132,625,6,0.145,2.2,47.21,20,810,451 +2003,5,26,8,30,136,775,5,0.145,2.6,39.75,22,810,656 +2003,5,26,9,30,158,808,6,0.145,2.7,37.67,23,810,806 +2003,5,26,10,30,423,383,6,0.145,2.4000000000000004,35.730000000000004,24,810,765 +2003,5,26,11,30,472,314,6,0.145,1.9000000000000001,33.34,25,810,768 +2003,5,26,12,30,165,11,5,0.145,1.4000000000000001,33.08,25,810,176 +2003,5,26,13,30,167,11,5,0.145,1.1,33.04,25,810,177 +2003,5,26,14,30,262,18,5,0.145,1,35.160000000000004,24,810,277 +2003,5,26,15,30,225,17,5,0.145,0.9,35.2,24,810,236 +2003,5,26,16,30,221,225,5,0.145,0.6000000000000001,37.38,23,810,334 +2003,5,26,17,30,120,280,6,0.145,0.4,44.15,21,810,210 +2003,5,26,18,30,10,0,9,0.145,0.4,63.35,18,810,10 +2003,5,26,19,30,0,0,7,0.145,0.4,66.02,16,810,0 +2003,5,26,20,30,0,0,7,0.145,0.4,74.83,14,810,0 +2003,5,26,21,30,0,0,7,0.145,0.7000000000000001,80.02,13,810,0 +2003,5,26,22,30,0,0,7,0.145,1.2000000000000002,77.79,13,810,0 +2003,5,26,23,30,0,0,6,0.145,1.7000000000000002,76.14,13,810,0 +2003,5,27,0,30,0,0,6,0.145,2.2,78.97,12,810,0 +2003,5,27,1,30,0,0,6,0.145,2.8000000000000003,76.23,12,810,0 +2003,5,27,2,30,0,0,5,0.145,3.3000000000000003,73.94,12,810,0 +2003,5,27,3,30,0,0,5,0.145,3.5,73.17,12,810,0 +2003,5,27,4,30,0,0,5,0.145,3.7,67.87,13,810,0 +2003,5,27,5,30,57,222,5,0.145,3.9000000000000004,60.49,15,810,89 +2003,5,27,6,30,103,504,6,0.145,3.4000000000000004,48.94,19,810,270 +2003,5,27,7,30,112,696,6,0.145,3,41.12,22,810,468 +2003,5,27,8,30,128,795,4,0.145,3.3000000000000003,30.96,25,810,663 +2003,5,27,9,30,332,523,5,0.145,3.3000000000000003,29.400000000000002,26,810,752 +2003,5,27,10,30,444,315,5,0.145,3.3000000000000003,28.76,27,810,726 +2003,5,27,11,30,399,576,6,0.145,3.5,27.94,28,810,942 +2003,5,27,12,30,493,409,6,0.145,3.8000000000000003,28.73,28,810,878 +2003,5,27,13,30,135,879,6,0.145,4.1000000000000005,31.51,27,810,918 +2003,5,27,14,30,135,838,7,0.145,4.1000000000000005,34.26,26,810,803 +2003,5,27,15,30,274,38,7,0.145,3.9000000000000004,37.19,25,810,300 +2003,5,27,16,30,220,241,7,0.145,3.4000000000000004,40.58,24,810,341 +2003,5,27,17,30,5,0,8,0.145,2.5,48.61,22,810,5 +2003,5,27,18,30,37,0,10,0.145,1.7000000000000002,67.48,19,810,37 +2003,5,27,19,30,0,0,10,0.145,1.4000000000000001,75.78,17,810,0 +2003,5,27,20,30,0,0,10,0.145,1.2000000000000002,78.87,16,810,0 +2003,5,27,21,30,0,0,10,0.145,1,82.33,15,810,0 +2003,5,27,22,30,0,0,9,0.145,0.6000000000000001,80.62,15,810,0 +2003,5,27,23,30,0,0,9,0.145,0.2,84.94,14,810,0 +2003,5,28,0,30,0,0,9,0.145,0.2,84.32000000000001,14,810,0 +2003,5,28,1,30,0,0,9,0.145,0.5,89.55,13,810,0 +2003,5,28,2,30,0,0,9,0.145,0.6000000000000001,95.19,12,810,0 +2003,5,28,3,30,0,0,9,0.145,0.6000000000000001,94.65,12,810,0 +2003,5,28,4,30,0,0,9,0.145,0.5,93.9,13,810,0 +2003,5,28,5,30,46,352,9,0.145,0.30000000000000004,80.41,15,810,98 +2003,5,28,6,30,79,614,10,0.145,0.7000000000000001,69.96000000000001,18,810,283 +2003,5,28,7,30,98,749,10,0.145,1.5,56.84,21,810,483 +2003,5,28,8,30,121,806,9,0.145,2,45.27,24,810,664 +2003,5,28,9,30,129,859,9,0.145,2.4000000000000004,41.74,25,810,820 +2003,5,28,10,30,134,889,9,0.145,2.8000000000000003,38.93,26,810,930 +2003,5,28,11,30,397,578,9,0.145,3.2,36.49,27,810,942 +2003,5,28,12,30,126,913,9,0.145,3.5,34.4,28,810,986 +2003,5,28,13,30,321,22,9,0.145,3.6,34.39,28,810,341 +2003,5,28,14,30,346,468,9,0.145,3.5,36.45,27,810,720 +2003,5,28,15,30,222,578,8,0.145,3.2,38.14,26,810,607 +2003,5,28,16,30,146,564,8,0.145,2.7,40.33,25,810,430 +2003,5,28,17,30,80,588,9,0.145,1.9000000000000001,47.09,23,810,271 +2003,5,28,18,30,43,346,11,0.145,1.4000000000000001,64.48,20,810,91 +2003,5,28,19,30,0,0,10,0.145,1.3,73.07000000000001,17,810,0 +2003,5,28,20,30,0,0,9,0.145,1.5,74.41,16,810,0 +2003,5,28,21,30,0,0,9,0.145,1.9000000000000001,77.3,16,810,0 +2003,5,28,22,30,0,0,8,0.145,2.4000000000000004,75.27,15,810,0 +2003,5,28,23,30,0,0,8,0.145,3,73,15,810,0 +2003,5,29,0,30,0,0,7,0.145,3.4000000000000004,70.25,15,810,0 +2003,5,29,1,30,0,0,7,0.145,3.4000000000000004,67.26,15,810,0 +2003,5,29,2,30,0,0,6,0.145,3.4000000000000004,64.35,15,810,0 +2003,5,29,3,30,0,0,5,0.145,3.6,60.94,15,810,0 +2003,5,29,4,30,0,0,4,0.145,4.1000000000000005,53.95,16,810,0 +2003,5,29,5,30,38,472,4,0.145,4.6000000000000005,46.59,18,810,109 +2003,5,29,6,30,66,692,5,0.145,4.800000000000001,37.56,22,810,297 +2003,5,29,7,30,85,801,5,0.145,5,32.92,25,810,496 +2003,5,29,8,30,93,876,5,0.145,5.2,26.22,28,810,684 +2003,5,29,9,30,99,921,5,0.145,5.2,24.67,29,810,840 +2003,5,29,10,30,100,949,5,0.145,5,23.76,30,810,951 +2003,5,29,11,30,97,966,5,0.145,4.7,22.76,31,810,1008 +2003,5,29,12,30,97,963,5,0.145,4.3,23.12,32,810,1005 +2003,5,29,13,30,470,206,5,0.145,3.9000000000000004,23.29,31,810,655 +2003,5,29,14,30,328,529,6,0.145,3.5,23.650000000000002,31,810,751 +2003,5,29,15,30,244,511,6,0.145,3,25.42,30,810,585 +2003,5,29,16,30,202,362,6,0.145,2.5,29.3,28,810,385 +2003,5,29,17,30,5,0,8,0.145,1.7000000000000002,36.9,26,810,5 +2003,5,29,18,30,35,0,12,0.145,1.3,60.81,22,810,35 +2003,5,29,19,30,0,0,11,0.145,1.4000000000000001,64.85,20,810,0 +2003,5,29,20,30,0,0,11,0.145,1,72.36,18,810,0 +2003,5,29,21,30,0,0,10,0.145,0.8,76.43,17,810,0 +2003,5,29,22,30,0,0,11,0.145,1.3,82.52,16,810,0 +2003,5,29,23,30,0,0,10,0.145,1.7000000000000002,81.55,16,810,0 +2003,5,30,0,30,0,0,10,0.145,2,79.29,16,810,0 +2003,5,30,1,30,0,0,9,0.145,2.2,81.71000000000001,15,810,0 +2003,5,30,2,30,0,0,9,0.145,2.4000000000000004,78.55,15,810,0 +2003,5,30,3,30,0,0,8,0.145,2.7,81.08,14,810,0 +2003,5,30,4,30,0,0,8,0.145,2.9000000000000004,73.66,15,810,0 +2003,5,30,5,30,36,460,8,0.145,3.3000000000000003,62.17,18,810,105 +2003,5,30,6,30,66,682,9,0.145,3.1,50.46,22,810,295 +2003,5,30,7,30,82,803,8,0.145,2.3000000000000003,38.82,25,810,495 +2003,5,30,8,30,98,860,6,0.145,1.9000000000000001,30.79,27,810,678 +2003,5,30,9,30,217,705,6,0.145,1.8,26.79,29,810,785 +2003,5,30,10,30,471,221,6,0.145,1.9000000000000001,25.13,30,810,670 +2003,5,30,11,30,440,517,6,0.145,2.1,25.11,30,800,929 +2003,5,30,12,30,500,377,6,0.145,2.3000000000000003,25.22,30,800,856 +2003,5,30,13,30,448,80,6,0.145,1.9000000000000001,27.44,29,800,520 +2003,5,30,14,30,31,0,7,0.145,1.1,30.330000000000002,28,800,31 +2003,5,30,15,30,174,9,7,0.145,1.1,35.97,26,800,180 +2003,5,30,16,30,229,169,8,0.145,2,43.04,24,800,315 +2003,5,30,17,30,133,113,9,0.145,3,55.61,21,800,171 +2003,5,30,18,30,24,0,11,0.145,3.1,69.19,19,800,24 +2003,5,30,19,30,0,0,11,0.145,2.2,79.38,17,810,0 +2003,5,30,20,30,0,0,11,0.145,2.3000000000000003,87.49,16,810,0 +2003,5,30,21,30,0,0,11,0.145,3.5,99.41,14,810,0 +2003,5,30,22,30,0,0,11,0.145,3.9000000000000004,100,13,810,0 +2003,5,30,23,30,0,0,9,0.145,3.5,100,12,810,0 +2003,5,31,0,30,0,0,9,0.145,3,100,11,810,0 +2003,5,31,1,30,0,0,9,0.145,2.3000000000000003,100,11,810,0 +2003,5,31,2,30,0,0,9,0.145,1.3,100,11,810,0 +2003,5,31,3,30,0,0,9,0.145,0.8,100,11,810,0 +2003,5,31,4,30,0,0,9,0.145,0.9,96.81,12,810,0 +2003,5,31,5,30,47,0,9,0.145,1,90.76,13,810,47 +2003,5,31,6,30,82,604,9,0.145,0.6000000000000001,71.43,17,800,286 +2003,5,31,7,30,102,741,9,0.145,0.5,53.89,21,800,484 +2003,5,31,8,30,264,29,8,0.145,1.2000000000000002,41.09,24,800,284 +2003,5,31,9,30,400,277,7,0.145,1.8,38.07,25,800,623 +2003,5,31,10,30,445,395,7,0.145,2,35.96,26,800,800 +2003,5,31,11,30,449,503,7,0.145,1.8,33.78,27,800,925 +2003,5,31,12,30,451,499,8,0.145,1.2000000000000002,36.050000000000004,26,800,923 +2003,5,31,13,30,432,62,8,0.145,0.7000000000000001,39.22,25,800,488 +2003,5,31,14,30,61,0,8,0.145,1.1,39.79,25,800,61 +2003,5,31,15,30,86,0,8,0.145,1.6,43.02,24,800,86 +2003,5,31,16,30,229,186,9,0.145,1.8,47.47,23,800,324 +2003,5,31,17,30,133,177,10,0.145,1.8,58.01,21,800,192 +2003,5,31,18,30,48,3,12,0.145,1.7000000000000002,72.56,19,800,48 +2003,5,31,19,30,0,0,11,0.145,1.9000000000000001,79.97,17,800,0 +2003,5,31,20,30,0,0,11,0.145,2.4000000000000004,77.08,17,800,0 +2003,5,31,21,30,0,0,10,0.145,3,78.73,16,800,0 +2003,5,31,22,30,0,0,9,0.145,3,79.99,15,800,0 +2003,5,31,23,30,0,0,8,0.145,2.6,81.41,14,800,0 +2003,6,1,0,30,0,0,8,0.145,2.2,83.38,13,800,0 +2003,6,1,1,30,0,0,7,0.145,1.8,86.38,12,800,0 +2003,6,1,2,30,0,0,7,0.145,1.3,85.05,12,800,0 +2003,6,1,3,30,0,0,7,0.145,1.2000000000000002,84.09,12,800,0 +2003,6,1,4,30,0,0,7,0.145,1.3,77.74,13,800,0 +2003,6,1,5,30,14,0,8,0.145,1.4000000000000001,72.95,15,800,14 +2003,6,1,6,30,137,176,8,0.145,1.2000000000000002,62.050000000000004,18,800,196 +2003,6,1,7,30,222,279,8,0.145,1.5,53.480000000000004,20,800,367 +2003,6,1,8,30,249,23,7,0.145,2.1,46.1,21,800,264 +2003,6,1,9,30,224,14,6,0.145,2.9000000000000004,45.26,21,800,236 +2003,6,1,10,30,351,26,7,0.145,3.6,52.03,19,800,374 +2003,6,1,11,30,504,133,7,0.145,3.1,56.910000000000004,19,800,630 +2003,6,1,12,30,427,41,7,0.145,1.6,52.75,19,800,466 +2003,6,1,13,30,469,228,6,0.145,0.8,46.93,20,800,674 +2003,6,1,14,30,352,470,5,0.145,1,42.02,21,800,730 +2003,6,1,15,30,100,856,5,0.145,1,38.03,22,800,676 +2003,6,1,16,30,89,781,4,0.145,0.8,39.46,21,800,488 +2003,6,1,17,30,67,673,4,0.14200000000000002,0.6000000000000001,41.43,20,800,291 +2003,6,1,18,30,39,442,7,0.14200000000000002,0.6000000000000001,58.95,17,800,104 +2003,6,1,19,30,0,0,6,0.14200000000000002,0.7000000000000001,71.10000000000001,14,800,0 +2003,6,1,20,30,0,0,6,0.14200000000000002,1,75.54,13,800,0 +2003,6,1,21,30,0,0,6,0.14200000000000002,1.3,86.47,11,810,0 +2003,6,1,22,30,0,0,6,0.14200000000000002,1.6,91.79,10,810,0 +2003,6,1,23,30,0,0,6,0.14200000000000002,1.5,92.39,10,810,0 +2003,6,2,0,30,0,0,6,0.14200000000000002,1.1,92.82000000000001,10,810,0 +2003,6,2,1,30,0,0,6,0.14200000000000002,0.7000000000000001,99.38,9,810,0 +2003,6,2,2,30,0,0,6,0.14200000000000002,0.30000000000000004,100,8,810,0 +2003,6,2,3,30,0,0,4,0.14200000000000002,0.30000000000000004,100,7,800,0 +2003,6,2,4,30,0,0,5,0.14200000000000002,1,95.32000000000001,8,800,0 +2003,6,2,5,30,42,452,5,0.14200000000000002,1.3,81.83,10,800,111 +2003,6,2,6,30,65,703,4,0.14200000000000002,0.9,66.23,13,800,303 +2003,6,2,7,30,78,827,3,0.14200000000000002,0.9,50.660000000000004,16,800,506 +2003,6,2,8,30,89,892,2,0.14200000000000002,1.4000000000000001,38.38,19,800,693 +2003,6,2,9,30,98,927,2,0.14200000000000002,1.7000000000000002,32.68,21,800,846 +2003,6,2,10,30,108,942,2,0.14200000000000002,1.7000000000000002,30.44,22,800,954 +2003,6,2,11,30,116,944,2,0.14200000000000002,1.4000000000000001,28.59,23,800,1009 +2003,6,2,12,30,123,932,2,0.14200000000000002,1.1,26.78,24,800,1005 +2003,6,2,13,30,348,570,1,0.14200000000000002,0.7000000000000001,24.95,25,800,859 +2003,6,2,14,30,354,402,1,0.14200000000000002,0.4,24.51,25,800,678 +2003,6,2,15,30,256,474,1,0.14200000000000002,0.5,25.62,24,800,575 +2003,6,2,16,30,169,498,1,0.14200000000000002,0.7000000000000001,27.07,23,800,424 +2003,6,2,17,30,135,88,2,0.14200000000000002,0.8,34.84,20,800,164 +2003,6,2,18,30,51,30,5,0.14200000000000002,1,53.01,17,800,56 +2003,6,2,19,30,0,0,7,0.14200000000000002,1.3,67.36,15,800,0 +2003,6,2,20,30,0,0,6,0.14200000000000002,1.6,73.08,13,800,0 +2003,6,2,21,30,0,0,6,0.14200000000000002,1.6,81.88,11,800,0 +2003,6,2,22,30,0,0,5,0.14200000000000002,2,77.54,11,800,0 +2003,6,2,23,30,0,0,3,0.14200000000000002,2.9000000000000004,75.34,10,800,0 +2003,6,3,0,30,0,0,2,0.14200000000000002,3.5,72.95,9,800,0 +2003,6,3,1,30,0,0,1,0.14200000000000002,3.8000000000000003,74.48,8,800,0 +2003,6,3,2,30,0,0,1,0.14200000000000002,3.3000000000000003,80.42,7,800,0 +2003,6,3,3,30,0,0,2,0.14200000000000002,2.4000000000000004,84.05,7,800,0 +2003,6,3,4,30,0,0,2,0.14200000000000002,2.4000000000000004,86.01,7,800,0 +2003,6,3,5,30,53,180,3,0.14200000000000002,2.7,79.76,9,800,81 +2003,6,3,6,30,98,488,4,0.14200000000000002,2.7,73.7,11,810,264 +2003,6,3,7,30,103,756,3,0.14200000000000002,2.3000000000000003,57.79,14,800,494 +2003,6,3,8,30,259,26,3,0.14200000000000002,2,47.88,16,800,277 +2003,6,3,9,30,400,92,2,0.14200000000000002,2,40.19,18,800,475 +2003,6,3,10,30,414,503,2,0.14200000000000002,2.2,34.480000000000004,20,800,867 +2003,6,3,11,30,506,375,1,0.14200000000000002,2.3000000000000003,32,21,800,861 +2003,6,3,12,30,507,392,1,0.14200000000000002,2.3000000000000003,29.84,22,800,879 +2003,6,3,13,30,434,385,1,0.14200000000000002,2.2,29.51,22,800,780 +2003,6,3,14,30,344,38,1,0.14200000000000002,2.2,29.44,22,800,375 +2003,6,3,15,30,199,12,1,0.14200000000000002,2.6,31.650000000000002,21,800,207 +2003,6,3,16,30,156,7,2,0.14200000000000002,3.3000000000000003,37.25,19,800,160 +2003,6,3,17,30,103,0,3,0.14200000000000002,3.6,44.77,18,800,103 +2003,6,3,18,30,9,0,4,0.14200000000000002,3.3000000000000003,57.44,15,800,9 +2003,6,3,19,30,0,0,5,0.14200000000000002,2.7,68.4,13,800,0 +2003,6,3,20,30,0,0,6,0.14200000000000002,2.2,82.12,11,800,0 +2003,6,3,21,30,0,0,6,0.14200000000000002,1.8,90.53,10,800,0 +2003,6,3,22,30,0,0,6,0.14200000000000002,1.6,98.67,9,800,0 +2003,6,3,23,30,0,0,6,0.14200000000000002,1.5,99.98,9,800,0 +2003,6,4,0,30,0,0,7,0.14200000000000002,1.2000000000000002,100,9,800,0 +2003,6,4,1,30,0,0,7,0.14200000000000002,1.1,100,9,800,0 +2003,6,4,2,30,0,0,6,0.14200000000000002,1.2000000000000002,100,8,800,0 +2003,6,4,3,30,0,0,6,0.14200000000000002,1.5,100,8,800,0 +2003,6,4,4,30,0,0,6,0.14200000000000002,1.9000000000000001,100,8,800,0 +2003,6,4,5,30,63,224,7,0.14200000000000002,2.2,100,9,800,98 +2003,6,4,6,30,120,460,7,0.14200000000000002,2.4000000000000004,91.77,11,800,276 +2003,6,4,7,30,145,639,7,0.14200000000000002,2.5,76.78,13,800,476 +2003,6,4,8,30,315,78,5,0.14200000000000002,2.6,60.71,15,800,367 +2003,6,4,9,30,200,13,4,0.14200000000000002,2.9000000000000004,52.79,16,800,211 +2003,6,4,10,30,105,0,3,0.14200000000000002,3.3000000000000003,47.63,17,800,105 +2003,6,4,11,30,88,0,3,0.14200000000000002,3.6,44.17,18,800,88 +2003,6,4,12,30,139,8,3,0.14200000000000002,3.9000000000000004,44.480000000000004,18,800,147 +2003,6,4,13,30,190,13,4,0.14200000000000002,3.8000000000000003,48.5,17,800,203 +2003,6,4,14,30,179,11,4,0.14200000000000002,3.6,52.79,16,800,189 +2003,6,4,15,30,215,14,4,0.14200000000000002,3.7,57.57,15,800,225 +2003,6,4,16,30,30,0,5,0.14200000000000002,3.8000000000000003,67.16,13,800,30 +2003,6,4,17,30,46,0,5,0.14200000000000002,3.6,78.72,11,810,46 +2003,6,4,18,30,64,183,5,0.14200000000000002,2.8000000000000003,92.31,10,810,92 +2003,6,4,19,30,0,0,5,0.14200000000000002,1.7000000000000002,99.58,8,810,0 +2003,6,4,20,30,0,0,5,0.14200000000000002,1.1,98.53,8,810,0 +2003,6,4,21,30,0,0,5,0.14200000000000002,1.2000000000000002,98.09,8,810,0 +2003,6,4,22,30,0,0,5,0.14200000000000002,1.2000000000000002,97.19,8,810,0 +2003,6,4,23,30,0,0,4,0.14200000000000002,0.9,100,8,810,0 +2003,6,5,0,30,0,0,4,0.14200000000000002,0.30000000000000004,100,7,810,0 +2003,6,5,1,30,0,0,4,0.14200000000000002,0.4,100,7,800,0 +2003,6,5,2,30,0,0,4,0.14200000000000002,0.8,100,6,800,0 +2003,6,5,3,30,0,0,4,0.14200000000000002,1.1,100,6,800,0 +2003,6,5,4,30,0,0,4,0.14200000000000002,1.2000000000000002,100,6,810,0 +2003,6,5,5,30,26,0,3,0.14200000000000002,1,96.49000000000001,6,810,26 +2003,6,5,6,30,119,15,3,0.14200000000000002,0.8,94.44,6,810,124 +2003,6,5,7,30,190,23,3,0.14200000000000002,0.8,87.46000000000001,7,810,202 +2003,6,5,8,30,310,316,2,0.14200000000000002,1.2000000000000002,79.84,8,810,524 +2003,6,5,9,30,255,17,2,0.14200000000000002,1.7000000000000002,65.9,10,810,269 +2003,6,5,10,30,211,15,1,0.14200000000000002,1.7000000000000002,54.730000000000004,12,810,225 +2003,6,5,11,30,266,17,0,0.14200000000000002,1.2000000000000002,42.550000000000004,15,810,284 +2003,6,5,12,30,498,108,0,0.14200000000000002,1.4000000000000001,38.39,16,800,601 +2003,6,5,13,30,438,388,0,0.14200000000000002,2.5,36,17,800,787 +2003,6,5,14,30,349,489,0,0.14200000000000002,3.3000000000000003,39.230000000000004,16,800,744 +2003,6,5,15,30,234,547,0,0.14200000000000002,3.5,42.660000000000004,15,800,604 +2003,6,5,16,30,234,144,0,0.14200000000000002,3.2,45.44,14,810,309 +2003,6,5,17,30,116,11,0,0.14200000000000002,2.4000000000000004,48.09,13,810,120 +2003,6,5,18,30,4,0,1,0.14200000000000002,1.4000000000000001,59.74,11,810,4 +2003,6,5,19,30,0,0,2,0.14200000000000002,0.9,74.35000000000001,9,810,0 +2003,6,5,20,30,0,0,2,0.14200000000000002,0.9,82.77,7,810,0 +2003,6,5,21,30,0,0,1,0.14200000000000002,0.8,79.15,7,810,0 +2003,6,5,22,30,0,0,1,0.14200000000000002,0.6000000000000001,82.4,6,810,0 +2003,6,5,23,30,0,0,1,0.14200000000000002,0.2,87.25,5,810,0 +2003,6,6,0,30,0,0,1,0.14200000000000002,0.30000000000000004,93.41,4,810,0 +2003,6,6,1,30,0,0,0,0.14200000000000002,0.7000000000000001,92.9,4,810,0 +2003,6,6,2,30,0,0,0,0.14200000000000002,0.8,99.10000000000001,3,810,0 +2003,6,6,3,30,0,0,0,0.14200000000000002,0.8,98.38,3,810,0 +2003,6,6,4,30,0,0,0,0.14200000000000002,0.8,90.65,4,810,0 +2003,6,6,5,30,46,329,0,0.14200000000000002,1,75.14,7,810,98 +2003,6,6,6,30,65,708,0,0.14200000000000002,1,58.88,10,810,306 +2003,6,6,7,30,80,828,0,0.14200000000000002,0.9,46.39,13,810,509 +2003,6,6,8,30,309,320,0,0.14200000000000002,1.2000000000000002,39.99,15,800,526 +2003,6,6,9,30,415,156,0,0.14200000000000002,1.4000000000000001,36.97,16,800,541 +2003,6,6,10,30,444,390,0,0.14200000000000002,1.3,34.97,17,800,796 +2003,6,6,11,30,285,18,0,0.14200000000000002,1.3,33.35,18,800,303 +2003,6,6,12,30,481,365,0,0.14200000000000002,1.5,31.92,19,800,827 +2003,6,6,13,30,476,190,0,0.14200000000000002,1.7000000000000002,32.51,19,800,648 +2003,6,6,14,30,214,14,0,0.14200000000000002,2.2,32.86,19,800,225 +2003,6,6,15,30,323,98,0,0.14200000000000002,2.8000000000000003,35.410000000000004,18,800,389 +2003,6,6,16,30,158,541,0,0.14200000000000002,3.2,38.53,17,800,439 +2003,6,6,17,30,97,0,1,0.14200000000000002,3.4000000000000004,49.45,14,800,97 +2003,6,6,18,30,8,0,3,0.14200000000000002,3.5,68.33,11,800,8 +2003,6,6,19,30,0,0,4,0.14200000000000002,4.1000000000000005,84.71000000000001,9,800,0 +2003,6,6,20,30,0,0,4,0.14200000000000002,4.4,97.41,7,800,0 +2003,6,6,21,30,0,0,2,0.14200000000000002,3.6,100,5,810,0 +2003,6,6,22,30,0,0,2,0.14200000000000002,2.1,98.31,5,800,0 +2003,6,6,23,30,0,0,2,0.14200000000000002,1.7000000000000002,100,4,800,0 +2003,6,7,0,30,0,0,1,0.14200000000000002,2.3000000000000003,100,3,800,0 +2003,6,7,1,30,0,0,1,0.14200000000000002,2,100,3,800,0 +2003,6,7,2,30,0,0,1,0.14200000000000002,1.2000000000000002,100,3,800,0 +2003,6,7,3,30,0,0,0,0.14200000000000002,0.5,99.96000000000001,3,800,0 +2003,6,7,4,30,0,0,0,0.14200000000000002,0.30000000000000004,98.37,3,800,0 +2003,6,7,5,30,33,0,0,0.14200000000000002,0.8,85.49,5,800,33 +2003,6,7,6,30,134,58,0,0.14200000000000002,1.6,72.62,7,800,154 +2003,6,7,7,30,229,90,0,0.14200000000000002,2,57.83,9,800,276 +2003,6,7,8,30,330,193,-2,0.14200000000000002,2,43.99,11,800,462 +2003,6,7,9,30,410,233,-4,0.14200000000000002,2.1,34.660000000000004,13,800,598 +2003,6,7,10,30,430,381,-4,0.14200000000000002,2.3000000000000003,28.35,15,800,774 +2003,6,7,11,30,509,186,-5,0.14200000000000002,2.4000000000000004,25.89,16,800,686 +2003,6,7,12,30,488,172,-5,0.14200000000000002,2.7,24.37,17,800,652 +2003,6,7,13,30,460,92,-4,0.14200000000000002,3.1,23.35,18,800,543 +2003,6,7,14,30,409,114,-4,0.14200000000000002,3.6,23.97,18,800,501 +2003,6,7,15,30,146,778,-4,0.14200000000000002,4,26.18,17,800,674 +2003,6,7,16,30,182,464,-3,0.14200000000000002,4,28.66,16,800,423 +2003,6,7,17,30,57,711,-3,0.14200000000000002,3.5,33.15,14,800,300 +2003,6,7,18,30,55,218,-1,0.14200000000000002,2.3000000000000003,46.07,11,810,90 +2003,6,7,19,30,0,0,0,0.14200000000000002,1.5,64.11,8,810,0 +2003,6,7,20,30,0,0,0,0.14200000000000002,1.2000000000000002,70.98,6,810,0 +2003,6,7,21,30,0,0,0,0.14200000000000002,1.1,75.15,5,810,0 +2003,6,7,22,30,0,0,-1,0.14200000000000002,1,78.31,4,810,0 +2003,6,7,23,30,0,0,-1,0.14200000000000002,0.9,75.25,4,810,0 +2003,6,8,0,30,0,0,-2,0.14200000000000002,0.7000000000000001,77.35000000000001,3,800,0 +2003,6,8,1,30,0,0,-3,0.14200000000000002,0.7000000000000001,73.88,3,800,0 +2003,6,8,2,30,0,0,-3,0.14200000000000002,0.9,70.41,3,800,0 +2003,6,8,3,30,0,0,-4,0.14200000000000002,1.3,66.29,3,800,0 +2003,6,8,4,30,0,0,-5,0.14200000000000002,1.8,58.32,4,800,0 +2003,6,8,5,30,41,499,-5,0.14200000000000002,1.9000000000000001,44.84,8,800,119 +2003,6,8,6,30,62,681,-5,0.14200000000000002,1.6,34.28,12,800,295 +2003,6,8,7,30,77,854,-5,0.14200000000000002,1.3,27.740000000000002,15,800,521 +2003,6,8,8,30,89,914,-5,0.14200000000000002,1.2000000000000002,22.73,18,800,710 +2003,6,8,9,30,96,951,-4,0.14200000000000002,1,20.52,20,800,866 +2003,6,8,10,30,102,970,-4,0.14200000000000002,0.9,20.19,21,800,976 +2003,6,8,11,30,100,983,-3,0.14200000000000002,0.8,20.03,22,800,1034 +2003,6,8,12,30,101,980,-2,0.14200000000000002,0.8,19.91,23,800,1032 +2003,6,8,13,30,316,666,-2,0.14200000000000002,0.9,19.54,24,800,917 +2003,6,8,14,30,414,132,-1,0.14200000000000002,0.8,20.18,24,800,521 +2003,6,8,15,30,199,12,-1,0.14200000000000002,0.7000000000000001,22.06,23,800,208 +2003,6,8,16,30,161,533,-1,0.14200000000000002,0.6000000000000001,23.87,22,800,439 +2003,6,8,17,30,115,396,0,0.14200000000000002,0.5,29.810000000000002,20,800,251 +2003,6,8,18,30,40,487,4,0.14200000000000002,0.8,48.46,17,800,118 +2003,6,8,19,30,0,0,2,0.14200000000000002,1.1,51.42,14,800,0 +2003,6,8,20,30,0,0,1,0.14200000000000002,1.2000000000000002,57.13,12,800,0 +2003,6,8,21,30,0,0,2,0.14200000000000002,1.4000000000000001,66.23,10,800,0 +2003,6,8,22,30,0,0,1,0.14200000000000002,1.6,65.02,10,800,0 +2003,6,8,23,30,0,0,1,0.14200000000000002,1.9000000000000001,63.35,10,800,0 +2003,6,9,0,30,0,0,1,0.14200000000000002,2.5,61.32,10,800,0 +2003,6,9,1,30,0,0,0,0.14200000000000002,3.2,59.32,10,800,0 +2003,6,9,2,30,0,0,0,0.14200000000000002,3.6,57.81,10,800,0 +2003,6,9,3,30,0,0,0,0.14200000000000002,3.6,56.45,10,800,0 +2003,6,9,4,30,0,0,0,0.14200000000000002,3.7,51.22,11,800,0 +2003,6,9,5,30,56,67,0,0.14200000000000002,3.8000000000000003,45.27,13,800,67 +2003,6,9,6,30,133,245,0,0.14200000000000002,3.6,36.58,17,800,217 +2003,6,9,7,30,153,575,0,0.14200000000000002,3.3000000000000003,29.85,20,800,452 +2003,6,9,8,30,221,601,-1,0.14200000000000002,3,23.7,22,800,630 +2003,6,9,9,30,307,583,0,0.14200000000000002,2.4000000000000004,23.240000000000002,23,800,779 +2003,6,9,10,30,457,409,0,0.14200000000000002,2.3000000000000003,24.63,24,800,826 +2003,6,9,11,30,464,353,2,0.14200000000000002,2.7,27.93,24,800,799 +2003,6,9,12,30,501,111,4,0.14200000000000002,3,32.77,23,800,606 +2003,6,9,13,30,70,0,4,0.14200000000000002,3.2,37.34,22,800,70 +2003,6,9,14,30,380,343,5,0.14200000000000002,3.1,39.38,22,800,658 +2003,6,9,15,30,91,0,6,0.14200000000000002,2.7,41.5,22,800,91 +2003,6,9,16,30,92,0,6,0.14200000000000002,2,43.67,21,800,92 +2003,6,9,17,30,134,49,6,0.14,1.2000000000000002,46.67,20,800,151 +2003,6,9,18,30,33,0,8,0.14,0.8,65.16,17,800,33 +2003,6,9,19,30,0,0,8,0.14,0.6000000000000001,72.3,15,800,0 +2003,6,9,20,30,0,0,8,0.14,1.2000000000000002,82.52,13,800,0 +2003,6,9,21,30,0,0,7,0.14,2.3000000000000003,89.99,11,800,0 +2003,6,9,22,30,0,0,7,0.14,1.7000000000000002,87.43,11,800,0 +2003,6,9,23,30,0,0,6,0.14,0.8,92.65,10,800,0 +2003,6,10,0,30,0,0,6,0.14,1,98.08,9,800,0 +2003,6,10,1,30,0,0,6,0.14,1.5,95.63,9,800,0 +2003,6,10,2,30,0,0,5,0.14,2.1,99.75,8,800,0 +2003,6,10,3,30,0,0,5,0.14,2.4000000000000004,96.97,8,800,0 +2003,6,10,4,30,0,0,5,0.14,2.5,87.61,9,800,0 +2003,6,10,5,30,18,0,5,0.14,1.9000000000000001,71.84,12,800,18 +2003,6,10,6,30,131,269,5,0.14,0.7000000000000001,62.18,15,800,223 +2003,6,10,7,30,222,289,6,0.14,0.5,52.96,18,800,372 +2003,6,10,8,30,131,784,6,0.14,0.7000000000000001,46.31,20,800,664 +2003,6,10,9,30,358,426,6,0.14,0.6000000000000001,40.85,22,800,703 +2003,6,10,10,30,443,386,6,0.14,0.4,38.33,23,800,792 +2003,6,10,11,30,511,373,6,0.14,0.8,35.58,24,800,866 +2003,6,10,12,30,169,12,5,0.14,1.5,34.730000000000004,24,800,181 +2003,6,10,13,30,429,356,5,0.14,2,33.71,24,800,751 +2003,6,10,14,30,122,4,5,0.14,2.2,35.75,23,800,125 +2003,6,10,15,30,250,22,5,0.14,2.2,38.88,22,800,266 +2003,6,10,16,30,185,460,6,0.14,2,43.84,21,800,426 +2003,6,10,17,30,135,249,7,0.14,1.6,52.69,19,800,221 +2003,6,10,18,30,59,158,9,0.14,1.5,74.28,16,800,84 +2003,6,10,19,30,0,0,9,0.14,1.7000000000000002,82.49,14,800,0 +2003,6,10,20,30,0,0,8,0.14,1.6,86.89,13,800,0 +2003,6,10,21,30,0,0,8,0.14,1.5,91.75,12,800,0 +2003,6,10,22,30,0,0,8,0.14,1.8,94.57000000000001,11,800,0 +2003,6,10,23,30,0,0,7,0.14,2,97.06,10,800,0 +2003,6,11,0,30,0,0,6,0.14,1.9000000000000001,93.06,10,800,0 +2003,6,11,1,30,0,0,6,0.14,1.7000000000000002,95.11,9,800,0 +2003,6,11,2,30,0,0,5,0.14,1.6,89.92,9,800,0 +2003,6,11,3,30,0,0,4,0.14,1.6,83.84,9,800,0 +2003,6,11,4,30,0,0,3,0.14,1.8,72.63,10,800,0 +2003,6,11,5,30,44,454,3,0.14,2.4000000000000004,56.21,14,800,116 +2003,6,11,6,30,69,703,2,0.14,2.6,41.38,18,800,310 +2003,6,11,7,30,86,824,0,0.14,2.4000000000000004,26.830000000000002,21,800,514 +2003,6,11,8,30,97,889,-3,0.14,2.2,18.84,23,800,701 +2003,6,11,9,30,107,924,-3,0.14,2,17.38,25,800,855 +2003,6,11,10,30,117,937,-1,0.14,1.7000000000000002,18.240000000000002,26,800,962 +2003,6,11,11,30,431,41,0,0.14,1.6,20.06,26,800,470 +2003,6,11,12,30,133,921,0,0.14,1.7000000000000002,20.240000000000002,27,800,1009 +2003,6,11,13,30,429,364,1,0.14,2.3000000000000003,22.580000000000002,26,800,758 +2003,6,11,14,30,364,457,2,0.14,3.3000000000000003,25.580000000000002,25,800,736 +2003,6,11,15,30,334,164,3,0.14,3.8000000000000003,31.12,23,800,447 +2003,6,11,16,30,234,96,4,0.14,3.3000000000000003,35.910000000000004,22,800,285 +2003,6,11,17,30,11,0,5,0.14,2,43.800000000000004,20,800,11 +2003,6,11,18,30,3,0,7,0.14,1.1,61.36,17,800,3 +2003,6,11,19,30,0,0,8,0.14,0.6000000000000001,73.45,15,800,0 +2003,6,11,20,30,0,0,7,0.14,0.2,75.08,14,800,0 +2003,6,11,21,30,0,0,7,0.14,0.4,84.22,12,800,0 +2003,6,11,22,30,0,0,6,0.14,0.8,86.19,11,800,0 +2003,6,11,23,30,0,0,6,0.14,1.3,82.71000000000001,11,800,0 +2003,6,12,0,30,0,0,5,0.14,1.6,85.86,10,800,0 +2003,6,12,1,30,0,0,5,0.14,1.9000000000000001,82.93,10,800,0 +2003,6,12,2,30,0,0,4,0.14,2.1,85.79,9,800,0 +2003,6,12,3,30,0,0,4,0.14,2.2,83.26,9,800,0 +2003,6,12,4,30,0,0,4,0.14,2.4000000000000004,76.06,10,800,0 +2003,6,12,5,30,42,461,4,0.14,2.6,64.56,13,800,115 +2003,6,12,6,30,68,691,4,0.14,1.3,51.13,17,800,305 +2003,6,12,7,30,86,805,3,0.14,0.4,38.38,20,800,505 +2003,6,12,8,30,100,871,2,0.14,1,30.44,22,800,691 +2003,6,12,9,30,110,908,1,0.14,1.6,27.52,23,800,846 +2003,6,12,10,30,346,617,1,0.14,2.2,25.45,24,800,903 +2003,6,12,11,30,500,255,1,0.14,2.7,23.92,25,800,743 +2003,6,12,12,30,249,17,1,0.14,3.1,24.45,25,800,266 +2003,6,12,13,30,472,118,2,0.14,3,27.02,24,800,580 +2003,6,12,14,30,189,12,2,0.14,2.4000000000000004,30.38,23,800,200 +2003,6,12,15,30,301,53,3,0.14,1.1,36.69,21,800,337 +2003,6,12,16,30,64,0,5,0.14,0.8,48.050000000000004,18,800,64 +2003,6,12,17,30,142,172,6,0.14,1.6,60.1,16,800,202 +2003,6,12,18,30,38,0,7,0.14,2.2,74.17,14,800,38 +2003,6,12,19,30,0,0,8,0.14,2.4000000000000004,87.7,12,800,0 +2003,6,12,20,30,0,0,8,0.14,2.6,87.62,12,800,0 +2003,6,12,21,30,0,0,8,0.14,2.9000000000000004,87.54,12,800,0 +2003,6,12,22,30,0,0,8,0.14,3.2,87.41,12,800,0 +2003,6,12,23,30,0,0,7,0.14,3.3000000000000003,91.83,12,800,0 +2003,6,13,0,30,0,0,7,0.14,3,88.64,12,800,0 +2003,6,13,1,30,0,0,6,0.14,2.2,85.74,11,800,0 +2003,6,13,2,30,0,0,6,0.14,1.2000000000000002,89.73,10,800,0 +2003,6,13,3,30,0,0,6,0.14,0.7000000000000001,88.25,10,800,0 +2003,6,13,4,30,0,0,6,0.14,0.8,87.4,10,800,0 +2003,6,13,5,30,56,125,6,0.14,1.4000000000000001,79.3,12,800,76 +2003,6,13,6,30,121,342,6,0.14,1.7000000000000002,70.46000000000001,14,800,239 +2003,6,13,7,30,152,561,5,0.14,1.6,54.35,17,800,444 +2003,6,13,8,30,307,327,5,0.14,1.7000000000000002,46.1,19,800,529 +2003,6,13,9,30,359,433,5,0.14,2.2,42.95,20,800,710 +2003,6,13,10,30,451,393,5,0.14,2.7,40.68,21,800,807 +2003,6,13,11,30,465,338,5,0.14,2.9000000000000004,41.64,21,800,786 +2003,6,13,12,30,120,4,6,0.14,2.8000000000000003,46.11,20,800,124 +2003,6,13,13,30,258,17,6,0.14,2.3000000000000003,50.96,19,800,274 +2003,6,13,14,30,408,104,7,0.14,1.6,52.21,19,800,494 +2003,6,13,15,30,303,55,7,0.14,1.1,56.34,18,800,341 +2003,6,13,16,30,217,334,7,0.14,0.9,61.050000000000004,17,800,394 +2003,6,13,17,30,132,350,7,0.14,1,66.92,16,800,255 +2003,6,13,18,30,59,71,8,0.14,0.9,75.28,15,800,71 +2003,6,13,19,30,0,0,8,0.14,0.8,87.46000000000001,13,810,0 +2003,6,13,20,30,0,0,8,0.14,0.5,86.75,13,810,0 +2003,6,13,21,30,0,0,8,0.14,0.30000000000000004,91.87,12,810,0 +2003,6,13,22,30,0,0,8,0.14,0.5,95.87,11,810,0 +2003,6,13,23,30,0,0,7,0.14,0.6000000000000001,92.69,11,810,0 +2003,6,14,0,30,0,0,7,0.14,0.7000000000000001,95.26,10,800,0 +2003,6,14,1,30,0,0,6,0.14,0.9,91.07000000000001,10,800,0 +2003,6,14,2,30,0,0,6,0.14,1.3,93.9,9,810,0 +2003,6,14,3,30,0,0,5,0.14,1.9000000000000001,90.35000000000001,9,810,0 +2003,6,14,4,30,0,0,5,0.14,2.8000000000000003,82.09,10,810,0 +2003,6,14,5,30,49,371,5,0.14,3.4000000000000004,73.86,12,810,108 +2003,6,14,6,30,82,615,6,0.14,3.3000000000000003,62.71,15,810,292 +2003,6,14,7,30,103,746,5,0.14,3.1,49.34,18,810,490 +2003,6,14,8,30,117,821,4,0.14,2.8000000000000003,38.5,21,810,675 +2003,6,14,9,30,127,867,4,0.14,2.7,35.64,22,810,829 +2003,6,14,10,30,140,882,4,0.14,2.8000000000000003,33.56,23,810,936 +2003,6,14,11,30,495,270,4,0.14,2.9000000000000004,31.900000000000002,24,810,752 +2003,6,14,12,30,474,467,4,0.14,2.9000000000000004,30.55,25,810,918 +2003,6,14,13,30,257,17,4,0.14,2.9000000000000004,32.92,24,810,273 +2003,6,14,14,30,323,28,5,0.14,2.8000000000000003,33.04,24,810,347 +2003,6,14,15,30,246,538,5,0.14,2.7,35.36,23,810,616 +2003,6,14,16,30,239,168,5,0.14,2.5,37.88,22,810,328 +2003,6,14,17,30,85,609,5,0.14,2.2,41.31,21,810,298 +2003,6,14,18,30,51,382,7,0.14,1.7000000000000002,57.47,18,810,115 +2003,6,14,19,30,0,0,7,0.14,1.5,64.85,16,810,0 +2003,6,14,20,30,0,0,7,0.14,1.5,67.87,15,810,0 +2003,6,14,21,30,0,0,7,0.14,1.3,71.65,14,810,0 +2003,6,14,22,30,0,0,6,0.14,1.3,74.08,13,810,0 +2003,6,14,23,30,0,0,5,0.14,1.3,75.05,12,810,0 +2003,6,15,0,30,0,0,4,0.14,1.3,75.59,12,810,0 +2003,6,15,1,30,0,0,4,0.14,1.3,71.3,11,810,0 +2003,6,15,2,30,0,0,3,0.14,1.4000000000000001,72.16,10,810,0 +2003,6,15,3,30,0,0,2,0.14,1.5,68.22,10,810,0 +2003,6,15,4,30,0,0,1,0.14,1.7000000000000002,60.38,11,810,0 +2003,6,15,5,30,43,447,2,0.14,2.4000000000000004,52.480000000000004,14,810,114 +2003,6,15,6,30,68,693,2,0.14,2.1,36.87,19,810,305 +2003,6,15,7,30,84,814,1,0.14,1.2000000000000002,28.67,22,810,507 +2003,6,15,8,30,100,871,1,0.14,1.3,23.45,25,810,691 +2003,6,15,9,30,109,910,1,0.14,1.7000000000000002,22.45,26,810,846 +2003,6,15,10,30,116,931,1,0.14,2,21.62,27,810,956 +2003,6,15,11,30,108,956,1,0.14,2.4000000000000004,20.77,28,810,1018 +2003,6,15,12,30,112,948,2,0.14,2.7,19.89,29,810,1016 +2003,6,15,13,30,115,927,2,0.14,3,20.18,29,810,956 +2003,6,15,14,30,316,568,2,0.14,3.1,21.61,28,810,780 +2003,6,15,15,30,335,177,2,0.14,3.2,23.2,27,810,457 +2003,6,15,16,30,38,0,2,0.14,3,24.95,26,810,38 +2003,6,15,17,30,26,0,3,0.14,2.3000000000000003,31.48,24,810,26 +2003,6,15,18,30,39,0,6,0.14,1.6,48.27,20,810,39 +2003,6,15,19,30,0,0,7,0.14,1.4000000000000001,60.84,17,810,0 +2003,6,15,20,30,0,0,7,0.14,1.4000000000000001,67.78,15,810,0 +2003,6,15,21,30,0,0,7,0.14,1.8,67.07000000000001,15,810,0 +2003,6,15,22,30,0,0,6,0.14,2.3000000000000003,70.72,14,810,0 +2003,6,15,23,30,0,0,6,0.14,2.6,70.3,14,810,0 +2003,6,16,0,30,0,0,6,0.14,2.6,74.38,13,810,0 +2003,6,16,1,30,0,0,6,0.14,2.2,73.43,13,810,0 +2003,6,16,2,30,0,0,6,0.14,1.7000000000000002,72.62,13,810,0 +2003,6,16,3,30,0,0,6,0.14,1.2000000000000002,71.58,13,810,0 +2003,6,16,4,30,0,0,5,0.14,1.5,70.09,13,810,0 +2003,6,16,5,30,46,344,6,0.14,2.1,63.03,15,810,100 +2003,6,16,6,30,117,12,7,0.14,2.4000000000000004,55.31,18,810,121 +2003,6,16,7,30,221,289,6,0.14,2,46.01,20,810,371 +2003,6,16,8,30,242,536,6,0.14,1.4000000000000001,40.21,22,810,605 +2003,6,16,9,30,168,793,6,0.14,1.4000000000000001,35.78,24,810,810 +2003,6,16,10,30,171,831,6,0.14,1.8,34.01,25,810,921 +2003,6,16,11,30,499,110,6,0.14,2.3000000000000003,32.5,26,810,604 +2003,6,16,12,30,278,18,6,0.14,2.6,33.11,26,810,295 +2003,6,16,13,30,294,19,7,0.14,2.8000000000000003,34.04,26,810,311 +2003,6,16,14,30,394,75,7,0.14,3,36.9,25,810,456 +2003,6,16,15,30,215,14,7,0.14,3,40.01,24,810,225 +2003,6,16,16,30,136,2,8,0.14,2.8000000000000003,44.08,23,810,138 +2003,6,16,17,30,129,26,9,0.14,2.3000000000000003,52.980000000000004,21,810,139 +2003,6,16,18,30,26,0,10,0.14,1.9000000000000001,66.84,19,810,26 +2003,6,16,19,30,0,0,11,0.14,2.5,80.05,17,810,0 +2003,6,16,20,30,0,0,12,0.14,3.2,93.96000000000001,15,810,0 +2003,6,16,21,30,0,0,12,0.14,2.8000000000000003,94.43,15,810,0 +2003,6,16,22,30,0,0,11,0.14,1.8,98.35000000000001,14,810,0 +2003,6,16,23,30,0,0,11,0.14,1.3,95.16,14,810,0 +2003,6,17,0,30,0,0,10,0.14,1.3,98.73,13,810,0 +2003,6,17,1,30,0,0,9,0.14,1.1,100,12,810,0 +2003,6,17,2,30,0,0,9,0.14,0.8,97.58,12,810,0 +2003,6,17,3,30,0,0,9,0.14,0.7000000000000001,100,11,810,0 +2003,6,17,4,30,0,0,8,0.14,1.2000000000000002,92.32000000000001,12,810,0 +2003,6,17,5,30,42,404,8,0.14,2,81.60000000000001,14,810,105 +2003,6,17,6,30,113,452,8,0.14,2,70.48,16,810,268 +2003,6,17,7,30,107,735,6,0.14,1.7000000000000002,50.17,19,810,489 +2003,6,17,8,30,130,796,5,0.14,1.9000000000000001,41.9,21,810,670 +2003,6,17,9,30,139,845,5,0.14,2.7,37.15,23,810,823 +2003,6,17,10,30,433,386,6,0.14,3.4000000000000004,35.85,24,810,781 +2003,6,17,11,30,498,255,6,0.14,3.9000000000000004,35.18,25,810,742 +2003,6,17,12,30,160,11,7,0.14,4.1000000000000005,39.21,24,810,171 +2003,6,17,13,30,72,0,8,0.14,4.3,44.14,23,810,72 +2003,6,17,14,30,63,0,9,0.14,4.1000000000000005,53.120000000000005,21,810,63 +2003,6,17,15,30,256,25,10,0.14,3.7,59.56,20,810,274 +2003,6,17,16,30,185,18,10,0.14,3.3000000000000003,70.19,18,810,195 +2003,6,17,17,30,53,0,10,0.133,2.8000000000000003,81.94,16,810,53 +2003,6,17,18,30,45,0,11,0.133,2.2,89.95,15,810,45 +2003,6,17,19,30,0,0,11,0.133,1.7000000000000002,98.88,14,810,0 +2003,6,17,20,30,0,0,11,0.133,1.3,99.89,14,810,0 +2003,6,17,21,30,0,0,11,0.133,0.7000000000000001,100,13,810,0 +2003,6,17,22,30,0,0,11,0.133,0.30000000000000004,100,13,810,0 +2003,6,17,23,30,0,0,9,0.133,0.30000000000000004,100,13,810,0 +2003,6,18,0,30,0,0,9,0.133,0.5,100,12,810,0 +2003,6,18,1,30,0,0,9,0.133,0.6000000000000001,100,12,810,0 +2003,6,18,2,30,0,0,9,0.133,0.8,100,12,810,0 +2003,6,18,3,30,0,0,9,0.133,0.9,100,11,810,0 +2003,6,18,4,30,0,0,9,0.133,1.1,100,11,810,0 +2003,6,18,5,30,5,0,9,0.133,1.4000000000000001,100,12,810,5 +2003,6,18,6,30,107,0,10,0.133,1.7000000000000002,99.7,13,810,107 +2003,6,18,7,30,175,14,10,0.133,2,87.61,15,810,183 +2003,6,18,8,30,210,14,10,0.133,2.2,73.37,18,810,220 +2003,6,18,9,30,284,20,9,0.133,2.5,64.74,19,810,301 +2003,6,18,10,30,321,21,9,0.133,2.8000000000000003,59.31,20,810,341 +2003,6,18,11,30,507,139,8,0.133,3.1,55.52,20,810,640 +2003,6,18,12,30,280,18,9,0.133,3.2,55.75,20,810,297 +2003,6,18,13,30,390,35,9,0.133,3.1,56.01,20,810,423 +2003,6,18,14,30,385,63,9,0.133,3,60.4,19,810,438 +2003,6,18,15,30,257,24,9,0.133,2.9000000000000004,65.43,18,810,274 +2003,6,18,16,30,197,25,9,0.133,2.8000000000000003,70.61,17,810,210 +2003,6,18,17,30,140,57,9,0.133,2.2,76.28,16,810,160 +2003,6,18,18,30,40,0,10,0.133,1.5,85.31,15,810,40 +2003,6,18,19,30,0,0,10,0.133,1.2000000000000002,92.23,14,810,0 +2003,6,18,20,30,0,0,10,0.133,1.4000000000000001,97.68,13,810,0 +2003,6,18,21,30,0,0,10,0.133,1.2000000000000002,96.94,13,810,0 +2003,6,18,22,30,0,0,9,0.133,1.1,100,12,810,0 +2003,6,18,23,30,0,0,9,0.133,0.9,100,11,810,0 +2003,6,19,0,30,0,0,9,0.133,0.7000000000000001,100,11,810,0 +2003,6,19,1,30,0,0,8,0.133,0.5,100,10,810,0 +2003,6,19,2,30,0,0,8,0.133,0.4,100,10,800,0 +2003,6,19,3,30,0,0,8,0.133,0.7000000000000001,100,10,800,0 +2003,6,19,4,30,0,0,8,0.133,1.3,100,10,800,0 +2003,6,19,5,30,53,198,8,0.133,1.6,88.73,12,810,84 +2003,6,19,6,30,123,320,8,0.133,1,69.37,16,810,232 +2003,6,19,7,30,205,367,8,0.133,1.1,56.410000000000004,19,800,395 +2003,6,19,8,30,276,412,8,0.133,1.8,52.04,20,800,555 +2003,6,19,9,30,356,396,8,0.133,2.2,48.96,21,800,676 +2003,6,19,10,30,167,11,8,0.133,2.6,46.27,22,800,177 +2003,6,19,11,30,504,232,8,0.133,3,47.09,22,800,725 +2003,6,19,12,30,176,13,8,0.133,3.3000000000000003,48.9,22,800,188 +2003,6,19,13,30,98,0,9,0.133,3.4000000000000004,54.44,21,800,98 +2003,6,19,14,30,411,251,10,0.133,3.4000000000000004,59.92,20,800,617 +2003,6,19,15,30,278,424,10,0.133,3.5,60.76,20,800,571 +2003,6,19,16,30,236,239,10,0.133,3.4000000000000004,65.08,19,800,364 +2003,6,19,17,30,112,441,10,0.133,2.6,74.92,17,800,269 +2003,6,19,18,30,66,252,11,0.133,1.7000000000000002,82.82000000000001,16,800,109 +2003,6,19,19,30,0,0,10,0.133,1.4000000000000001,93.36,14,800,0 +2003,6,19,20,30,0,0,10,0.133,1.5,90.04,14,800,0 +2003,6,19,21,30,0,0,9,0.133,1.6,92.83,13,800,0 +2003,6,19,22,30,0,0,9,0.133,1.6,90.07000000000001,13,800,0 +2003,6,19,23,30,0,0,9,0.133,1.5,88.11,13,800,0 +2003,6,20,0,30,0,0,8,0.133,1.4000000000000001,92.75,12,800,0 +2003,6,20,1,30,0,0,8,0.133,1.2000000000000002,97.78,11,800,0 +2003,6,20,2,30,0,0,8,0.133,1.2000000000000002,95.7,11,800,0 +2003,6,20,3,30,0,0,7,0.133,1.5,93.27,11,800,0 +2003,6,20,4,30,0,0,7,0.133,2,91.09,11,800,0 +2003,6,20,5,30,49,270,7,0.133,2.3000000000000003,79.91,13,800,92 +2003,6,20,6,30,136,190,7,0.133,2.2,66.13,16,800,201 +2003,6,20,7,30,96,753,6,0.133,2,50.19,19,800,486 +2003,6,20,8,30,247,520,5,0.133,1.4000000000000001,38.25,22,800,599 +2003,6,20,9,30,134,854,4,0.133,0.7000000000000001,32.09,24,800,825 +2003,6,20,10,30,288,19,3,0.133,0.8,28.85,25,800,305 +2003,6,20,11,30,158,11,3,0.133,1.7000000000000002,28.150000000000002,25,800,168 +2003,6,20,12,30,339,22,3,0.133,2.3000000000000003,30.03,24,800,360 +2003,6,20,13,30,386,34,3,0.133,2.5,31.89,23,800,417 +2003,6,20,14,30,420,198,3,0.133,2.7,33.480000000000004,22,800,582 +2003,6,20,15,30,173,9,3,0.133,2.9000000000000004,36.800000000000004,21,800,180 +2003,6,20,16,30,158,563,5,0.133,2.8000000000000003,45.2,19,800,458 +2003,6,20,17,30,122,383,6,0.133,2.3000000000000003,51.76,18,800,259 +2003,6,20,18,30,64,292,7,0.133,1.6,67.39,15,800,115 +2003,6,20,19,30,0,0,7,0.133,1.3,80.28,13,800,0 +2003,6,20,20,30,0,0,7,0.133,1.3,88.34,11,800,0 +2003,6,20,21,30,0,0,6,0.133,1.4000000000000001,84.83,11,800,0 +2003,6,20,22,30,0,0,5,0.133,1.4000000000000001,86.49,10,800,0 +2003,6,20,23,30,0,0,4,0.133,1.5,86.63,10,800,0 +2003,6,21,0,30,0,0,3,0.133,1.6,78.56,9,800,0 +2003,6,21,1,30,0,0,1,0.133,1.7000000000000002,74.53,8,800,0 +2003,6,21,2,30,0,0,0,0.133,1.9000000000000001,66.08,8,800,0 +2003,6,21,3,30,0,0,-1,0.133,2.1,60.07,8,800,0 +2003,6,21,4,30,0,0,-1,0.133,2.7,53.14,9,800,0 +2003,6,21,5,30,51,344,-1,0.133,3.4000000000000004,41.730000000000004,13,800,105 +2003,6,21,6,30,85,606,0,0.133,3.4000000000000004,33.9,17,800,291 +2003,6,21,7,30,104,750,0,0.133,3.1,30.62,20,800,492 +2003,6,21,8,30,118,828,0,0.133,2.8000000000000003,28.05,22,800,678 +2003,6,21,9,30,126,876,1,0.133,2.4000000000000004,27.02,23,800,834 +2003,6,21,10,30,133,899,1,0.133,2,25.98,24,800,944 +2003,6,21,11,30,500,253,1,0.133,1.7000000000000002,24.82,25,800,742 +2003,6,21,12,30,298,19,1,0.133,1.2000000000000002,23.62,26,800,317 +2003,6,21,13,30,432,356,2,0.133,0.7000000000000001,23.73,26,800,756 +2003,6,21,14,30,371,431,1,0.133,0.30000000000000004,23.650000000000002,26,800,725 +2003,6,21,15,30,224,609,1,0.133,0.4,23.67,26,800,645 +2003,6,21,16,30,191,20,2,0.133,1,25.22,25,800,202 +2003,6,21,17,30,68,671,2,0.133,1.3,32.31,22,800,307 +2003,6,21,18,30,58,228,5,0.133,1.3,47.79,19,800,98 +2003,6,21,19,30,0,0,5,0.133,1,56.76,16,800,0 +2003,6,21,20,30,0,0,4,0.133,0.8,57.71,15,800,0 +2003,6,21,21,30,0,0,4,0.133,1,59.120000000000005,14,800,0 +2003,6,21,22,30,0,0,3,0.133,1.4000000000000001,65.22,12,800,0 +2003,6,21,23,30,0,0,3,0.133,1.5,66.19,11,800,0 +2003,6,22,0,30,0,0,2,0.133,1.5,67.45,10,800,0 +2003,6,22,1,30,0,0,1,0.133,1.3,69.71000000000001,9,800,0 +2003,6,22,2,30,0,0,1,0.133,1.1,68.12,9,800,0 +2003,6,22,3,30,0,0,1,0.133,0.9,71.4,8,800,0 +2003,6,22,4,30,0,0,0,0.133,0.9,65.41,9,800,0 +2003,6,22,5,30,44,419,1,0.133,0.8,56.5,12,800,109 +2003,6,22,6,30,72,663,1,0.133,1,46.33,15,800,296 +2003,6,22,7,30,90,784,2,0.133,1.3,40.87,18,800,495 +2003,6,22,8,30,103,855,3,0.133,1.4000000000000001,37.24,20,800,681 +2003,6,22,9,30,112,895,3,0.133,1.8,33.1,22,800,836 +2003,6,22,10,30,120,916,3,0.133,2.4000000000000004,31.220000000000002,23,800,946 +2003,6,22,11,30,122,928,3,0.133,2.9000000000000004,29.310000000000002,24,800,1005 +2003,6,22,12,30,127,919,3,0.133,3.3000000000000003,27.18,25,800,1004 +2003,6,22,13,30,130,898,2,0.133,3.7,25.1,26,800,947 +2003,6,22,14,30,421,152,2,0.133,3.9000000000000004,24.67,26,800,546 +2003,6,22,15,30,312,346,2,0.133,4,26.16,25,800,551 +2003,6,22,16,30,181,486,2,0.133,3.8000000000000003,28.42,24,800,440 +2003,6,22,17,30,142,60,3,0.133,3.3000000000000003,36.050000000000004,22,800,163 +2003,6,22,18,30,8,0,5,0.133,2.7,49.84,19,800,8 +2003,6,22,19,30,0,0,6,0.133,2.3000000000000003,59.410000000000004,16,800,0 +2003,6,22,20,30,0,0,5,0.133,1.9000000000000001,66.69,14,800,0 +2003,6,22,21,30,0,0,6,0.133,1.5,71.45,13,800,0 +2003,6,22,22,30,0,0,5,0.133,1.5,75.77,12,800,0 +2003,6,22,23,30,0,0,5,0.133,1.5,80.25,11,800,0 +2003,6,23,0,30,0,0,5,0.133,1.5,79.66,11,800,0 +2003,6,23,1,30,0,0,5,0.133,1.4000000000000001,85.39,10,800,0 +2003,6,23,2,30,0,0,5,0.133,1.4000000000000001,92.22,9,800,0 +2003,6,23,3,30,0,0,6,0.133,1.2000000000000002,100,8,800,0 +2003,6,23,4,30,0,0,6,0.133,1.6,94.39,9,800,0 +2003,6,23,5,30,48,369,6,0.133,1.7000000000000002,86.77,11,800,105 +2003,6,23,6,30,81,619,7,0.133,1.2000000000000002,73.19,14,800,290 +2003,6,23,7,30,99,758,6,0.133,1.6,56.46,17,800,490 +2003,6,23,8,30,117,827,5,0.133,2.3000000000000003,45.910000000000004,19,800,676 +2003,6,23,9,30,124,879,4,0.133,3,38.49,21,800,833 +2003,6,23,10,30,124,914,4,0.133,3.7,35.050000000000004,22,800,948 +2003,6,23,11,30,496,270,3,0.133,4.1000000000000005,30.560000000000002,24,800,753 +2003,6,23,12,30,485,359,3,0.133,4.3,27.96,25,800,828 +2003,6,23,13,30,378,408,2,0.133,4.5,24.89,26,800,750 +2003,6,23,14,30,422,166,1,0.133,4.6000000000000005,23.44,26,800,559 +2003,6,23,15,30,320,74,1,0.133,4.5,23.86,25,800,372 +2003,6,23,16,30,234,73,1,0.133,4.1000000000000005,25.41,24,800,273 +2003,6,23,17,30,132,319,2,0.133,3.6,32.81,21,800,247 +2003,6,23,18,30,51,423,4,0.133,3.6,47.27,18,800,125 +2003,6,23,19,30,0,0,6,0.133,3.9000000000000004,62.9,15,800,0 +2003,6,23,20,30,0,0,6,0.133,4,74.87,13,800,0 +2003,6,23,21,30,0,0,6,0.133,3.4000000000000004,81.5,12,800,0 +2003,6,23,22,30,0,0,6,0.133,2.4000000000000004,86.52,11,800,0 +2003,6,23,23,30,0,0,6,0.133,1.7000000000000002,90.95,10,800,0 +2003,6,24,0,30,0,0,6,0.133,1.5,90.09,10,800,0 +2003,6,24,1,30,0,0,6,0.133,1.4000000000000001,96.7,9,800,0 +2003,6,24,2,30,0,0,6,0.133,1.3,100,8,800,0 +2003,6,24,3,30,0,0,5,0.133,1.2000000000000002,98.44,8,800,0 +2003,6,24,4,30,0,0,4,0.133,1.2000000000000002,86.18,9,800,0 +2003,6,24,5,30,24,0,4,0.133,1.3,75.39,11,800,24 +2003,6,24,6,30,85,0,5,0.133,1.5,62.59,14,800,85 +2003,6,24,7,30,80,0,4,0.133,2,49.550000000000004,17,800,80 +2003,6,24,8,30,120,2,3,0.133,2.6,41.27,19,800,122 +2003,6,24,9,30,138,7,3,0.133,3.1,37.54,20,800,144 +2003,6,24,10,30,139,8,2,0.133,3.6,32.24,22,800,146 +2003,6,24,11,30,319,20,2,0.133,3.9000000000000004,29.400000000000002,23,800,338 +2003,6,24,12,30,182,14,2,0.133,4,26.89,24,800,196 +2003,6,24,13,30,151,12,1,0.133,3.8000000000000003,25.14,25,800,162 +2003,6,24,14,30,254,19,2,0.133,3.7,27.23,24,800,270 +2003,6,24,15,30,304,51,2,0.133,4.4,32.45,22,800,340 +2003,6,24,16,30,63,0,4,0.133,5.7,42.54,19,800,63 +2003,6,24,17,30,78,0,5,0.133,6.2,56.83,16,800,78 +2003,6,24,18,30,4,0,6,0.133,5.300000000000001,72.12,14,800,4 +2003,6,24,19,30,0,0,6,0.133,4.2,81.94,12,800,0 +2003,6,24,20,30,0,0,5,0.133,3.4000000000000004,85.8,10,800,0 +2003,6,24,21,30,0,0,5,0.133,2.7,89.66,9,800,0 +2003,6,24,22,30,0,0,5,0.133,2.2,93.62,8,800,0 +2003,6,24,23,30,0,0,4,0.133,2,97.66,7,800,0 +2003,6,25,0,30,0,0,4,0.133,1.8,100,6,800,0 +2003,6,25,1,30,0,0,2,0.133,1.5,100,5,810,0 +2003,6,25,2,30,0,0,2,0.133,1.2000000000000002,99.92,5,810,0 +2003,6,25,3,30,0,0,2,0.133,1,96.24000000000001,5,810,0 +2003,6,25,4,30,0,0,2,0.133,0.9,87.07000000000001,6,810,0 +2003,6,25,5,30,41,389,2,0.133,0.8,77.2,8,810,100 +2003,6,25,6,30,84,609,2,0.133,0.7000000000000001,68.33,10,810,289 +2003,6,25,7,30,50,0,1,0.133,0.9,53.47,13,810,50 +2003,6,25,8,30,275,36,1,0.133,1.2000000000000002,44.26,15,810,300 +2003,6,25,9,30,242,16,0,0.133,1.5,37.9,17,810,255 +2003,6,25,10,30,191,13,0,0.133,1.9000000000000001,35.300000000000004,18,810,204 +2003,6,25,11,30,500,114,0,0.133,2.4000000000000004,33.4,19,810,609 +2003,6,25,12,30,482,179,0,0.133,2.9000000000000004,33.76,19,810,653 +2003,6,25,13,30,479,197,1,0.133,3.1,31.91,20,810,659 +2003,6,25,14,30,370,49,0,0.133,3,31.88,20,810,411 +2003,6,25,15,30,306,54,0,0.133,2.7,33.910000000000004,19,810,344 +2003,6,25,16,30,156,6,0,0.133,2.4000000000000004,36.04,18,810,159 +2003,6,25,17,30,32,0,1,0.134,2.2,38.74,17,810,32 +2003,6,25,18,30,60,348,1,0.134,1.6,49.7,14,810,121 +2003,6,25,19,30,0,0,3,0.134,1.1,68.26,11,810,0 +2003,6,25,20,30,0,0,3,0.134,1,72.08,10,810,0 +2003,6,25,21,30,0,0,3,0.134,0.8,76.21000000000001,9,810,0 +2003,6,25,22,30,0,0,2,0.134,0.8,75.46000000000001,9,810,0 +2003,6,25,23,30,0,0,2,0.134,0.9,79.89,8,810,0 +2003,6,26,0,30,0,0,2,0.134,1,84.64,7,810,0 +2003,6,26,1,30,0,0,2,0.134,1,83.71000000000001,7,810,0 +2003,6,26,2,30,0,0,2,0.134,0.9,88.38,6,810,0 +2003,6,26,3,30,0,0,1,0.134,0.8,86.77,6,810,0 +2003,6,26,4,30,0,0,1,0.134,1.1,78.93,7,810,0 +2003,6,26,5,30,42,435,1,0.134,1.6,65.18,10,810,108 +2003,6,26,6,30,68,685,1,0.134,1.9000000000000001,52.4,13,810,297 +2003,6,26,7,30,84,811,0,0.134,2.3000000000000003,40.910000000000004,16,810,500 +2003,6,26,8,30,91,893,0,0.134,2.5,33.89,18,810,692 +2003,6,26,9,30,97,936,0,0.134,2.5,28.330000000000002,20,810,851 +2003,6,26,10,30,101,960,-1,0.134,2.5,25.62,21,810,965 +2003,6,26,11,30,97,979,-1,0.134,2.7,23.51,22,810,1028 +2003,6,26,12,30,96,980,-1,0.134,3,21.86,23,810,1031 +2003,6,26,13,30,93,970,-1,0.134,3.2,20.46,24,810,976 +2003,6,26,14,30,88,949,-1,0.134,3.3000000000000003,20.47,24,810,867 +2003,6,26,15,30,83,911,-1,0.134,3.3000000000000003,22.03,23,810,714 +2003,6,26,16,30,74,849,-1,0.134,3.1,23.57,22,810,529 +2003,6,26,17,30,72,695,0,0.134,2.5,27.67,20,810,321 +2003,6,26,18,30,47,467,2,0.134,1.6,41.6,17,810,129 +2003,6,26,19,30,0,0,2,0.134,1.2000000000000002,52.56,14,810,0 +2003,6,26,20,30,0,0,1,0.134,1.1,53.46,13,810,0 +2003,6,26,21,30,0,0,1,0.134,1.1,55.730000000000004,12,810,0 +2003,6,26,22,30,0,0,1,0.134,1.1,58.51,11,810,0 +2003,6,26,23,30,0,0,1,0.134,1.1,61.730000000000004,10,810,0 +2003,6,27,0,30,0,0,1,0.134,1.2000000000000002,65.78,9,810,0 +2003,6,27,1,30,0,0,0,0.134,1.2000000000000002,65.5,9,810,0 +2003,6,27,2,30,0,0,0,0.134,1.2000000000000002,69.2,8,810,0 +2003,6,27,3,30,0,0,0,0.134,1.5,66.79,8,810,0 +2003,6,27,4,30,0,0,0,0.134,2.2,59.94,9,810,0 +2003,6,27,5,30,37,494,0,0.134,3,51.64,12,810,112 +2003,6,27,6,30,105,429,0,0.134,3,39.19,16,810,248 +2003,6,27,7,30,140,592,0,0.134,2.4000000000000004,28.7,20,810,443 +2003,6,27,8,30,83,908,0,0.134,2,25.38,22,810,694 +2003,6,27,9,30,89,947,0,0.134,1.9000000000000001,24.09,23,810,851 +2003,6,27,10,30,416,490,0,0.134,2,21.490000000000002,25,810,858 +2003,6,27,11,30,93,978,0,0.134,2.1,20.54,26,810,1023 +2003,6,27,12,30,94,976,0,0.134,2.1,19.7,27,810,1025 +2003,6,27,13,30,94,963,0,0.134,2,19.94,27,810,970 +2003,6,27,14,30,87,945,0,0.134,1.9000000000000001,20.150000000000002,27,810,863 +2003,6,27,15,30,200,663,0,0.134,1.8,20.32,27,800,660 +2003,6,27,16,30,243,178,0,0.134,1.6,21.580000000000002,26,800,339 +2003,6,27,17,30,125,371,1,0.134,1.1,26.75,23,810,259 +2003,6,27,18,30,44,494,5,0.134,0.7000000000000001,42.93,20,810,131 +2003,6,27,19,30,0,0,4,0.134,0.4,50.7,17,810,0 +2003,6,27,20,30,0,0,3,0.134,0.2,50.76,16,810,0 +2003,6,27,21,30,0,0,3,0.134,0.4,51.82,15,810,0 +2003,6,27,22,30,0,0,2,0.134,0.7000000000000001,53.18,14,810,0 +2003,6,27,23,30,0,0,2,0.134,1,54.93,13,810,0 +2003,6,28,0,30,0,0,1,0.134,1.1,53.120000000000005,13,810,0 +2003,6,28,1,30,0,0,1,0.134,1.1,56.07,12,810,0 +2003,6,28,2,30,0,0,1,0.134,1.2000000000000002,60.61,11,810,0 +2003,6,28,3,30,0,0,1,0.134,1.2000000000000002,65.58,10,810,0 +2003,6,28,4,30,0,0,1,0.134,1.3,61.38,11,810,0 +2003,6,28,5,30,37,482,3,0.134,1.8,57.88,14,810,109 +2003,6,28,6,30,59,718,4,0.134,1.7000000000000002,46.03,18,810,298 +2003,6,28,7,30,74,833,2,0.134,1.1,30.77,22,810,499 +2003,6,28,8,30,83,900,1,0.134,1.2000000000000002,23.5,25,810,687 +2003,6,28,9,30,89,939,0,0.134,1.5,20.67,27,810,844 +2003,6,28,10,30,94,960,0,0.134,1.6,19.48,28,810,957 +2003,6,28,11,30,92,976,0,0.134,1.9000000000000001,18.43,29,810,1018 +2003,6,28,12,30,93,972,1,0.134,2.4000000000000004,17.48,30,800,1020 +2003,6,28,13,30,378,569,1,0.134,3,17.66,30,800,895 +2003,6,28,14,30,274,615,1,0.134,3.5,17.82,30,800,779 +2003,6,28,15,30,270,455,1,0.134,3.5,19.01,29,800,585 +2003,6,28,16,30,96,0,1,0.134,3,22.21,27,810,96 +2003,6,28,17,30,35,0,3,0.134,2.7,29.82,24,810,35 +2003,6,28,18,30,3,0,6,0.134,2.5,45.49,21,810,3 +2003,6,28,19,30,0,0,8,0.134,2.4000000000000004,59.980000000000004,18,810,0 +2003,6,28,20,30,0,0,9,0.134,2.1,71.98,16,810,0 +2003,6,28,21,30,0,0,9,0.134,1.5,77.97,15,810,0 +2003,6,28,22,30,0,0,9,0.134,0.9,77.46000000000001,15,810,0 +2003,6,28,23,30,0,0,8,0.134,1,75.85000000000001,15,810,0 +2003,6,29,0,30,0,0,8,0.134,1.4000000000000001,80.41,14,810,0 +2003,6,29,1,30,0,0,9,0.134,1,95.74000000000001,12,810,0 +2003,6,29,2,30,0,0,9,0.134,0.6000000000000001,100,11,810,0 +2003,6,29,3,30,0,0,9,0.134,0.6000000000000001,100,11,810,0 +2003,6,29,4,30,0,0,9,0.134,0.8,100,11,810,0 +2003,6,29,5,30,52,121,10,0.134,0.9,96.26,13,810,70 +2003,6,29,6,30,83,602,10,0.134,0.9,80.53,16,810,283 +2003,6,29,7,30,174,15,8,0.134,1.2000000000000002,57.74,19,810,182 +2003,6,29,8,30,143,5,5,0.134,1.8,39.2,22,810,147 +2003,6,29,9,30,174,11,4,0.134,2.4000000000000004,31.87,24,810,183 +2003,6,29,10,30,182,13,3,0.134,3,28.48,25,810,194 +2003,6,29,11,30,332,26,3,0.134,3.6,25.92,26,810,357 +2003,6,29,12,30,462,484,2,0.134,4.2,23.94,27,810,924 +2003,6,29,13,30,386,554,3,0.134,4.6000000000000005,24.1,27,810,890 +2003,6,29,14,30,378,352,3,0.134,4.6000000000000005,26.29,26,810,668 +2003,6,29,15,30,330,256,3,0.134,4.3,28.91,25,810,507 +2003,6,29,16,30,165,537,4,0.134,3.8000000000000003,31.59,24,810,453 +2003,6,29,17,30,143,226,4,0.134,2.9000000000000004,36.96,22,810,225 +2003,6,29,18,30,59,228,6,0.134,1.9000000000000001,50.22,19,810,99 +2003,6,29,19,30,0,0,7,0.134,1.4000000000000001,66.3,16,810,0 +2003,6,29,20,30,0,0,7,0.134,1.4000000000000001,70.85000000000001,15,810,0 +2003,6,29,21,30,0,0,7,0.134,1.3,75.67,14,810,0 +2003,6,29,22,30,0,0,7,0.134,1.3,80.19,13,810,0 +2003,6,29,23,30,0,0,7,0.134,1.4000000000000001,85,12,810,0 +2003,6,30,0,30,0,0,7,0.134,1.5,89.93,11,810,0 +2003,6,30,1,30,0,0,7,0.134,1.6,88.3,11,810,0 +2003,6,30,2,30,0,0,6,0.134,1.9000000000000001,91.81,10,810,0 +2003,6,30,3,30,0,0,6,0.134,2.3000000000000003,87.88,10,810,0 +2003,6,30,4,30,0,0,5,0.134,2.8000000000000003,77.35000000000001,11,810,0 +2003,6,30,5,30,38,465,4,0.134,3.1,60.83,14,810,107 +2003,6,30,6,30,62,707,4,0.134,2.7,46.01,18,810,296 +2003,6,30,7,30,78,823,3,0.134,2.3000000000000003,30.88,23,810,497 +2003,6,30,8,30,94,877,1,0.134,2.5,23.2,26,810,681 +2003,6,30,9,30,103,913,1,0.134,2.9000000000000004,20.18,28,810,836 +2003,6,30,10,30,111,931,1,0.134,3.1,19.34,29,810,947 +2003,6,30,11,30,109,948,1,0.134,3.2,18.46,30,810,1009 +2003,6,30,12,30,458,491,1,0.134,3.3000000000000003,17.34,31,810,926 +2003,6,30,13,30,280,676,1,0.134,3.4000000000000004,17.490000000000002,31,810,895 +2003,6,30,14,30,390,330,2,0.134,3.4000000000000004,18.71,30,810,660 +2003,6,30,15,30,238,573,2,0.134,3,20.45,29,810,635 +2003,6,30,16,30,207,401,2,0.134,2.5,22.39,28,810,422 +2003,6,30,17,30,123,385,4,0.134,1.7000000000000002,27.32,26,810,262 +2003,6,30,18,30,64,215,7,0.134,1.1,42.95,23,810,102 +2003,6,30,19,30,0,0,7,0.134,1.2000000000000002,51.660000000000004,20,810,0 +2003,6,30,20,30,0,0,7,0.134,1.5,56.6,18,810,0 +2003,6,30,21,30,0,0,7,0.134,2.3000000000000003,60.93,17,810,0 +2003,6,30,22,30,0,0,7,0.134,2.9000000000000004,60.71,17,810,0 +2003,6,30,23,30,0,0,7,0.134,3,63.84,16,810,0 +2003,7,1,0,30,0,0,6,0.134,3,62.28,16,810,0 +2003,7,1,1,30,0,0,6,0.134,3.3000000000000003,59.46,16,810,0 +2003,7,1,2,30,0,0,5,0.134,3.3000000000000003,60.19,15,810,0 +2003,7,1,3,30,0,0,4,0.134,3.2,57.89,15,810,0 +2003,7,1,4,30,0,0,4,0.134,3.5,52.83,16,810,0 +2003,7,1,5,30,46,349,5,0.134,3.9000000000000004,45.32,20,810,97 +2003,7,1,6,30,87,567,5,0.134,3.4000000000000004,33.56,24,810,274 +2003,7,1,7,30,192,401,3,0.134,2.3000000000000003,23.97,28,810,396 +2003,7,1,8,30,113,831,0,0.134,1.5,17.37,30,810,669 +2003,7,1,9,30,407,203,0,0.134,1.1,16.04,31,810,570 +2003,7,1,10,30,387,36,0,0.134,0.9,15.34,32,810,419 +2003,7,1,11,30,410,35,0,0.134,0.9,14.61,33,810,444 +2003,7,1,12,30,433,448,1,0.134,1,14.67,34,810,860 +2003,7,1,13,30,453,433,1,0.134,1.2000000000000002,13.97,34,800,847 +2003,7,1,14,30,173,12,1,0.134,1.4000000000000001,14.89,33,800,183 +2003,7,1,15,30,332,131,1,0.134,1.6,15.780000000000001,32,800,423 +2003,7,1,16,30,149,5,1,0.134,1.6,16.84,31,800,152 +2003,7,1,17,30,142,242,2,0.134,1.3,20.11,29,800,229 +2003,7,1,18,30,4,0,8,0.134,1.2000000000000002,38.64,25,800,4 +2003,7,1,19,30,0,0,7,0.134,1.5,44.32,22,800,0 +2003,7,1,20,30,0,0,6,0.134,1.8,44.96,21,800,0 +2003,7,1,21,30,0,0,6,0.134,1.8,49.2,19,800,0 +2003,7,1,22,30,0,0,4,0.134,1.9000000000000001,47.96,18,800,0 +2003,7,1,23,30,0,0,3,0.134,2.7,42.19,18,800,0 +2003,7,2,0,30,0,0,1,0.134,3.7,38.730000000000004,17,800,0 +2003,7,2,1,30,0,0,0,0.134,4.2,36.09,16,800,0 +2003,7,2,2,30,0,0,-2,0.134,4.4,32.87,16,800,0 +2003,7,2,3,30,0,0,-2,0.134,4.3,33.86,15,800,0 +2003,7,2,4,30,0,0,-2,0.134,4.2,31.400000000000002,16,800,0 +2003,7,2,5,30,38,483,-2,0.134,4.2,26.89,19,800,107 +2003,7,2,6,30,58,741,-1,0.134,3.8000000000000003,22.11,23,810,301 +2003,7,2,7,30,70,862,-1,0.134,3.3000000000000003,18.22,26,810,506 +2003,7,2,8,30,81,921,-2,0.134,2.9000000000000004,14.21,29,810,696 +2003,7,2,9,30,86,960,-2,0.134,2.2,13.48,30,810,855 +2003,7,2,10,30,90,982,-2,0.134,1.6,12.93,31,810,970 +2003,7,2,11,30,95,987,-2,0.134,1.4000000000000001,12.22,32,800,1031 +2003,7,2,12,30,95,986,-2,0.134,1.6,11.540000000000001,33,800,1034 +2003,7,2,13,30,93,975,-2,0.134,2,10.84,34,800,980 +2003,7,2,14,30,82,966,-2,0.134,2.5,11.39,33,800,874 +2003,7,2,15,30,77,929,-2,0.134,2.8000000000000003,11.99,32,800,721 +2003,7,2,16,30,176,499,-2,0.134,2.8000000000000003,12.66,31,800,444 +2003,7,2,17,30,117,424,-1,0.134,2.1,15.49,29,800,269 +2003,7,2,18,30,44,507,4,0.134,1.4000000000000001,30.73,25,800,133 +2003,7,2,19,30,0,0,4,0.134,1.4000000000000001,35.4,22,800,0 +2003,7,2,20,30,0,0,3,0.134,1.4000000000000001,35.04,21,800,0 +2003,7,2,21,30,0,0,2,0.134,1.5,36.64,20,810,0 +2003,7,2,22,30,0,0,2,0.134,1.5,38.15,19,800,0 +2003,7,2,23,30,0,0,2,0.134,1.5,40.07,18,800,0 +2003,7,3,0,30,0,0,2,0.134,1.5,41.96,17,800,0 +2003,7,3,1,30,0,0,1,0.134,1.5,43.27,16,800,0 +2003,7,3,2,30,0,0,1,0.134,1.6,44.17,15,800,0 +2003,7,3,3,30,0,0,0,0.134,2,43.980000000000004,14,800,0 +2003,7,3,4,30,0,0,-1,0.134,2.9000000000000004,37.96,15,800,0 +2003,7,3,5,30,37,417,-1,0.134,3.9000000000000004,28.35,19,810,96 +2003,7,3,6,30,65,693,-2,0.134,3.8000000000000003,20.95,23,810,292 +2003,7,3,7,30,79,825,-3,0.134,2.9000000000000004,15.42,27,810,496 +2003,7,3,8,30,101,867,-3,0.134,2.3000000000000003,12.09,30,810,680 +2003,7,3,9,30,105,919,-3,0.134,1.7000000000000002,11.92,31,810,841 +2003,7,3,10,30,107,948,-2,0.134,1.3,11.84,32,810,956 +2003,7,3,11,30,498,115,-2,0.134,1.2000000000000002,11.43,33,810,608 +2003,7,3,12,30,508,198,-2,0.134,1.3,11.01,34,800,697 +2003,7,3,13,30,440,63,-1,0.134,1.7000000000000002,11.15,34,800,498 +2003,7,3,14,30,419,205,-1,0.134,2,11.21,34,800,588 +2003,7,3,15,30,320,74,-1,0.134,2.1,11.8,33,800,372 +2003,7,3,16,30,217,360,-2,0.134,1.9000000000000001,12.44,32,800,410 +2003,7,3,17,30,136,336,0,0.14100000000000001,1.3,16.06,29,800,257 +2003,7,3,18,30,59,237,6,0.14100000000000001,0.9,31.43,26,800,100 +2003,7,3,19,30,0,0,5,0.14100000000000001,0.8,36.56,23,800,0 +2003,7,3,20,30,0,0,4,0.14100000000000001,0.8,39.61,21,800,0 +2003,7,3,21,30,0,0,4,0.14100000000000001,1.4000000000000001,42.52,19,800,0 +2003,7,3,22,30,0,0,3,0.14100000000000001,2.5,39.75,19,800,0 +2003,7,3,23,30,0,0,1,0.14100000000000001,3.7,38.24,18,800,0 +2003,7,4,0,30,0,0,0,0.14100000000000001,4.5,34.59,18,800,0 +2003,7,4,1,30,0,0,0,0.14100000000000001,4.6000000000000005,34.58,17,800,0 +2003,7,4,2,30,0,0,-1,0.14100000000000001,4.4,35.56,16,800,0 +2003,7,4,3,30,0,0,-1,0.14100000000000001,4.1000000000000005,37.77,15,810,0 +2003,7,4,4,30,0,0,0,0.14100000000000001,4.3,35.89,16,810,0 +2003,7,4,5,30,33,468,0,0.14100000000000001,4.4,31.810000000000002,19,810,99 +2003,7,4,6,30,58,731,0,0.14100000000000001,4.1000000000000005,25.46,23,810,297 +2003,7,4,7,30,72,851,0,0.14100000000000001,3.6,19.56,26,810,501 +2003,7,4,8,30,84,909,-1,0.14100000000000001,3,14.950000000000001,29,810,689 +2003,7,4,9,30,91,947,-2,0.14100000000000001,2.4000000000000004,13.31,30,810,848 +2003,7,4,10,30,96,968,-2,0.14100000000000001,1.9000000000000001,12.46,31,810,962 +2003,7,4,11,30,97,978,-2,0.14100000000000001,1.6,11.81,32,810,1024 +2003,7,4,12,30,99,976,-2,0.14100000000000001,1.7000000000000002,11.200000000000001,33,810,1028 +2003,7,4,13,30,98,963,-2,0.14100000000000001,1.9000000000000001,10.620000000000001,34,810,973 +2003,7,4,14,30,84,958,-2,0.14100000000000001,2.2,11.31,33,800,870 +2003,7,4,15,30,195,675,-2,0.14100000000000001,2.5,11.950000000000001,32,800,663 +2003,7,4,16,30,219,349,-2,0.14100000000000001,2.7,12.56,31,810,406 +2003,7,4,17,30,141,282,-2,0.14100000000000001,2.3000000000000003,14.63,29,810,242 +2003,7,4,18,30,45,437,3,0.14100000000000001,1.7000000000000002,29.16,24,810,121 +2003,7,4,19,30,0,0,4,0.14100000000000001,1.5,38.6,21,810,0 +2003,7,4,20,30,0,0,3,0.14100000000000001,1.3,39.18,20,810,0 +2003,7,4,21,30,0,0,3,0.14100000000000001,1,40.910000000000004,19,810,0 +2003,7,4,22,30,0,0,3,0.14100000000000001,0.8,43.52,18,810,0 +2003,7,4,23,30,0,0,3,0.14100000000000001,0.9,45.480000000000004,17,810,0 +2003,7,5,0,30,0,0,2,0.14100000000000001,1.3,45.53,16,810,0 +2003,7,5,1,30,0,0,1,0.14100000000000001,1.6,44.27,15,810,0 +2003,7,5,2,30,0,0,0,0.14100000000000001,1.8,44.44,14,810,0 +2003,7,5,3,30,0,0,0,0.14100000000000001,2.1,42.22,14,810,0 +2003,7,5,4,30,0,0,-1,0.14100000000000001,2.6,37,15,810,0 +2003,7,5,5,30,33,463,-1,0.14100000000000001,3.2,28.39,19,810,98 +2003,7,5,6,30,55,749,-1,0.14100000000000001,2.8000000000000003,21.64,23,810,298 +2003,7,5,7,30,68,862,-2,0.14100000000000001,1.8,16.7,26,810,502 +2003,7,5,8,30,77,924,-4,0.14100000000000001,1.1,12.67,29,810,692 +2003,7,5,9,30,84,959,-4,0.14100000000000001,0.6000000000000001,11.28,31,810,850 +2003,7,5,10,30,89,978,-3,0.14100000000000001,0.30000000000000004,11.01,32,810,964 +2003,7,5,11,30,87,993,-3,0.14100000000000001,0.4,10.74,33,810,1027 +2003,7,5,12,30,410,564,-3,0.14100000000000001,0.7000000000000001,10.31,34,810,947 +2003,7,5,13,30,88,979,-2,0.14100000000000001,0.9,10.36,34,800,977 +2003,7,5,14,30,86,957,-3,0.14100000000000001,1.2000000000000002,10.26,34,800,871 +2003,7,5,15,30,241,567,-3,0.14100000000000001,1.4000000000000001,10.620000000000001,33,800,633 +2003,7,5,16,30,135,645,-3,0.14100000000000001,1.5,10.98,32,800,480 +2003,7,5,17,30,133,316,-3,0.14100000000000001,1.3,13.43,29,800,246 +2003,7,5,18,30,57,1,3,0.14100000000000001,1,27.3,25,800,57 +2003,7,5,19,30,0,0,3,0.14100000000000001,0.8,33.55,22,800,0 +2003,7,5,20,30,0,0,3,0.14100000000000001,0.8,37.14,20,810,0 +2003,7,5,21,30,0,0,3,0.14100000000000001,1,42.47,18,810,0 +2003,7,5,22,30,0,0,2,0.14100000000000001,1.4000000000000001,42.15,17,800,0 +2003,7,5,23,30,0,0,0,0.14100000000000001,1.6,40.71,16,800,0 +2003,7,6,0,30,0,0,0,0.14100000000000001,1.7000000000000002,39.32,15,800,0 +2003,7,6,1,30,0,0,-1,0.14100000000000001,1.8,37.02,15,800,0 +2003,7,6,2,30,0,0,-1,0.14100000000000001,1.9000000000000001,38.58,14,800,0 +2003,7,6,3,30,0,0,-1,0.14100000000000001,2,38.19,14,800,0 +2003,7,6,4,30,0,0,-1,0.14100000000000001,2,35.71,15,800,0 +2003,7,6,5,30,39,432,0,0.14100000000000001,2.5,30.18,19,800,98 +2003,7,6,6,30,68,670,-1,0.14100000000000001,2.2,22.47,23,800,284 +2003,7,6,7,30,90,784,-2,0.14100000000000001,1,16.11,27,800,483 +2003,7,6,8,30,100,864,-3,0.14100000000000001,0.8,12.38,30,800,673 +2003,7,6,9,30,346,464,-3,0.14100000000000001,1.2000000000000002,12.200000000000001,31,800,716 +2003,7,6,10,30,469,148,-2,0.14100000000000001,1.6,11.91,32,800,601 +2003,7,6,11,30,498,116,-2,0.14100000000000001,1.8,11.46,33,800,608 +2003,7,6,12,30,480,453,-2,0.14100000000000001,1.9000000000000001,11.540000000000001,33,800,911 +2003,7,6,13,30,479,164,-2,0.14100000000000001,1.8,11.73,33,800,629 +2003,7,6,14,30,312,25,-1,0.14100000000000001,1.8,12.86,32,800,333 +2003,7,6,15,30,17,0,0,0.14100000000000001,2,14.35,31,800,17 +2003,7,6,16,30,201,26,0,0.14100000000000001,1.9000000000000001,16.6,30,800,215 +2003,7,6,17,30,122,389,2,0.14100000000000001,1.6,22.5,27,800,261 +2003,7,6,18,30,57,330,6,0.14100000000000001,1.5,36.77,24,800,115 +2003,7,6,19,30,0,0,7,0.14100000000000001,1.8,44.77,22,800,0 +2003,7,6,20,30,0,0,7,0.14100000000000001,2.3000000000000003,48.67,20,800,0 +2003,7,6,21,30,0,0,6,0.14100000000000001,2.6,49.76,19,800,0 +2003,7,6,22,30,0,0,6,0.14100000000000001,2.4000000000000004,51.800000000000004,18,800,0 +2003,7,6,23,30,0,0,5,0.14100000000000001,1.9000000000000001,54.38,17,800,0 +2003,7,7,0,30,0,0,5,0.14100000000000001,1.5,57.01,16,800,0 +2003,7,7,1,30,0,0,5,0.14100000000000001,1.3,58.95,15,800,0 +2003,7,7,2,30,0,0,4,0.14100000000000001,1.3,59.9,14,800,0 +2003,7,7,3,30,0,0,3,0.14100000000000001,1.5,56.58,14,800,0 +2003,7,7,4,30,0,0,2,0.14100000000000001,1.9000000000000001,49.93,15,800,0 +2003,7,7,5,30,38,430,2,0.14100000000000001,2.4000000000000004,40.550000000000004,18,800,97 +2003,7,7,6,30,64,690,1,0.14100000000000001,2.4000000000000004,30.060000000000002,22,800,285 +2003,7,7,7,30,80,817,1,0.14100000000000001,2.3000000000000003,23.650000000000002,25,800,489 +2003,7,7,8,30,93,882,0,0.14100000000000001,2,19.47,28,800,678 +2003,7,7,9,30,101,925,0,0.14100000000000001,2,16.69,29,800,838 +2003,7,7,10,30,405,503,0,0.14100000000000001,2.3000000000000003,15.620000000000001,30,800,855 +2003,7,7,11,30,408,560,0,0.14100000000000001,2.8000000000000003,14.91,31,800,939 +2003,7,7,12,30,474,462,0,0.14100000000000001,3.4000000000000004,14.3,32,800,914 +2003,7,7,13,30,288,18,0,0.14100000000000001,3.7,14.73,32,800,305 +2003,7,7,14,30,44,0,0,0.14100000000000001,3.3000000000000003,17.18,30,800,44 +2003,7,7,15,30,44,0,1,0.14100000000000001,2.7,19.22,29,800,44 +2003,7,7,16,30,150,5,2,0.14100000000000001,2.5,23.13,27,800,153 +2003,7,7,17,30,90,562,3,0.14100000000000001,2.4000000000000004,28.88,25,800,291 +2003,7,7,18,30,53,378,6,0.14100000000000001,1.6,41.17,22,810,119 +2003,7,7,19,30,0,0,8,0.14100000000000001,0.6000000000000001,59.18,19,810,0 +2003,7,7,20,30,0,0,8,0.14100000000000001,0.30000000000000004,66.61,17,810,0 +2003,7,7,21,30,0,0,8,0.14100000000000001,0.7000000000000001,70.97,16,810,0 +2003,7,7,22,30,0,0,8,0.14100000000000001,1.1,72.77,15,810,0 +2003,7,7,23,30,0,0,7,0.14100000000000001,1.2000000000000002,73.36,15,810,0 +2003,7,8,0,30,0,0,6,0.14100000000000001,1.2000000000000002,68.75,14,810,0 +2003,7,8,1,30,0,0,5,0.14100000000000001,1.5,64.51,14,810,0 +2003,7,8,2,30,0,0,4,0.14100000000000001,2,59.86,14,810,0 +2003,7,8,3,30,0,0,3,0.14100000000000001,2.5,54.26,14,810,0 +2003,7,8,4,30,0,0,1,0.14100000000000001,3,45.77,15,810,0 +2003,7,8,5,30,37,441,0,0.14100000000000001,3.5,35.5,18,810,97 +2003,7,8,6,30,60,714,0,0.14100000000000001,3,25.57,22,810,288 +2003,7,8,7,30,73,843,-1,0.14100000000000001,2,17.23,27,810,494 +2003,7,8,8,30,86,905,-3,0.14100000000000001,1.4000000000000001,12.59,30,810,685 +2003,7,8,9,30,92,949,-3,0.14100000000000001,1.2000000000000002,10.97,32,810,847 +2003,7,8,10,30,96,974,-3,0.14100000000000001,1.4000000000000001,10.27,33,800,964 +2003,7,8,11,30,97,986,-4,0.14100000000000001,1.5,9.52,34,800,1029 +2003,7,8,12,30,97,987,-4,0.14100000000000001,1.3,8.78,35,800,1034 +2003,7,8,13,30,96,976,-4,0.14100000000000001,0.9,8.17,36,800,981 +2003,7,8,14,30,88,961,-4,0.14100000000000001,0.6000000000000001,8.47,35,800,876 +2003,7,8,15,30,82,926,-5,0.14100000000000001,1.2000000000000002,8.85,34,800,723 +2003,7,8,16,30,75,863,-5,0.14100000000000001,1.9000000000000001,9.370000000000001,33,800,536 +2003,7,8,17,30,67,731,-3,0.14100000000000001,1.6,12.51,30,800,328 +2003,7,8,18,30,44,511,2,0.14100000000000001,1.1,25.86,25,800,132 +2003,7,8,19,30,0,0,2,0.14100000000000001,1.2000000000000002,30.98,22,810,0 +2003,7,8,20,30,0,0,1,0.14100000000000001,1.9000000000000001,32.29,20,810,0 +2003,7,8,21,30,0,0,0,0.14100000000000001,2.9000000000000004,31.12,19,810,0 +2003,7,8,22,30,0,0,-1,0.14100000000000001,3.2,30.73,18,810,0 +2003,7,8,23,30,0,0,-1,0.14100000000000001,2.8000000000000003,32.67,17,810,0 +2003,7,9,0,30,0,0,-1,0.14100000000000001,2.7,37.9,15,810,0 +2003,7,9,1,30,0,0,0,0.14100000000000001,2.4000000000000004,43.1,14,810,0 +2003,7,9,2,30,0,0,0,0.14100000000000001,2.1,52.54,12,810,0 +2003,7,9,3,30,0,0,1,0.14100000000000001,1.8,54.17,12,810,0 +2003,7,9,4,30,0,0,0,0.14100000000000001,1.6,49.77,13,810,0 +2003,7,9,5,30,33,489,2,0.14100000000000001,1.9000000000000001,44.54,16,810,98 +2003,7,9,6,30,54,744,1,0.14100000000000001,2.2,35.230000000000004,19,810,291 +2003,7,9,7,30,66,863,0,0.14100000000000001,2,27.310000000000002,22,810,496 +2003,7,9,8,30,76,927,0,0.14100000000000001,1.8,22.66,24,810,688 +2003,7,9,9,30,82,967,0,0.14100000000000001,1.9000000000000001,17.97,27,810,850 +2003,7,9,10,30,85,990,-1,0.14100000000000001,2.1,16.26,28,810,967 +2003,7,9,11,30,88,998,-1,0.14100000000000001,2.3000000000000003,14.9,29,810,1031 +2003,7,9,12,30,88,998,-2,0.14100000000000001,2.4000000000000004,13.85,30,810,1036 +2003,7,9,13,30,86,988,-2,0.14100000000000001,2.5,12.96,31,810,982 +2003,7,9,14,30,79,973,-2,0.14100000000000001,2.5,12.86,31,810,876 +2003,7,9,15,30,74,938,-2,0.14100000000000001,2.4000000000000004,13.51,30,810,723 +2003,7,9,16,30,66,880,-2,0.14100000000000001,2.2,14.19,29,810,536 +2003,7,9,17,30,59,762,-2,0.14100000000000001,1.7000000000000002,16.03,27,810,331 +2003,7,9,18,30,39,553,2,0.14100000000000001,1.1,29.87,23,810,134 +2003,7,9,19,30,0,0,3,0.14100000000000001,0.8,37.99,20,810,0 +2003,7,9,20,30,0,0,2,0.14100000000000001,0.7000000000000001,41.18,18,810,0 +2003,7,9,21,30,0,0,2,0.14100000000000001,0.9,46.82,16,810,0 +2003,7,9,22,30,0,0,1,0.14100000000000001,1.3,43.050000000000004,16,810,0 +2003,7,9,23,30,0,0,0,0.14100000000000001,1.5,42.050000000000004,15,810,0 +2003,7,10,0,30,0,0,0,0.14100000000000001,1.6,42.07,14,810,0 +2003,7,10,1,30,0,0,-1,0.14100000000000001,1.6,40.4,14,810,0 +2003,7,10,2,30,0,0,-1,0.14100000000000001,1.7000000000000002,42,13,810,0 +2003,7,10,3,30,0,0,-1,0.14100000000000001,1.7000000000000002,44,12,810,0 +2003,7,10,4,30,0,0,-1,0.14100000000000001,2,40.38,13,810,0 +2003,7,10,5,30,31,527,-1,0.14100000000000001,2.8000000000000003,32.25,17,810,100 +2003,7,10,6,30,50,774,-2,0.14100000000000001,3,22.52,22,810,294 +2003,7,10,7,30,61,886,-1,0.14100000000000001,2.8000000000000003,18.94,25,810,500 +2003,7,10,8,30,70,944,-2,0.14100000000000001,2.7,15.66,28,810,692 +2003,7,10,9,30,75,980,-2,0.14100000000000001,2.6,14.44,29,810,853 +2003,7,10,10,30,79,1001,-2,0.14100000000000001,2.7,12.63,31,810,970 +2003,7,10,11,30,83,1007,-2,0.14100000000000001,2.8000000000000003,11.74,32,810,1033 +2003,7,10,12,30,83,1007,-3,0.14100000000000001,3,10.9,33,810,1038 +2003,7,10,13,30,81,997,-3,0.14100000000000001,3.2,10.74,33,810,984 +2003,7,10,14,30,78,977,-3,0.14100000000000001,3.3000000000000003,10.57,33,810,877 +2003,7,10,15,30,72,941,-3,0.14100000000000001,3.3000000000000003,11.11,32,810,723 +2003,7,10,16,30,65,883,-3,0.14100000000000001,3.3000000000000003,11.83,31,810,535 +2003,7,10,17,30,58,763,-2,0.14100000000000001,2.5,14.94,28,810,329 +2003,7,10,18,30,39,546,2,0.14100000000000001,1.5,26.84,25,810,132 +2003,7,10,19,30,0,0,3,0.14100000000000001,1.1,33.94,22,810,0 +2003,7,10,20,30,0,0,3,0.14100000000000001,1.1,35.67,21,810,0 +2003,7,10,21,30,0,0,3,0.14100000000000001,1.1,37,20,810,0 +2003,7,10,22,30,0,0,2,0.14100000000000001,1.1,38.72,19,810,0 +2003,7,10,23,30,0,0,2,0.14100000000000001,1.1,40.42,18,810,0 +2003,7,11,0,30,0,0,2,0.14100000000000001,1.2000000000000002,41.88,17,810,0 +2003,7,11,1,30,0,0,1,0.14100000000000001,1.3,43.32,16,810,0 +2003,7,11,2,30,0,0,1,0.14100000000000001,1.4000000000000001,48.67,14,810,0 +2003,7,11,3,30,0,0,1,0.14100000000000001,1.8,47.480000000000004,14,810,0 +2003,7,11,4,30,0,0,0,0.14100000000000001,2.5,42.43,15,810,0 +2003,7,11,5,30,35,451,0,0.14100000000000001,3.1,35.5,18,810,93 +2003,7,11,6,30,60,710,0,0.14100000000000001,2.7,26.18,22,810,283 +2003,7,11,7,30,77,828,-1,0.14100000000000001,2.7,18.79,27,810,486 +2003,7,11,8,30,90,890,-3,0.14100000000000001,3.4000000000000004,13.75,29,810,675 +2003,7,11,9,30,100,924,-2,0.14100000000000001,3.8000000000000003,13.48,30,810,832 +2003,7,11,10,30,407,492,-1,0.14100000000000001,3.9000000000000004,13.42,31,810,844 +2003,7,11,11,30,391,582,-1,0.14100000000000001,3.7,13.27,32,810,939 +2003,7,11,12,30,430,528,0,0.14100000000000001,3.4000000000000004,12.870000000000001,33,810,930 +2003,7,11,13,30,442,448,0,0.14100000000000001,3.3000000000000003,12.84,33,810,847 +2003,7,11,14,30,293,21,-1,0.14100000000000001,3.3000000000000003,13.39,32,810,311 +2003,7,11,15,30,248,536,-1,0.14100000000000001,3.4000000000000004,14.11,31,810,618 +2003,7,11,16,30,228,289,0,0.14100000000000001,3.5,15.25,30,810,382 +2003,7,11,17,30,122,439,0,0.153,3.3000000000000003,18.76,28,810,278 +2003,7,11,18,30,56,237,3,0.153,2.4000000000000004,27.73,25,810,96 +2003,7,11,19,30,0,0,4,0.153,1.8,37.050000000000004,22,810,0 +2003,7,11,20,30,0,0,6,0.153,1.5,46.18,20,810,0 +2003,7,11,21,30,0,0,7,0.153,1.1,53.01,19,810,0 +2003,7,11,22,30,0,0,7,0.153,0.7000000000000001,57.620000000000005,18,810,0 +2003,7,11,23,30,0,0,7,0.153,0.30000000000000004,61.33,17,810,0 +2003,7,12,0,30,0,0,7,0.153,0.30000000000000004,63.32,17,810,0 +2003,7,12,1,30,0,0,7,0.153,0.2,62.940000000000005,16,810,0 +2003,7,12,2,30,0,0,6,0.153,0.1,65.64,15,810,0 +2003,7,12,3,30,0,0,6,0.153,0.1,69.71000000000001,14,810,0 +2003,7,12,4,30,0,0,6,0.153,0.30000000000000004,68.45,15,810,0 +2003,7,12,5,30,39,357,6,0.153,0.6000000000000001,53.7,18,810,84 +2003,7,12,6,30,69,637,6,0.153,1,41.35,22,810,268 +2003,7,12,7,30,87,775,5,0.153,1.6,29.62,26,810,469 +2003,7,12,8,30,104,842,3,0.153,2.3000000000000003,22.56,29,810,656 +2003,7,12,9,30,112,890,2,0.153,2.7,18.59,31,810,816 +2003,7,12,10,30,117,917,2,0.153,3,17.03,32,810,932 +2003,7,12,11,30,457,477,2,0.153,3.3000000000000003,15.9,33,810,906 +2003,7,12,12,30,441,48,1,0.153,3.5,14.83,34,810,487 +2003,7,12,13,30,425,365,1,0.153,3.6,14.73,34,810,756 +2003,7,12,14,30,362,460,1,0.153,3.5,15.56,33,810,737 +2003,7,12,15,30,264,469,1,0.153,3.2,16.46,32,810,587 +2003,7,12,16,30,97,761,1,0.153,2.9000000000000004,17.43,31,810,502 +2003,7,12,17,30,130,320,2,0.153,2.1,20.240000000000002,29,810,243 +2003,7,12,18,30,56,8,6,0.153,1.5,34.64,25,810,58 +2003,7,12,19,30,0,0,6,0.153,1.8,39.39,23,810,0 +2003,7,12,20,30,0,0,6,0.153,2.4000000000000004,42.29,22,810,0 +2003,7,12,21,30,0,0,6,0.153,2.9000000000000004,45.32,21,810,0 +2003,7,12,22,30,0,0,6,0.153,3,47.11,20,810,0 +2003,7,12,23,30,0,0,5,0.153,2.8000000000000003,48.28,19,810,0 +2003,7,13,0,30,0,0,5,0.153,2.5,49.21,18,810,0 +2003,7,13,1,30,0,0,4,0.153,2.3000000000000003,51.01,17,810,0 +2003,7,13,2,30,0,0,4,0.153,2.4000000000000004,49.69,17,810,0 +2003,7,13,3,30,0,0,3,0.153,2.5,49.6,16,810,0 +2003,7,13,4,30,0,0,2,0.153,2.9000000000000004,41.480000000000004,17,810,0 +2003,7,13,5,30,37,401,0,0.153,3.5,29.72,21,810,87 +2003,7,13,6,30,63,682,0,0.153,3.7,20.01,26,810,275 +2003,7,13,7,30,80,809,-2,0.153,3.6,14.620000000000001,29,810,478 +2003,7,13,8,30,97,868,-3,0.153,3.6,10.84,32,810,666 +2003,7,13,9,30,338,424,-3,0.153,3.5,9.86,34,810,673 +2003,7,13,10,30,399,505,-3,0.153,3.2,9.58,35,810,848 +2003,7,13,11,30,376,603,-3,0.153,2.8000000000000003,9.200000000000001,36,810,944 +2003,7,13,12,30,460,362,-2,0.153,2.5,9.31,36,810,803 +2003,7,13,13,30,446,391,-2,0.153,2,9.450000000000001,36,810,800 +2003,7,13,14,30,66,0,-2,0.153,1.5,10.26,35,810,66 +2003,7,13,15,30,335,140,-1,0.153,1.1,11.18,34,810,432 +2003,7,13,16,30,241,154,-1,0.153,0.8,12.32,33,810,323 +2003,7,13,17,30,119,9,1,0.153,0.4,17.48,30,810,122 +2003,7,13,18,30,55,1,8,0.153,0.4,31.94,28,810,55 +2003,7,13,19,30,0,0,6,0.153,0.7000000000000001,32.99,26,810,0 +2003,7,13,20,30,0,0,6,0.153,0.9,35.96,24,810,0 +2003,7,13,21,30,0,0,5,0.153,1.1,38.79,22,810,0 +2003,7,13,22,30,0,0,4,0.153,1.3,41.76,20,810,0 +2003,7,13,23,30,0,0,3,0.153,1.7000000000000002,39.02,20,810,0 +2003,7,14,0,30,0,0,2,0.153,2.2,39.08,19,810,0 +2003,7,14,1,30,0,0,2,0.153,2.4000000000000004,36.730000000000004,19,810,0 +2003,7,14,2,30,0,0,1,0.153,2.3000000000000003,37.13,18,810,0 +2003,7,14,3,30,0,0,0,0.153,2.2,37.92,17,810,0 +2003,7,14,4,30,0,0,0,0.153,2.1,34.64,18,810,0 +2003,7,14,5,30,38,365,0,0.153,2.3000000000000003,29.85,21,810,83 +2003,7,14,6,30,78,534,0,0.153,2.7,22.26,25,810,243 +2003,7,14,7,30,87,779,0,0.153,3.2,17.28,28,810,469 +2003,7,14,8,30,198,619,0,0.153,3.4000000000000004,14.59,31,810,603 +2003,7,14,9,30,119,881,0,0.153,3.5,13.94,32,810,814 +2003,7,14,10,30,128,903,0,0.153,3.8000000000000003,13.280000000000001,33,810,928 +2003,7,14,11,30,118,933,0,0.153,4.2,12.64,34,810,996 +2003,7,14,12,30,127,920,0,0.153,4.7,12.1,35,810,997 +2003,7,14,13,30,355,597,0,0.153,4.9,12.370000000000001,35,810,894 +2003,7,14,14,30,362,437,0,0.153,4.800000000000001,13.5,34,810,718 +2003,7,14,15,30,262,474,1,0.153,4.1000000000000005,15.01,33,810,588 +2003,7,14,16,30,238,207,2,0.153,3.2,17.73,31,810,348 +2003,7,14,17,30,141,72,3,0.153,2.5,22.86,29,810,166 +2003,7,14,18,30,62,274,5,0.153,2.4000000000000004,33.03,26,810,107 +2003,7,14,19,30,0,0,6,0.153,3,40.24,23,810,0 +2003,7,14,20,30,0,0,7,0.153,3.1,43.75,22,810,0 +2003,7,14,21,30,0,0,7,0.153,2.7,46.67,21,810,0 +2003,7,14,22,30,0,0,7,0.153,2.3000000000000003,48.910000000000004,20,810,0 +2003,7,14,23,30,0,0,6,0.153,2,51.2,19,810,0 +2003,7,15,0,30,0,0,6,0.153,1.9000000000000001,51.050000000000004,19,810,0 +2003,7,15,1,30,0,0,6,0.153,1.8,53.7,18,810,0 +2003,7,15,2,30,0,0,6,0.153,1.7000000000000002,56.93,17,810,0 +2003,7,15,3,30,0,0,6,0.153,1.6,56.980000000000004,17,810,0 +2003,7,15,4,30,0,0,6,0.153,1.8,53.92,18,810,0 +2003,7,15,5,30,41,293,7,0.153,2.4000000000000004,48.74,20,810,77 +2003,7,15,6,30,79,571,7,0.153,3.1,38.5,24,810,254 +2003,7,15,7,30,104,707,6,0.153,3.5,29.37,28,810,450 +2003,7,15,8,30,131,768,5,0.153,3.2,22.39,31,810,631 +2003,7,15,9,30,150,808,4,0.153,2.8000000000000003,18.8,33,810,786 +2003,7,15,10,30,370,553,4,0.153,2.6,17.17,34,810,860 +2003,7,15,11,30,391,31,3,0.153,2.4000000000000004,16,35,810,421 +2003,7,15,12,30,498,381,3,0.153,2.2,16.15,35,810,858 +2003,7,15,13,30,385,35,4,0.153,1.7000000000000002,17.75,34,810,417 +2003,7,15,14,30,410,113,5,0.153,1.7000000000000002,19.73,33,810,502 +2003,7,15,15,30,200,12,5,0.153,1.8,23.26,31,810,209 +2003,7,15,16,30,23,0,6,0.153,1.8,26.87,29,810,23 +2003,7,15,17,30,144,125,6,0.153,2.9000000000000004,31.13,27,810,187 +2003,7,15,18,30,24,0,8,0.153,4,41.28,24,810,24 +2003,7,15,19,30,0,0,9,0.153,4.1000000000000005,50.53,22,810,0 +2003,7,15,20,30,0,0,9,0.153,3.9000000000000004,50.58,22,810,0 +2003,7,15,21,30,0,0,9,0.153,3.6,52.89,21,810,0 +2003,7,15,22,30,0,0,8,0.153,3.4000000000000004,51.96,21,810,0 +2003,7,15,23,30,0,0,8,0.153,2.9000000000000004,54.42,20,810,0 +2003,7,16,0,30,0,0,8,0.153,2,52.88,20,810,0 +2003,7,16,1,30,0,0,7,0.153,1.5,53.910000000000004,19,810,0 +2003,7,16,2,30,0,0,6,0.153,1.6,51.38,19,810,0 +2003,7,16,3,30,0,0,6,0.153,2,50.47,19,810,0 +2003,7,16,4,30,0,0,6,0.153,3,47.410000000000004,20,810,0 +2003,7,16,5,30,46,207,7,0.153,4,42.96,22,810,70 +2003,7,16,6,30,91,504,7,0.153,4,37.1,25,810,245 +2003,7,16,7,30,116,669,6,0.153,3.7,27.95,29,810,441 +2003,7,16,8,30,153,718,4,0.153,3.5,20.39,32,810,620 +2003,7,16,9,30,164,782,3,0.153,3.2,17.09,34,810,779 +2003,7,16,10,30,174,814,3,0.153,3,15.67,35,810,894 +2003,7,16,11,30,450,354,3,0.153,3,14.38,36,810,783 +2003,7,16,12,30,186,17,2,0.153,3.1,14.040000000000001,36,810,203 +2003,7,16,13,30,467,115,2,0.153,2.8000000000000003,14.94,35,810,571 +2003,7,16,14,30,66,0,3,0.153,2.1,16.31,34,810,66 +2003,7,16,15,30,129,3,4,0.153,0.9,18.26,33,810,132 +2003,7,16,16,30,38,0,5,0.153,1.2000000000000002,23.34,30,810,38 +2003,7,16,17,30,112,3,6,0.153,3.1,31.03,27,810,114 +2003,7,16,18,30,49,0,8,0.153,5,46.13,23,810,49 +2003,7,16,19,30,0,0,9,0.153,6.2,55.89,21,810,0 +2003,7,16,20,30,0,0,10,0.153,6.300000000000001,56.620000000000005,21,810,0 +2003,7,16,21,30,0,0,9,0.153,5.9,55.25,21,810,0 +2003,7,16,22,30,0,0,9,0.153,5.4,53.85,21,810,0 +2003,7,16,23,30,0,0,9,0.153,4.9,52.74,21,810,0 +2003,7,17,0,30,0,0,8,0.153,4.5,51.79,21,810,0 +2003,7,17,1,30,0,0,8,0.153,4.2,51.27,21,810,0 +2003,7,17,2,30,0,0,8,0.153,3.8000000000000003,55.63,20,810,0 +2003,7,17,3,30,0,0,9,0.153,3.3000000000000003,57.32,20,810,0 +2003,7,17,4,30,0,0,9,0.153,2.9000000000000004,58.050000000000004,20,810,0 +2003,7,17,5,30,46,178,9,0.153,2.7,55.15,22,810,67 +2003,7,17,6,30,99,457,9,0.153,1.9000000000000001,43.7,25,810,237 +2003,7,17,7,30,132,614,8,0.153,1.3,31.69,29,810,430 +2003,7,17,8,30,163,690,6,0.153,1.9000000000000001,22.44,32,810,611 +2003,7,17,9,30,181,746,5,0.153,2.4000000000000004,19.21,34,810,767 +2003,7,17,10,30,194,776,5,0.153,2.9000000000000004,18.01,35,810,880 +2003,7,17,11,30,148,867,5,0.153,3.2,17.14,36,810,961 +2003,7,17,12,30,494,381,5,0.153,3.4000000000000004,17.47,36,810,854 +2003,7,17,13,30,187,13,6,0.153,3.5,17.91,36,810,199 +2003,7,17,14,30,396,83,6,0.153,3.5,19.31,35,810,464 +2003,7,17,15,30,325,252,6,0.153,3.2,20.79,34,810,498 +2003,7,17,16,30,193,23,7,0.153,2.2,25.490000000000002,31,810,205 +2003,7,17,17,30,121,15,8,0.153,1.7000000000000002,32.6,28,810,127 +2003,7,17,18,30,39,0,10,0.153,3.9000000000000004,49.47,24,810,39 +2003,7,17,19,30,0,0,11,0.153,6.300000000000001,60.910000000000004,22,810,0 +2003,7,17,20,30,0,0,11,0.153,6.2,65.75,20,810,0 +2003,7,17,21,30,0,0,11,0.153,4.800000000000001,65.29,20,810,0 +2003,7,17,22,30,0,0,10,0.153,2.7,63.01,20,810,0 +2003,7,17,23,30,0,0,10,0.153,1.1,61.01,20,810,0 +2003,7,18,0,30,0,0,10,0.153,0.8,60.370000000000005,20,810,0 +2003,7,18,1,30,0,0,9,0.153,0.9,62.910000000000004,19,810,0 +2003,7,18,2,30,0,0,9,0.153,1.2000000000000002,66.71000000000001,18,810,0 +2003,7,18,3,30,0,0,9,0.153,1.8,71.96000000000001,17,810,0 +2003,7,18,4,30,0,0,10,0.153,3,69.60000000000001,18,810,0 +2003,7,18,5,30,43,224,11,0.153,3.7,65.6,20,810,69 +2003,7,18,6,30,88,515,12,0.153,3.6,57.980000000000004,24,810,243 +2003,7,18,7,30,114,673,11,0.153,3.5,43.410000000000004,27,810,439 +2003,7,18,8,30,133,759,8,0.153,3.6,29.69,30,810,625 +2003,7,18,9,30,146,811,7,0.153,3.8000000000000003,26.03,32,810,782 +2003,7,18,10,30,157,837,7,0.153,3.9000000000000004,23.95,33,810,895 +2003,7,18,11,30,476,377,7,0.153,3.8000000000000003,22.44,33,810,830 +2003,7,18,12,30,498,131,7,0.153,3.7,21.28,34,810,622 +2003,7,18,13,30,273,17,7,0.153,3.6,22.84,33,810,289 +2003,7,18,14,30,354,406,7,0.153,3.4000000000000004,24.54,32,810,684 +2003,7,18,15,30,298,365,7,0.153,3.3000000000000003,26.36,31,810,548 +2003,7,18,16,30,219,55,8,0.153,3.3000000000000003,28.48,30,810,248 +2003,7,18,17,30,134,48,8,0.153,3.2,35.660000000000004,27,810,151 +2003,7,18,18,30,47,0,10,0.153,3.1,47.88,25,810,47 +2003,7,18,19,30,0,0,12,0.153,2.5,60.620000000000005,23,810,0 +2003,7,18,20,30,0,0,13,0.153,1.7000000000000002,69.4,21,810,0 +2003,7,18,21,30,0,0,14,0.153,1.1,82.84,19,810,0 +2003,7,18,22,30,0,0,14,0.153,1.1,91.92,18,810,0 +2003,7,18,23,30,0,0,14,0.153,1.6,100,16,810,0 +2003,7,19,0,30,0,0,13,0.153,1.8,98.37,16,810,0 +2003,7,19,1,30,0,0,13,0.153,1.6,96.06,16,810,0 +2003,7,19,2,30,0,0,13,0.153,1.1,100,15,810,0 +2003,7,19,3,30,0,0,12,0.153,0.7000000000000001,97.85000000000001,15,810,0 +2003,7,19,4,30,0,0,12,0.153,0.5,88.54,16,810,0 +2003,7,19,5,30,39,224,12,0.153,0.2,76.74,19,810,64 +2003,7,19,6,30,90,429,13,0.153,0.4,61.2,23,810,219 +2003,7,19,7,30,93,727,11,0.153,1.4000000000000001,46.07,26,810,443 +2003,7,19,8,30,116,788,9,0.153,2.3000000000000003,34.26,29,810,625 +2003,7,19,9,30,130,830,9,0.153,3,31.23,30,810,780 +2003,7,19,10,30,145,846,9,0.153,3.5,29.11,31,810,891 +2003,7,19,11,30,447,485,9,0.153,3.9000000000000004,27.55,32,810,900 +2003,7,19,12,30,489,410,9,0.153,3.9000000000000004,29.82,32,810,876 +2003,7,19,13,30,472,166,10,0.153,3.5,32.52,31,810,622 +2003,7,19,14,30,357,449,10,0.153,3,35.62,29,810,721 +2003,7,19,15,30,325,244,11,0.153,2.9000000000000004,39.17,28,810,492 +2003,7,19,16,30,190,22,11,0.153,2.6,45.82,26,810,202 +2003,7,19,17,30,22,0,12,0.145,1.6,50.96,25,810,22 +2003,7,19,18,30,2,0,13,0.145,0.6000000000000001,63.99,23,810,2 +2003,7,19,19,30,0,0,14,0.145,0.6000000000000001,73.77,21,810,0 +2003,7,19,20,30,0,0,13,0.145,1.1,81.9,19,810,0 +2003,7,19,21,30,0,0,13,0.145,1.5,85.53,18,810,0 +2003,7,19,22,30,0,0,13,0.145,1.8,83.57000000000001,18,810,0 +2003,7,19,23,30,0,0,12,0.145,2,86.53,17,810,0 +2003,7,20,0,30,0,0,12,0.145,2.1,83.58,17,810,0 +2003,7,20,1,30,0,0,11,0.145,2.2,80.73,17,810,0 +2003,7,20,2,30,0,0,11,0.145,2.2,83.60000000000001,17,810,0 +2003,7,20,3,30,0,0,10,0.145,2.3000000000000003,81.52,16,810,0 +2003,7,20,4,30,0,0,10,0.145,2.6,74.56,17,810,0 +2003,7,20,5,30,36,297,10,0.145,3.1,66.41,19,810,69 +2003,7,20,6,30,69,597,11,0.145,2.4000000000000004,53.71,23,810,246 +2003,7,20,7,30,89,739,10,0.145,1.5,41.19,26,810,444 +2003,7,20,8,30,112,799,7,0.145,1.6,29.76,29,810,627 +2003,7,20,9,30,123,846,6,0.145,2.3000000000000003,26.400000000000002,30,810,784 +2003,7,20,10,30,404,484,6,0.145,2.9000000000000004,24.19,31,810,830 +2003,7,20,11,30,496,174,6,0.145,3.3000000000000003,22.71,32,810,659 +2003,7,20,12,30,496,129,6,0.145,3.3000000000000003,22.8,32,810,618 +2003,7,20,13,30,131,6,6,0.145,3,24.5,31,810,136 +2003,7,20,14,30,108,0,7,0.145,2.5,26.63,30,810,109 +2003,7,20,15,30,79,0,7,0.145,1.9000000000000001,28.91,29,810,79 +2003,7,20,16,30,232,100,7,0.145,1.5,31.26,28,810,285 +2003,7,20,17,30,108,436,8,0.145,1.1,36.69,26,810,257 +2003,7,20,18,30,53,307,11,0.145,0.9,49.93,24,810,101 +2003,7,20,19,30,0,0,10,0.145,0.9,55.4,22,810,0 +2003,7,20,20,30,0,0,10,0.145,1,59.870000000000005,20,810,0 +2003,7,20,21,30,0,0,9,0.145,1.1,62.32,19,810,0 +2003,7,20,22,30,0,0,9,0.145,0.9,61.19,19,810,0 +2003,7,20,23,30,0,0,9,0.145,0.5,60.69,19,810,0 +2003,7,21,0,30,0,0,9,0.145,0.2,64.62,18,810,0 +2003,7,21,1,30,0,0,9,0.145,0.4,65.31,18,810,0 +2003,7,21,2,30,0,0,9,0.145,0.8,69.86,17,810,0 +2003,7,21,3,30,0,0,9,0.145,1.2000000000000002,73.27,16,810,0 +2003,7,21,4,30,0,0,8,0.145,1.4000000000000001,67.3,17,810,0 +2003,7,21,5,30,35,277,9,0.145,2.1,56.82,20,810,65 +2003,7,21,6,30,68,586,9,0.145,2.2,41.39,25,810,241 +2003,7,21,7,30,86,740,8,0.145,1.3,32.45,28,810,440 +2003,7,21,8,30,98,828,6,0.145,0.9,24.580000000000002,31,810,630 +2003,7,21,9,30,105,880,6,0.145,1.6,22.13,32,810,791 +2003,7,21,10,30,111,908,5,0.145,2.6,20.23,33,810,909 +2003,7,21,11,30,106,932,5,0.145,3.1,18.72,34,810,976 +2003,7,21,12,30,110,926,5,0.145,3.4000000000000004,17.53,35,810,980 +2003,7,21,13,30,124,4,5,0.145,3.4000000000000004,18.85,34,810,128 +2003,7,21,14,30,111,1,5,0.145,3.3000000000000003,20.75,33,810,112 +2003,7,21,15,30,252,499,6,0.145,3,23,32,810,591 +2003,7,21,16,30,95,743,7,0.145,2.2,25.41,31,810,482 +2003,7,21,17,30,89,540,8,0.145,1.1,30.23,29,810,274 +2003,7,21,18,30,56,138,11,0.145,0.6000000000000001,42.12,27,810,78 +2003,7,21,19,30,0,0,10,0.145,0.9,46.04,25,810,0 +2003,7,21,20,30,0,0,9,0.145,1.4000000000000001,49.32,23,810,0 +2003,7,21,21,30,0,0,8,0.145,2,52.26,21,810,0 +2003,7,21,22,30,0,0,7,0.145,2.2,53.97,19,810,0 +2003,7,21,23,30,0,0,6,0.145,2.1,53.89,18,810,0 +2003,7,22,0,30,0,0,5,0.145,2,54.34,17,810,0 +2003,7,22,1,30,0,0,5,0.145,1.9000000000000001,53.32,17,810,0 +2003,7,22,2,30,0,0,6,0.145,1.7000000000000002,58.56,16,810,0 +2003,7,22,3,30,0,0,6,0.145,1.5,64.43,15,810,0 +2003,7,22,4,30,0,0,6,0.145,1.5,65.41,15,810,0 +2003,7,22,5,30,36,255,7,0.145,1.7000000000000002,59.47,17,810,63 +2003,7,22,6,30,72,566,8,0.145,1.9000000000000001,48.89,21,810,238 +2003,7,22,7,30,93,723,8,0.145,2.3000000000000003,41.87,24,810,437 +2003,7,22,8,30,116,789,8,0.145,2.7,34.6,27,810,622 +2003,7,22,9,30,124,848,7,0.145,3,31.87,28,810,784 +2003,7,22,10,30,127,885,7,0.145,3.3000000000000003,27.37,30,810,903 +2003,7,22,11,30,127,905,6,0.145,3.5,24.91,31,810,971 +2003,7,22,12,30,125,911,6,0.145,3.7,22.78,32,810,979 +2003,7,22,13,30,121,902,6,0.145,3.8000000000000003,22.240000000000002,32,810,929 +2003,7,22,14,30,284,617,5,0.145,3.8000000000000003,21.76,32,810,782 +2003,7,22,15,30,196,656,5,0.145,3.6,22.68,31,810,641 +2003,7,22,16,30,115,691,5,0.145,3.3000000000000003,23.79,30,810,473 +2003,7,22,17,30,120,343,5,0.145,2.4000000000000004,28.96,27,810,237 +2003,7,22,18,30,55,180,7,0.145,1.3,40.08,24,810,82 +2003,7,22,19,30,0,0,8,0.145,1,52.230000000000004,21,810,0 +2003,7,22,20,30,0,0,8,0.145,1.1,58.38,19,810,0 +2003,7,22,21,30,0,0,8,0.145,1.1,62,18,810,0 +2003,7,22,22,30,0,0,8,0.145,0.9,62.88,18,810,0 +2003,7,22,23,30,0,0,9,0.145,0.8,63.95,18,810,0 +2003,7,23,0,30,0,0,9,0.145,0.9,68.56,17,810,0 +2003,7,23,1,30,0,0,9,0.145,1.1,68.67,17,810,0 +2003,7,23,2,30,0,0,9,0.145,1.2000000000000002,72.99,16,810,0 +2003,7,23,3,30,0,0,9,0.145,1.4000000000000001,72.08,16,810,0 +2003,7,23,4,30,0,0,8,0.145,1.5,70.59,16,810,0 +2003,7,23,5,30,33,304,8,0.145,2.1,58.550000000000004,19,810,64 +2003,7,23,6,30,65,617,8,0.145,2.4000000000000004,42.24,24,810,245 +2003,7,23,7,30,83,765,6,0.145,2.2,31.25,27,810,446 +2003,7,23,8,30,104,826,4,0.145,2.1,22.89,30,810,632 +2003,7,23,9,30,218,712,4,0.145,2.2,19.47,32,810,771 +2003,7,23,10,30,129,885,4,0.145,2.5,18.19,33,810,904 +2003,7,23,11,30,448,344,4,0.145,2.8000000000000003,17.43,34,810,768 +2003,7,23,12,30,400,34,4,0.145,2.7,18.02,34,810,432 +2003,7,23,13,30,399,42,5,0.145,2.1,19.91,33,810,437 +2003,7,23,14,30,347,484,6,0.145,1.1,22.14,32,810,737 +2003,7,23,15,30,220,15,6,0.145,0.8,24.580000000000002,31,810,231 +2003,7,23,16,30,201,33,7,0.145,1.3,27.1,30,810,219 +2003,7,23,17,30,120,334,8,0.145,1.5,32.07,28,810,233 +2003,7,23,18,30,50,211,10,0.145,1.7000000000000002,45.480000000000004,25,810,82 +2003,7,23,19,30,0,0,10,0.145,2.3000000000000003,49.75,23,810,0 +2003,7,23,20,30,0,0,9,0.145,2.7,51.04,22,810,0 +2003,7,23,21,30,0,0,9,0.145,2.5,56.85,20,810,0 +2003,7,23,22,30,0,0,8,0.145,2,55.54,20,810,0 +2003,7,23,23,30,0,0,8,0.145,1.7000000000000002,57.1,19,810,0 +2003,7,24,0,30,0,0,7,0.145,1.6,54.550000000000004,19,810,0 +2003,7,24,1,30,0,0,7,0.145,2.1,52.15,19,810,0 +2003,7,24,2,30,0,0,6,0.145,2.9000000000000004,50.02,19,810,0 +2003,7,24,3,30,0,0,6,0.145,3.6,49.1,19,810,0 +2003,7,24,4,30,0,0,6,0.145,4.3,50.120000000000005,19,810,0 +2003,7,24,5,30,36,206,7,0.145,4.800000000000001,46.96,21,810,57 +2003,7,24,6,30,93,374,8,0.145,4.7,39.18,25,810,202 +2003,7,24,7,30,93,736,7,0.145,4.2,29.97,29,810,440 +2003,7,24,8,30,114,806,5,0.145,3.7,20.86,32,810,628 +2003,7,24,9,30,123,861,2,0.145,3.4000000000000004,15.950000000000001,34,810,791 +2003,7,24,10,30,130,890,1,0.145,3.3000000000000003,13.780000000000001,35,810,909 +2003,7,24,11,30,451,259,1,0.145,3.3000000000000003,12.540000000000001,36,810,692 +2003,7,24,12,30,466,313,0,0.145,3.5,11.67,37,810,759 +2003,7,24,13,30,403,507,1,0.145,3.6,12.370000000000001,36,810,856 +2003,7,24,14,30,140,835,1,0.145,3.4000000000000004,13.39,35,810,812 +2003,7,24,15,30,307,314,1,0.145,2.7,14.72,34,810,520 +2003,7,24,16,30,224,257,2,0.145,1.4000000000000001,17.41,32,810,357 +2003,7,24,17,30,126,36,4,0.145,0.7000000000000001,23.46,29,810,138 +2003,7,24,18,30,37,0,8,0.145,1.9000000000000001,38.2,26,810,37 +2003,7,24,19,30,0,0,9,0.145,3.9000000000000004,46.83,23,810,0 +2003,7,24,20,30,0,0,10,0.145,5.5,52.81,22,810,0 +2003,7,24,21,30,0,0,9,0.145,6.1000000000000005,55.370000000000005,21,810,0 +2003,7,24,22,30,0,0,9,0.145,5.6000000000000005,53.06,21,810,0 +2003,7,24,23,30,0,0,8,0.145,4.9,50.58,21,810,0 +2003,7,25,0,30,0,0,7,0.145,4.3,51.82,20,810,0 +2003,7,25,1,30,0,0,7,0.145,3.9000000000000004,50.45,20,810,0 +2003,7,25,2,30,0,0,7,0.145,3.7,52.910000000000004,19,810,0 +2003,7,25,3,30,0,0,7,0.145,3.4000000000000004,52.63,19,810,0 +2003,7,25,4,30,0,0,7,0.145,3.4000000000000004,52.88,19,810,0 +2003,7,25,5,30,28,0,7,0.145,3.8000000000000003,47.65,21,810,28 +2003,7,25,6,30,73,0,8,0.145,3.6,38.83,25,810,73 +2003,7,25,7,30,183,351,8,0.145,2.6,30.23,29,810,349 +2003,7,25,8,30,277,342,7,0.145,1.3,25.19,31,810,495 +2003,7,25,9,30,371,302,6,0.145,0.5,22.150000000000002,33,810,604 +2003,7,25,10,30,420,418,7,0.145,0.6000000000000001,21.1,34,810,786 +2003,7,25,11,30,444,360,7,0.145,0.7000000000000001,21.28,34,810,778 +2003,7,25,12,30,486,405,7,0.145,0.7000000000000001,22.85,33,810,865 +2003,7,25,13,30,64,0,7,0.145,1.2000000000000002,25.02,32,810,64 +2003,7,25,14,30,69,0,8,0.145,2,27.53,31,810,69 +2003,7,25,15,30,39,0,8,0.145,2.5,30.060000000000002,30,810,39 +2003,7,25,16,30,80,0,9,0.145,3.5,35.11,28,810,80 +2003,7,25,17,30,14,0,10,0.145,3.5,42.33,26,810,14 +2003,7,25,18,30,39,0,11,0.145,2,51.34,24,810,39 +2003,7,25,19,30,0,0,11,0.145,1.1,54.730000000000004,23,810,0 +2003,7,25,20,30,0,0,11,0.145,1,57.76,22,810,0 +2003,7,25,21,30,0,0,11,0.145,1.2000000000000002,57.300000000000004,22,810,0 +2003,7,25,22,30,0,0,11,0.145,1.3,60.58,21,810,0 +2003,7,25,23,30,0,0,11,0.145,1.1,65.24,20,810,0 +2003,7,26,0,30,0,0,11,0.145,1,65.79,20,810,0 +2003,7,26,1,30,0,0,11,0.145,1.3,70.21000000000001,19,810,0 +2003,7,26,2,30,0,0,11,0.145,1.9000000000000001,75.99,19,810,0 +2003,7,26,3,30,0,0,11,0.145,2.5,76.33,18,810,0 +2003,7,26,4,30,0,0,11,0.145,3.2,76.55,18,810,0 +2003,7,26,5,30,30,284,12,0.145,3.6,68.5,20,810,57 +2003,7,26,6,30,64,579,12,0.145,3.6,61.65,22,810,229 +2003,7,26,7,30,85,725,11,0.145,3.3000000000000003,49.24,25,810,424 +2003,7,26,8,30,108,785,11,0.145,2.6,41.49,27,810,606 +2003,7,26,9,30,127,820,10,0.145,2,35.94,29,810,760 +2003,7,26,10,30,140,841,10,0.145,2,33.44,30,810,873 +2003,7,26,11,30,442,483,10,0.145,2.2,31.26,31,810,889 +2003,7,26,12,30,458,67,10,0.145,2.4000000000000004,29.32,32,810,521 +2003,7,26,13,30,410,49,10,0.145,2.6,29.25,32,810,455 +2003,7,26,14,30,387,304,10,0.145,2.6,31.01,31,810,631 +2003,7,26,15,30,321,233,10,0.145,2.5,33.12,30,810,477 +2003,7,26,16,30,154,6,10,0.145,2,35.980000000000004,29,810,157 +2003,7,26,17,30,99,0,11,0.145,2.1,46.09,26,810,99 +2003,7,26,18,30,50,70,13,0.145,3.6,63.25,23,810,60 +2003,7,26,19,30,0,0,14,0.145,4.1000000000000005,73.38,21,810,0 +2003,7,26,20,30,0,0,14,0.145,3.6,78.67,20,810,0 +2003,7,26,21,30,0,0,14,0.145,3.6,87.29,19,810,0 +2003,7,26,22,30,0,0,15,0.145,2.7,98.28,18,810,0 +2003,7,26,23,30,0,0,16,0.145,1.3,100,18,810,0 +2003,7,27,0,30,0,0,16,0.145,1,100,18,810,0 +2003,7,27,1,30,0,0,15,0.145,1.4000000000000001,100,17,810,0 +2003,7,27,2,30,0,0,15,0.145,1.7000000000000002,100,17,810,0 +2003,7,27,3,30,0,0,15,0.145,1.3,100,17,810,0 +2003,7,27,4,30,0,0,14,0.145,0.9,96.07000000000001,17,810,0 +2003,7,27,5,30,28,0,14,0.145,0.9,90.82000000000001,18,810,28 +2003,7,27,6,30,105,42,14,0.145,0.8,75.79,21,810,118 +2003,7,27,7,30,150,488,13,0.145,0.7000000000000001,56.76,24,810,378 +2003,7,27,8,30,227,489,11,0.145,1.4000000000000001,42.050000000000004,27,810,536 +2003,7,27,9,30,121,836,10,0.145,2.7,38.02,28,810,764 +2003,7,27,10,30,390,499,10,0.145,3.5,35.92,29,810,824 +2003,7,27,11,30,475,404,10,0.145,4,34.49,30,810,849 +2003,7,27,12,30,361,25,11,0.145,4.1000000000000005,37.550000000000004,29,810,385 +2003,7,27,13,30,126,5,11,0.145,3.7,43.81,28,810,131 +2003,7,27,14,30,70,0,12,0.145,2.9000000000000004,48.13,26,810,70 +2003,7,27,15,30,40,0,12,0.145,2,52.33,25,810,40 +2003,7,27,16,30,128,0,13,0.145,1,56.93,24,810,128 +2003,7,27,17,30,110,7,13,0.147,0.5,62.980000000000004,23,810,112 +2003,7,27,18,30,46,2,14,0.147,0.6000000000000001,72.27,22,810,46 +2003,7,27,19,30,0,0,14,0.147,1,81.36,20,810,0 +2003,7,27,20,30,0,0,14,0.147,1.4000000000000001,79.22,20,810,0 +2003,7,27,21,30,0,0,14,0.147,1.4000000000000001,77.58,20,810,0 +2003,7,27,22,30,0,0,13,0.147,1.1,76.41,20,810,0 +2003,7,27,23,30,0,0,13,0.147,0.8,81.18,19,810,0 +2003,7,28,0,30,0,0,13,0.147,0.8,80.92,19,810,0 +2003,7,28,1,30,0,0,13,0.147,1.3,86.3,18,810,0 +2003,7,28,2,30,0,0,13,0.147,1.5,93.37,17,810,0 +2003,7,28,3,30,0,0,14,0.147,1.3,100,16,810,0 +2003,7,28,4,30,0,0,14,0.147,1.2000000000000002,100,16,810,0 +2003,7,28,5,30,34,106,14,0.147,1.3,95.8,17,810,43 +2003,7,28,6,30,92,350,14,0.147,1.7000000000000002,86.54,19,810,191 +2003,7,28,7,30,122,587,14,0.147,2,75.85000000000001,21,810,395 +2003,7,28,8,30,261,389,14,0.147,2.1,68.84,22,810,507 +2003,7,28,9,30,366,322,13,0.147,2.2,63.24,23,810,613 +2003,7,28,10,30,448,226,13,0.147,2.3000000000000003,58.160000000000004,24,810,644 +2003,7,28,11,30,260,17,13,0.147,2.4000000000000004,56.72,24,810,276 +2003,7,28,12,30,296,19,12,0.147,2.6,52.03,25,810,314 +2003,7,28,13,30,117,2,12,0.147,2.7,52.11,25,810,120 +2003,7,28,14,30,345,439,12,0.147,2.6,56.06,24,810,696 +2003,7,28,15,30,244,501,12,0.147,2.4000000000000004,60.050000000000004,23,810,579 +2003,7,28,16,30,204,41,12,0.147,2,59.57,23,810,225 +2003,7,28,17,30,132,98,12,0.147,1.4000000000000001,62.870000000000005,22,810,164 +2003,7,28,18,30,53,97,13,0.147,0.8,75.59,20,810,66 +2003,7,28,19,30,0,0,13,0.147,0.8,84.39,18,810,0 +2003,7,28,20,30,0,0,13,0.147,0.9,82.51,18,810,0 +2003,7,28,21,30,0,0,12,0.147,0.8,86.81,17,810,0 +2003,7,28,22,30,0,0,12,0.147,0.7000000000000001,84.97,17,810,0 +2003,7,28,23,30,0,0,12,0.147,0.7000000000000001,87.98,16,810,0 +2003,7,29,0,30,0,0,11,0.147,0.8,90.78,15,810,0 +2003,7,29,1,30,0,0,10,0.147,0.9,87.57000000000001,15,810,0 +2003,7,29,2,30,0,0,10,0.147,1.1,90.62,14,810,0 +2003,7,29,3,30,0,0,10,0.147,1.6,89.08,14,810,0 +2003,7,29,4,30,0,0,10,0.147,2.2,87.94,14,810,0 +2003,7,29,5,30,26,0,10,0.147,2.7,78.05,16,810,26 +2003,7,29,6,30,108,159,11,0.147,2.7,69.85000000000001,19,810,152 +2003,7,29,7,30,169,23,11,0.147,2.4000000000000004,59.96,22,810,180 +2003,7,29,8,30,299,179,11,0.147,2.5,51.57,24,810,412 +2003,7,29,9,30,357,65,11,0.147,2.8000000000000003,47.34,25,810,407 +2003,7,29,10,30,213,733,10,0.147,2.9000000000000004,43.21,26,810,849 +2003,7,29,11,30,472,394,10,0.147,3,42.32,26,810,835 +2003,7,29,12,30,70,0,10,0.147,3,45.04,25,810,70 +2003,7,29,13,30,164,11,10,0.147,2.9000000000000004,45.7,25,810,174 +2003,7,29,14,30,51,0,10,0.147,2.8000000000000003,49.02,24,810,51 +2003,7,29,15,30,247,487,10,0.147,2.5,52.03,23,810,572 +2003,7,29,16,30,171,476,10,0.147,1.9000000000000001,51.89,23,810,412 +2003,7,29,17,30,97,453,10,0.147,1,55.24,22,810,245 +2003,7,29,18,30,42,350,11,0.147,0.6000000000000001,71.98,19,810,89 +2003,7,29,19,30,0,0,11,0.147,0.9,79.38,17,810,0 +2003,7,29,20,30,0,0,10,0.147,1,82.04,16,810,0 +2003,7,29,21,30,0,0,10,0.147,1,80.75,16,810,0 +2003,7,29,22,30,0,0,10,0.147,1,79.41,16,810,0 +2003,7,29,23,30,0,0,10,0.147,0.9,83.29,15,810,0 +2003,7,30,0,30,0,0,10,0.147,0.9,82.09,15,810,0 +2003,7,30,1,30,0,0,9,0.147,1,86.74,14,810,0 +2003,7,30,2,30,0,0,9,0.147,1,92.13,13,810,0 +2003,7,30,3,30,0,0,9,0.147,1.2000000000000002,97.69,12,810,0 +2003,7,30,4,30,0,0,9,0.147,1.5,90.34,13,810,0 +2003,7,30,5,30,29,248,9,0.147,2.2,79.44,15,810,50 +2003,7,30,6,30,66,577,9,0.147,1.9000000000000001,61.45,19,810,225 +2003,7,30,7,30,87,738,7,0.147,1,42.36,23,810,427 +2003,7,30,8,30,103,821,5,0.147,1.2000000000000002,30.16,26,810,618 +2003,7,30,9,30,116,866,4,0.147,1.7000000000000002,27.37,27,810,779 +2003,7,30,10,30,440,104,4,0.147,2,25.12,28,810,530 +2003,7,30,11,30,438,362,4,0.147,2.5,23.37,29,810,771 +2003,7,30,12,30,478,396,4,0.147,2.8000000000000003,22.23,30,810,846 +2003,7,30,13,30,129,886,4,0.147,2.9000000000000004,22.650000000000002,30,810,912 +2003,7,30,14,30,160,9,5,0.147,2.5,24.580000000000002,29,810,168 +2003,7,30,15,30,194,646,5,0.147,2,26.34,28,810,624 +2003,7,30,16,30,91,759,5,0.147,1.7000000000000002,27.78,27,810,473 +2003,7,30,17,30,68,646,5,0.147,1.3,31.89,25,810,276 +2003,7,30,18,30,38,395,8,0.147,1,48.04,22,810,90 +2003,7,30,19,30,0,0,7,0.147,1.1,50.86,20,810,0 +2003,7,30,20,30,0,0,7,0.147,1.2000000000000002,51.800000000000004,19,810,0 +2003,7,30,21,30,0,0,6,0.147,1.4000000000000001,56.72,17,810,0 +2003,7,30,22,30,0,0,5,0.147,1.6,54.65,17,810,0 +2003,7,30,23,30,0,0,5,0.147,1.7000000000000002,55.65,16,810,0 +2003,7,31,0,30,0,0,4,0.147,1.7000000000000002,56.980000000000004,15,810,0 +2003,7,31,1,30,0,0,4,0.147,1.6,55.89,15,810,0 +2003,7,31,2,30,0,0,4,0.147,1.6,58.63,14,810,0 +2003,7,31,3,30,0,0,3,0.147,1.7000000000000002,57.27,14,810,0 +2003,7,31,4,30,0,0,3,0.147,2,51.93,15,810,0 +2003,7,31,5,30,29,184,3,0.147,3,43.33,18,810,44 +2003,7,31,6,30,76,463,3,0.147,3.4000000000000004,32.47,22,810,202 +2003,7,31,7,30,164,419,3,0.147,3,25.53,26,810,356 +2003,7,31,8,30,212,531,3,0.147,2.8000000000000003,21.650000000000002,29,810,544 +2003,7,31,9,30,304,519,3,0.147,2.8000000000000003,21.05,30,810,701 +2003,7,31,10,30,397,476,3,0.147,2.5,20.1,31,810,809 +2003,7,31,11,30,471,401,3,0.147,2.1,20.080000000000002,31,810,839 +2003,7,31,12,30,442,366,4,0.147,1.4000000000000001,21.650000000000002,31,810,781 +2003,7,31,13,30,443,293,4,0.147,1.1,22.6,30,810,702 +2003,7,31,14,30,398,120,5,0.147,1.7000000000000002,25.17,29,810,494 +2003,7,31,15,30,240,508,6,0.147,2.5,30.07,27,810,577 +2003,7,31,16,30,207,315,7,0.147,2.8000000000000003,34.62,26,810,365 +2003,7,31,17,30,119,34,9,0.147,2.5,44.47,24,810,130 +2003,7,31,18,30,15,0,10,0.147,2,54.75,22,810,15 +2003,7,31,19,30,0,0,10,0.147,2,62.07,20,810,0 +2003,7,31,20,30,0,0,10,0.147,2.6,60.550000000000004,20,810,0 +2003,7,31,21,30,0,0,9,0.147,3.1,62.660000000000004,20,810,0 +2003,7,31,22,30,0,0,9,0.147,3.4000000000000004,61.21,19,810,0 +2003,7,31,23,30,0,0,9,0.147,3.5,64.36,18,810,0 +2003,8,1,0,30,0,0,9,0.147,3.5,64.37,18,810,0 +2003,8,1,1,30,0,0,9,0.147,3.4000000000000004,69.43,17,810,0 +2003,8,1,2,30,0,0,9,0.147,3.2,70.7,17,810,0 +2003,8,1,3,30,0,0,9,0.147,3,76.63,16,810,0 +2003,8,1,4,30,0,0,10,0.147,3,77.02,16,810,0 +2003,8,1,5,30,27,214,10,0.147,3.1,68.42,18,810,44 +2003,8,1,6,30,51,641,10,0.147,2.8000000000000003,56.59,21,810,224 +2003,8,1,7,30,160,432,9,0.147,2.3000000000000003,42.36,25,810,357 +2003,8,1,8,30,127,768,7,0.147,2.2,31.13,28,810,606 +2003,8,1,9,30,318,436,6,0.147,2.6,26.63,29,810,650 +2003,8,1,10,30,402,459,5,0.147,3,24.02,30,810,799 +2003,8,1,11,30,410,528,5,0.147,3.1,21.98,31,810,895 +2003,8,1,12,30,490,192,4,0.147,3.1,20.38,32,810,668 +2003,8,1,13,30,411,364,4,0.147,2.9000000000000004,21.56,32,810,732 +2003,8,1,14,30,384,83,4,0.147,2.9000000000000004,21.67,31,810,449 +2003,8,1,15,30,81,0,5,0.147,3.2,23.38,30,810,81 +2003,8,1,16,30,138,580,5,0.147,3.4000000000000004,25.54,29,810,428 +2003,8,1,17,30,118,269,6,0.147,3.2,32.6,26,810,204 +2003,8,1,18,30,47,166,8,0.147,2.5,49.02,23,810,68 +2003,8,1,19,30,0,0,9,0.147,2,57.550000000000004,20,810,0 +2003,8,1,20,30,0,0,9,0.147,1.7000000000000002,62.97,19,810,0 +2003,8,1,21,30,0,0,10,0.147,1.5,68.14,18,810,0 +2003,8,1,22,30,0,0,9,0.147,1.3,71.74,17,810,0 +2003,8,1,23,30,0,0,9,0.147,1.2000000000000002,70.62,17,810,0 +2003,8,2,0,30,0,0,9,0.147,1.1,73.01,16,810,0 +2003,8,2,1,30,0,0,8,0.147,1.1,70.2,16,810,0 +2003,8,2,2,30,0,0,8,0.147,1.1,73.02,15,810,0 +2003,8,2,3,30,0,0,8,0.147,1.4000000000000001,72.63,15,810,0 +2003,8,2,4,30,0,0,8,0.147,1.9000000000000001,73.25,15,810,0 +2003,8,2,5,30,26,244,8,0.147,2.5,67.12,17,810,45 +2003,8,2,6,30,61,591,9,0.147,2.8000000000000003,54.69,21,810,219 +2003,8,2,7,30,97,674,10,0.147,2.9000000000000004,46.81,24,810,403 +2003,8,2,8,30,98,824,8,0.147,2.9000000000000004,35.71,27,810,610 +2003,8,2,9,30,108,871,7,0.147,3,29.990000000000002,29,810,771 +2003,8,2,10,30,380,42,7,0.147,3.2,27.54,30,810,417 +2003,8,2,11,30,120,909,7,0.147,3.5,25.560000000000002,31,810,952 +2003,8,2,12,30,125,901,7,0.147,3.7,23.91,32,810,956 +2003,8,2,13,30,412,470,7,0.147,3.7,23.94,32,810,826 +2003,8,2,14,30,118,858,7,0.147,3.6,25.27,31,810,795 +2003,8,2,15,30,117,792,7,0.147,3.3000000000000003,26.72,30,810,638 +2003,8,2,16,30,106,696,7,0.147,2.9000000000000004,28.59,29,810,452 +2003,8,2,17,30,110,334,7,0.147,2,35.12,26,810,215 +2003,8,2,18,30,45,221,10,0.147,1.3,49.95,23,810,72 +2003,8,2,19,30,0,0,10,0.147,1.2000000000000002,57.38,21,810,0 +2003,8,2,20,30,0,0,10,0.147,0.8,57.53,21,810,0 +2003,8,2,21,30,0,0,10,0.147,0.4,62.31,20,810,0 +2003,8,2,22,30,0,0,11,0.147,0.6000000000000001,69.07000000000001,19,810,0 +2003,8,2,23,30,0,0,11,0.147,1.1,68.95,19,810,0 +2003,8,3,0,30,0,0,10,0.147,1.8,66.83,19,810,0 +2003,8,3,1,30,0,0,10,0.147,2.7,65.43,19,810,0 +2003,8,3,2,30,0,0,10,0.147,3.1,66.41,19,810,0 +2003,8,3,3,30,0,0,11,0.147,3.1,73.45,18,810,0 +2003,8,3,4,30,0,0,11,0.147,2.9000000000000004,76.65,18,810,0 +2003,8,3,5,30,27,183,12,0.147,2.8000000000000003,73.65,19,810,41 +2003,8,3,6,30,71,524,12,0.147,2.5,65.09,21,810,210 +2003,8,3,7,30,93,697,12,0.147,2,53.15,24,810,408 +2003,8,3,8,30,113,778,11,0.147,2.2,41.68,27,810,595 +2003,8,3,9,30,126,826,10,0.147,2.9000000000000004,35.37,29,810,753 +2003,8,3,10,30,361,542,10,0.147,2.9000000000000004,35.04,30,810,827 +2003,8,3,11,30,483,206,10,0.147,2.7,33.160000000000004,30,810,671 +2003,8,3,12,30,266,17,10,0.147,2.1,35.51,29,810,282 +2003,8,3,13,30,238,16,10,0.147,1.3,35.65,29,810,252 +2003,8,3,14,30,369,65,10,0.147,0.9,37.96,28,810,420 +2003,8,3,15,30,177,9,10,0.147,1.8,40.64,27,810,183 +2003,8,3,16,30,111,0,11,0.147,3.3000000000000003,47.050000000000004,25,810,111 +2003,8,3,17,30,34,0,11,0.147,4.1000000000000005,55.27,23,810,34 +2003,8,3,18,30,16,0,12,0.147,3.5,64.89,21,810,16 +2003,8,3,19,30,0,0,12,0.147,2.1,75.27,19,810,0 +2003,8,3,20,30,0,0,12,0.147,1.2000000000000002,77.10000000000001,19,810,0 +2003,8,3,21,30,0,0,12,0.147,1.1,82.21000000000001,18,810,0 +2003,8,3,22,30,0,0,12,0.147,1.1,86.55,17,810,0 +2003,8,3,23,30,0,0,12,0.147,1.1,85.85000000000001,17,810,0 +2003,8,4,0,30,0,0,12,0.147,1.3,90.37,16,810,0 +2003,8,4,1,30,0,0,12,0.147,1.7000000000000002,88.25,16,810,0 +2003,8,4,2,30,0,0,11,0.147,2,85.66,16,810,0 +2003,8,4,3,30,0,0,11,0.147,2.5,82.94,16,810,0 +2003,8,4,4,30,0,0,10,0.147,3,80.19,16,810,0 +2003,8,4,5,30,22,320,10,0.147,3.4000000000000004,73.62,17,810,45 +2003,8,4,6,30,50,661,10,0.147,3,57.61,21,810,224 +2003,8,4,7,30,66,802,9,0.147,2.6,45.46,24,810,427 +2003,8,4,8,30,77,877,8,0.147,2.2,34.84,27,810,619 +2003,8,4,9,30,86,916,7,0.147,1.8,30.98,28,810,779 +2003,8,4,10,30,94,934,7,0.147,1.4000000000000001,28.400000000000002,29,810,895 +2003,8,4,11,30,99,940,6,0.147,1.1,26.48,30,810,956 +2003,8,4,12,30,108,925,6,0.147,1,26.11,30,810,958 +2003,8,4,13,30,116,898,6,0.147,1,25.84,30,810,902 +2003,8,4,14,30,109,876,6,0.147,1,27.16,29,810,796 +2003,8,4,15,30,311,225,6,0.147,0.8,26.66,29,810,459 +2003,8,4,16,30,96,725,5,0.147,0.7000000000000001,27.57,28,810,452 +2003,8,4,17,30,102,402,5,0.14200000000000002,0.7000000000000001,31.07,26,810,226 +2003,8,4,18,30,39,233,9,0.14200000000000002,0.9,47.08,23,810,66 +2003,8,4,19,30,0,0,8,0.14200000000000002,1.1,50.58,21,810,0 +2003,8,4,20,30,0,0,8,0.14200000000000002,1.1,48.97,21,810,0 +2003,8,4,21,30,0,0,7,0.14200000000000002,0.9,51.22,20,810,0 +2003,8,4,22,30,0,0,7,0.14200000000000002,0.6000000000000001,53.5,19,810,0 +2003,8,4,23,30,0,0,7,0.14200000000000002,0.6000000000000001,52.33,19,810,0 +2003,8,5,0,30,0,0,6,0.14200000000000002,0.8,54.410000000000004,18,810,0 +2003,8,5,1,30,0,0,6,0.14200000000000002,1,56.65,17,810,0 +2003,8,5,2,30,0,0,6,0.14200000000000002,1,55.19,17,810,0 +2003,8,5,3,30,0,0,5,0.14200000000000002,0.9,58.160000000000004,16,810,0 +2003,8,5,4,30,0,0,5,0.14200000000000002,1,57.38,16,810,0 +2003,8,5,5,30,23,268,6,0.14200000000000002,1.3,51.9,18,810,42 +2003,8,5,6,30,53,636,6,0.14200000000000002,1.2000000000000002,40.56,22,810,219 +2003,8,5,7,30,69,793,4,0.14200000000000002,1.1,30.92,25,810,423 +2003,8,5,8,30,82,869,4,0.14200000000000002,1.5,26.51,27,810,616 +2003,8,5,9,30,91,910,4,0.14200000000000002,2,23.45,29,810,778 +2003,8,5,10,30,396,460,4,0.14200000000000002,2.4000000000000004,21.79,30,810,790 +2003,8,5,11,30,355,609,4,0.14200000000000002,2.8000000000000003,20.400000000000002,31,810,910 +2003,8,5,12,30,406,535,4,0.14200000000000002,3.3000000000000003,19.28,32,810,896 +2003,8,5,13,30,419,436,4,0.14200000000000002,3.6,19.59,32,810,800 +2003,8,5,14,30,113,871,4,0.14200000000000002,3.7,21.27,31,810,794 +2003,8,5,15,30,242,475,4,0.14200000000000002,3.6,23.080000000000002,30,810,551 +2003,8,5,16,30,106,685,5,0.14200000000000002,3.1,25.22,29,810,441 +2003,8,5,17,30,74,577,6,0.14200000000000002,2.1,32.4,26,810,251 +2003,8,5,18,30,38,277,9,0.14200000000000002,1.5,46.56,23,810,70 +2003,8,5,19,30,0,0,9,0.14200000000000002,1.8,53.480000000000004,21,810,0 +2003,8,5,20,30,0,0,9,0.14200000000000002,2.6,56.550000000000004,20,810,0 +2003,8,5,21,30,0,0,9,0.14200000000000002,4,61.02,19,810,0 +2003,8,5,22,30,0,0,9,0.14200000000000002,4.6000000000000005,67.25,18,810,0 +2003,8,5,23,30,0,0,10,0.14200000000000002,4,72.81,17,810,0 +2003,8,6,0,30,0,0,9,0.14200000000000002,2.8000000000000003,71.32000000000001,17,810,0 +2003,8,6,1,30,0,0,9,0.14200000000000002,1.8,73.88,16,810,0 +2003,8,6,2,30,0,0,9,0.14200000000000002,1.4000000000000001,72.21000000000001,16,810,0 +2003,8,6,3,30,0,0,8,0.14200000000000002,1.3,74.82000000000001,15,810,0 +2003,8,6,4,30,0,0,8,0.14200000000000002,1.3,72.87,15,810,0 +2003,8,6,5,30,22,254,8,0.14200000000000002,1.6,60.550000000000004,18,810,39 +2003,8,6,6,30,57,605,8,0.14200000000000002,1.3,48.17,22,810,213 +2003,8,6,7,30,76,761,8,0.14200000000000002,0.8,36.59,26,810,415 +2003,8,6,8,30,93,837,6,0.14200000000000002,1.1,26.830000000000002,29,810,606 +2003,8,6,9,30,268,589,5,0.14200000000000002,1.7000000000000002,22.07,32,810,712 +2003,8,6,10,30,382,492,4,0.14200000000000002,2.3000000000000003,18.67,33,810,803 +2003,8,6,11,30,481,163,3,0.14200000000000002,3,16.95,34,810,630 +2003,8,6,12,30,485,176,3,0.14200000000000002,3.4000000000000004,15.52,35,810,647 +2003,8,6,13,30,264,17,3,0.14200000000000002,3.5,16.21,34,810,279 +2003,8,6,14,30,327,489,3,0.14200000000000002,3.3000000000000003,17.36,33,810,709 +2003,8,6,15,30,306,101,4,0.14200000000000002,2.8000000000000003,19.22,32,810,372 +2003,8,6,16,30,63,0,4,0.14200000000000002,2,21.650000000000002,31,810,63 +2003,8,6,17,30,120,111,6,0.14200000000000002,1.2000000000000002,28.95,28,810,154 +2003,8,6,18,30,39,83,10,0.14200000000000002,0.9,42.95,26,810,48 +2003,8,6,19,30,0,0,9,0.14200000000000002,1,42.53,25,810,0 +2003,8,6,20,30,0,0,9,0.14200000000000002,1.1,43.93,24,810,0 +2003,8,6,21,30,0,0,8,0.14200000000000002,1.1,45.54,23,810,0 +2003,8,6,22,30,0,0,8,0.14200000000000002,1,46.64,22,810,0 +2003,8,6,23,30,0,0,7,0.14200000000000002,1.2000000000000002,45.49,22,810,0 +2003,8,7,0,30,0,0,7,0.14200000000000002,1.3,48.03,21,810,0 +2003,8,7,1,30,0,0,7,0.14200000000000002,1.4000000000000001,50.65,20,810,0 +2003,8,7,2,30,0,0,7,0.14200000000000002,1.3,54.2,19,810,0 +2003,8,7,3,30,0,0,7,0.14200000000000002,1.3,58.17,18,810,0 +2003,8,7,4,30,0,0,7,0.14200000000000002,1.9000000000000001,56.03,18,810,0 +2003,8,7,5,30,17,0,6,0.14200000000000002,2.9000000000000004,50.89,19,810,17 +2003,8,7,6,30,84,342,6,0.14200000000000002,3.1,42.06,22,810,171 +2003,8,7,7,30,132,521,6,0.14200000000000002,2.7,32.15,26,810,363 +2003,8,7,8,30,87,842,5,0.14200000000000002,2.4000000000000004,25.240000000000002,29,810,602 +2003,8,7,9,30,95,889,5,0.14200000000000002,2.4000000000000004,20.97,32,810,763 +2003,8,7,10,30,414,72,5,0.14200000000000002,2.8000000000000003,19.89,33,810,476 +2003,8,7,11,30,441,219,5,0.14200000000000002,3,21.41,32,810,639 +2003,8,7,12,30,121,4,6,0.14200000000000002,2.8000000000000003,23.54,31,810,125 +2003,8,7,13,30,244,16,7,0.14200000000000002,2.4000000000000004,26.61,30,810,258 +2003,8,7,14,30,377,293,7,0.14200000000000002,2.2,29.77,29,810,605 +2003,8,7,15,30,141,4,8,0.14200000000000002,2.1,32.64,28,810,144 +2003,8,7,16,30,46,0,9,0.14200000000000002,2.2,39.800000000000004,26,810,46 +2003,8,7,17,30,43,0,11,0.14200000000000002,2.4000000000000004,52.980000000000004,23,810,43 +2003,8,7,18,30,21,0,12,0.14200000000000002,2,65.2,21,810,21 +2003,8,7,19,30,0,0,12,0.14200000000000002,1.1,72.3,20,810,0 +2003,8,7,20,30,0,0,13,0.14200000000000002,0.9,78.46000000000001,19,810,0 +2003,8,7,21,30,0,0,13,0.14200000000000002,1.2000000000000002,78.49,19,810,0 +2003,8,7,22,30,0,0,13,0.14200000000000002,0.8,83.59,18,810,0 +2003,8,7,23,30,0,0,13,0.14200000000000002,0.5,89.22,17,810,0 +2003,8,8,0,30,0,0,13,0.14200000000000002,0.4,88.23,17,810,0 +2003,8,8,1,30,0,0,12,0.14200000000000002,0.6000000000000001,92.79,16,810,0 +2003,8,8,2,30,0,0,12,0.14200000000000002,0.9,91.74,16,810,0 +2003,8,8,3,30,0,0,12,0.14200000000000002,1,90.16,16,810,0 +2003,8,8,4,30,0,0,12,0.14200000000000002,1.1,88.08,16,810,0 +2003,8,8,5,30,13,0,12,0.14200000000000002,1.4000000000000001,78.26,18,810,13 +2003,8,8,6,30,69,0,12,0.14200000000000002,1.5,70.34,20,810,69 +2003,8,8,7,30,169,35,11,0.14200000000000002,1.1,55.81,23,810,185 +2003,8,8,8,30,286,124,10,0.14200000000000002,0.9,45.93,25,810,362 +2003,8,8,9,30,184,757,10,0.14200000000000002,1.3,41.6,27,810,751 +2003,8,8,10,30,103,901,9,0.14200000000000002,1.8,38.37,28,810,869 +2003,8,8,11,30,102,0,9,0.14200000000000002,2,35.410000000000004,28,810,102 +2003,8,8,12,30,370,29,9,0.14200000000000002,1.8,34.7,28,810,396 +2003,8,8,13,30,440,271,9,0.14200000000000002,1.4000000000000001,36.97,27,810,674 +2003,8,8,14,30,106,866,9,0.14200000000000002,1.2000000000000002,37.52,27,810,777 +2003,8,8,15,30,96,824,9,0.14200000000000002,1,38.04,27,810,625 +2003,8,8,16,30,135,565,9,0.14200000000000002,0.7000000000000001,40.93,26,810,406 +2003,8,8,17,30,4,0,10,0.14200000000000002,0.6000000000000001,46.18,25,810,4 +2003,8,8,18,30,1,0,12,0.14200000000000002,0.7000000000000001,58.36,23,810,1 +2003,8,8,19,30,0,0,11,0.14200000000000002,1,60.33,21,810,0 +2003,8,8,20,30,0,0,10,0.14200000000000002,1.2000000000000002,66.83,19,810,0 +2003,8,8,21,30,0,0,10,0.14200000000000002,1.4000000000000001,70.02,18,810,0 +2003,8,8,22,30,0,0,10,0.14200000000000002,1.5,72.86,17,810,0 +2003,8,8,23,30,0,0,9,0.14200000000000002,1.6,71.5,17,810,0 +2003,8,9,0,30,0,0,9,0.14200000000000002,1.7000000000000002,75.15,16,810,0 +2003,8,9,1,30,0,0,9,0.14200000000000002,1.8,74.05,16,810,0 +2003,8,9,2,30,0,0,9,0.14200000000000002,1.7000000000000002,72.91,16,810,0 +2003,8,9,3,30,0,0,9,0.14200000000000002,1.7000000000000002,72.24,16,810,0 +2003,8,9,4,30,0,0,9,0.14200000000000002,1.9000000000000001,72.26,16,810,0 +2003,8,9,5,30,20,204,9,0.14200000000000002,2.4000000000000004,64.3,18,810,32 +2003,8,9,6,30,77,387,9,0.14200000000000002,2.3000000000000003,51,22,810,174 +2003,8,9,7,30,99,644,9,0.14200000000000002,1.7000000000000002,42.2,25,810,381 +2003,8,9,8,30,184,595,8,0.14200000000000002,1.6,33.71,28,810,546 +2003,8,9,9,30,267,583,8,0.14200000000000002,1.6,31.07,29,810,703 +2003,8,9,10,30,354,33,8,0.14200000000000002,1.7000000000000002,28.84,30,810,383 +2003,8,9,11,30,440,392,8,0.14200000000000002,1.7000000000000002,28.650000000000002,30,810,795 +2003,8,9,12,30,480,201,8,0.14200000000000002,1.4000000000000001,29.02,30,810,663 +2003,8,9,13,30,170,11,8,0.14200000000000002,1.3,29.85,30,810,180 +2003,8,9,14,30,389,206,8,0.14200000000000002,1.6,30.060000000000002,30,810,548 +2003,8,9,15,30,300,247,8,0.14200000000000002,1.2000000000000002,31.38,29,810,459 +2003,8,9,16,30,83,747,8,0.14200000000000002,2.4000000000000004,33.56,28,810,439 +2003,8,9,17,30,116,138,9,0.14200000000000002,4.7,43.660000000000004,25,810,156 +2003,8,9,18,30,33,180,11,0.14200000000000002,4.3,63.78,21,810,51 +2003,8,9,19,30,0,0,12,0.14200000000000002,1.8,76.19,19,810,0 +2003,8,9,20,30,0,0,13,0.14200000000000002,0.9,82.67,18,810,0 +2003,8,9,21,30,0,0,12,0.14200000000000002,1.8,81.94,18,810,0 +2003,8,9,22,30,0,0,12,0.14200000000000002,2.3000000000000003,78.93,18,810,0 +2003,8,9,23,30,0,0,11,0.14200000000000002,2.3000000000000003,75.55,18,810,0 +2003,8,10,0,30,0,0,11,0.14200000000000002,1.9000000000000001,72.48,18,810,0 +2003,8,10,1,30,0,0,10,0.14200000000000002,1.5,70.02,18,810,0 +2003,8,10,2,30,0,0,10,0.14200000000000002,1.3,73.98,17,810,0 +2003,8,10,3,30,0,0,10,0.14200000000000002,1.9000000000000001,74.25,17,810,0 +2003,8,10,4,30,0,0,10,0.14200000000000002,2.9000000000000004,74.41,17,810,0 +2003,8,10,5,30,20,189,10,0.14200000000000002,3.3000000000000003,70.28,18,810,31 +2003,8,10,6,30,56,583,10,0.14200000000000002,2.9000000000000004,63.33,21,810,200 +2003,8,10,7,30,107,609,10,0.14200000000000002,2.4000000000000004,49.45,23,810,372 +2003,8,10,8,30,84,849,9,0.14200000000000002,2.3000000000000003,38.57,26,810,598 +2003,8,10,9,30,91,903,7,0.14200000000000002,2.5,29.89,29,810,764 +2003,8,10,10,30,95,935,6,0.14200000000000002,2.8000000000000003,26.51,30,810,886 +2003,8,10,11,30,95,953,6,0.14200000000000002,3.1,23.7,31,810,953 +2003,8,10,12,30,460,297,5,0.14200000000000002,3.4000000000000004,21.38,32,810,730 +2003,8,10,13,30,97,938,5,0.14200000000000002,3.7,20.580000000000002,32,810,905 +2003,8,10,14,30,90,915,4,0.14200000000000002,3.8000000000000003,20.07,32,810,795 +2003,8,10,15,30,85,867,4,0.14200000000000002,3.7,21.080000000000002,31,810,638 +2003,8,10,16,30,93,715,4,0.14200000000000002,3.3000000000000003,23.64,29,810,432 +2003,8,10,17,30,63,624,4,0.14200000000000002,2.2,27,27,810,243 +2003,8,10,18,30,31,304,6,0.14200000000000002,1.4000000000000001,39.660000000000004,23,810,60 +2003,8,10,19,30,0,0,7,0.14200000000000002,1.4000000000000001,49.31,20,810,0 +2003,8,10,20,30,0,0,7,0.14200000000000002,1.5,52.69,19,810,0 +2003,8,10,21,30,0,0,7,0.14200000000000002,1.6,57.730000000000004,18,810,0 +2003,8,10,22,30,0,0,7,0.14200000000000002,1.5,58.97,18,810,0 +2003,8,10,23,30,0,0,8,0.14200000000000002,1.3,64.31,18,810,0 +2003,8,11,0,30,0,0,8,0.14200000000000002,1.1,66.06,17,810,0 +2003,8,11,1,30,0,0,9,0.14200000000000002,0.9,67.57000000000001,17,810,0 +2003,8,11,2,30,0,0,9,0.14200000000000002,1,68.81,17,810,0 +2003,8,11,3,30,0,0,9,0.14200000000000002,1.1,74.47,16,810,0 +2003,8,11,4,30,0,0,9,0.14200000000000002,1.1,75.32000000000001,16,810,0 +2003,8,11,5,30,19,200,10,0.14200000000000002,1.7000000000000002,63.54,19,810,29 +2003,8,11,6,30,56,578,10,0.14200000000000002,2.1,55.95,22,810,198 +2003,8,11,7,30,76,742,10,0.14200000000000002,1.9000000000000001,46.480000000000004,25,810,398 +2003,8,11,8,30,87,834,9,0.14200000000000002,2,36.22,28,810,590 +2003,8,11,9,30,97,882,9,0.14200000000000002,2.4000000000000004,30.42,30,810,752 +2003,8,11,10,30,438,178,8,0.14200000000000002,2.8000000000000003,27.36,31,810,588 +2003,8,11,11,30,337,24,7,0.14200000000000002,3.3000000000000003,24.86,32,810,359 +2003,8,11,12,30,467,264,7,0.14200000000000002,3.6,24.38,33,810,705 +2003,8,11,13,30,242,16,7,0.14200000000000002,3.8000000000000003,24.07,32,810,256 +2003,8,11,14,30,387,142,7,0.14200000000000002,4,25.400000000000002,31,810,496 +2003,8,11,15,30,300,224,7,0.14200000000000002,4.1000000000000005,27.240000000000002,30,810,442 +2003,8,11,16,30,125,588,7,0.14200000000000002,3.8000000000000003,29.88,29,810,402 +2003,8,11,17,30,109,214,8,0.14200000000000002,2.9000000000000004,37.77,26,810,170 +2003,8,11,18,30,29,4,10,0.14200000000000002,2,52.47,23,810,30 +2003,8,11,19,30,0,0,11,0.14200000000000002,1.8,61.480000000000004,21,810,0 +2003,8,11,20,30,0,0,11,0.14200000000000002,1.7000000000000002,66.13,20,810,0 +2003,8,11,21,30,0,0,11,0.14200000000000002,1.7000000000000002,71.57000000000001,19,810,0 +2003,8,11,22,30,0,0,11,0.14200000000000002,1.7000000000000002,76.5,18,810,0 +2003,8,11,23,30,0,0,11,0.14200000000000002,1.9000000000000001,81.29,17,810,0 +2003,8,12,0,30,0,0,11,0.14200000000000002,2.2,80.93,17,810,0 +2003,8,12,1,30,0,0,11,0.14200000000000002,2.4000000000000004,82.59,16,810,0 +2003,8,12,2,30,0,0,10,0.14200000000000002,2.2,84.19,15,810,0 +2003,8,12,3,30,0,0,9,0.14200000000000002,1.7000000000000002,81.14,15,810,0 +2003,8,12,4,30,0,0,9,0.14200000000000002,1.3,78.86,15,810,0 +2003,8,12,5,30,19,180,9,0.14200000000000002,1.3,69.16,17,810,28 +2003,8,12,6,30,57,564,9,0.14200000000000002,1.2000000000000002,55.19,21,810,194 +2003,8,12,7,30,78,732,9,0.14200000000000002,1.4000000000000001,43.22,25,810,394 +2003,8,12,8,30,92,820,9,0.14200000000000002,2.3000000000000003,34.49,28,810,585 +2003,8,12,9,30,104,865,9,0.14200000000000002,2.8000000000000003,32.37,29,810,745 +2003,8,12,10,30,115,886,9,0.14200000000000002,3.3000000000000003,30.51,30,810,860 +2003,8,12,11,30,120,897,9,0.14200000000000002,3.6,30.42,31,810,924 +2003,8,12,12,30,407,516,9,0.14200000000000002,3.9000000000000004,28.72,31,810,873 +2003,8,12,13,30,360,542,9,0.14200000000000002,4,28.740000000000002,31,810,825 +2003,8,12,14,30,320,454,8,0.14200000000000002,4.1000000000000005,30.35,30,810,667 +2003,8,12,15,30,234,470,8,0.14200000000000002,4.2,31.94,30,810,530 +2003,8,12,16,30,97,692,8,0.14200000000000002,4.1000000000000005,33.58,29,810,420 +2003,8,12,17,30,86,411,9,0.145,3.3000000000000003,38.57,26,810,202 +2003,8,12,18,30,14,0,10,0.145,2.5,47.88,24,810,14 +2003,8,12,19,30,0,0,10,0.145,2.3000000000000003,55.03,22,810,0 +2003,8,12,20,30,0,0,10,0.145,2.3000000000000003,58.7,21,810,0 +2003,8,12,21,30,0,0,10,0.145,2.4000000000000004,66.15,19,810,0 +2003,8,12,22,30,0,0,10,0.145,2.6,65.09,19,810,0 +2003,8,12,23,30,0,0,10,0.145,2.8000000000000003,68.37,18,810,0 +2003,8,13,0,30,0,0,10,0.145,3,68.4,18,810,0 +2003,8,13,1,30,0,0,10,0.145,3,74.06,17,810,0 +2003,8,13,2,30,0,0,10,0.145,2.7,76.12,17,810,0 +2003,8,13,3,30,0,0,11,0.145,2.2,82.8,16,810,0 +2003,8,13,4,30,0,0,11,0.145,1.8,82.85000000000001,16,810,0 +2003,8,13,5,30,18,168,11,0.145,1.7000000000000002,77.25,17,810,26 +2003,8,13,6,30,56,567,11,0.145,1.7000000000000002,60.2,21,810,192 +2003,8,13,7,30,77,737,10,0.145,1.8,46.44,25,810,393 +2003,8,13,8,30,92,823,10,0.145,2.2,36.75,28,810,584 +2003,8,13,9,30,104,870,9,0.145,2.6,33.44,29,810,746 +2003,8,13,10,30,115,892,9,0.145,3.1,30.68,30,810,864 +2003,8,13,11,30,112,917,8,0.145,3.5,28.310000000000002,31,810,932 +2003,8,13,12,30,113,919,8,0.145,3.8000000000000003,25.57,32,810,939 +2003,8,13,13,30,109,911,7,0.145,4,23.96,32,810,888 +2003,8,13,14,30,97,901,6,0.145,4.1000000000000005,23.53,31,810,783 +2003,8,13,15,30,87,863,4,0.145,4.2,22.95,30,810,629 +2003,8,13,16,30,74,794,3,0.145,4,22.35,29,810,442 +2003,8,13,17,30,59,639,2,0.145,3,24.87,26,810,236 +2003,8,13,18,30,26,316,3,0.145,2.1,34.17,22,810,53 +2003,8,13,19,30,0,0,4,0.145,2.1,43.04,19,810,0 +2003,8,13,20,30,0,0,4,0.145,2.1,46.51,18,810,0 +2003,8,13,21,30,0,0,4,0.145,2.2,48.93,17,810,0 +2003,8,13,22,30,0,0,4,0.145,2.2,51.02,16,810,0 +2003,8,13,23,30,0,0,3,0.145,2.2,50.02,16,810,0 +2003,8,14,0,30,0,0,3,0.145,2,53.03,15,810,0 +2003,8,14,1,30,0,0,3,0.145,1.5,52.82,15,810,0 +2003,8,14,2,30,0,0,3,0.145,1,52.5,15,810,0 +2003,8,14,3,30,0,0,3,0.145,0.7000000000000001,52.04,15,810,0 +2003,8,14,4,30,0,0,3,0.145,0.5,51.6,15,810,0 +2003,8,14,5,30,16,227,3,0.145,0.9,46.82,17,810,26 +2003,8,14,6,30,50,645,4,0.145,1.4000000000000001,41.14,20,810,203 +2003,8,14,7,30,68,810,3,0.145,1.7000000000000002,32.46,23,810,413 +2003,8,14,8,30,80,893,3,0.145,2,25.5,26,810,612 +2003,8,14,9,30,87,941,1,0.145,2.5,20.43,28,810,780 +2003,8,14,10,30,92,969,0,0.145,2.8000000000000003,17.650000000000002,29,810,904 +2003,8,14,11,30,95,982,0,0.145,3.2,15.44,30,810,971 +2003,8,14,12,30,95,983,-1,0.145,3.5,13.84,31,810,977 +2003,8,14,13,30,93,972,-1,0.145,3.6,13.46,31,810,921 +2003,8,14,14,30,86,952,-1,0.145,3.7,14.11,30,810,809 +2003,8,14,15,30,80,907,-1,0.145,3.7,15.040000000000001,29,810,647 +2003,8,14,16,30,70,828,-1,0.145,3.5,16.330000000000002,28,810,451 +2003,8,14,17,30,56,669,0,0.145,2.5,21.93,24,810,240 +2003,8,14,18,30,25,316,2,0.145,1.8,35.84,20,810,51 +2003,8,14,19,30,0,0,3,0.145,2.2,44.29,18,810,0 +2003,8,14,20,30,0,0,4,0.145,2.6,48.800000000000004,17,810,0 +2003,8,14,21,30,0,0,4,0.145,2.6,53.620000000000005,16,810,0 +2003,8,14,22,30,0,0,5,0.145,2.4000000000000004,55.17,16,810,0 +2003,8,14,23,30,0,0,5,0.145,2.1,60.300000000000004,15,810,0 +2003,8,15,0,30,0,0,5,0.145,1.9000000000000001,61.36,15,810,0 +2003,8,15,1,30,0,0,5,0.145,1.7000000000000002,62.15,15,810,0 +2003,8,15,2,30,0,0,6,0.145,1.4000000000000001,66.78,15,810,0 +2003,8,15,3,30,0,0,6,0.145,1,66.74,14,810,0 +2003,8,15,4,30,0,0,5,0.145,0.6000000000000001,66.6,14,810,0 +2003,8,15,5,30,16,155,6,0.145,0.5,63.2,16,810,23 +2003,8,15,6,30,57,568,6,0.145,0.6000000000000001,51.27,19,810,191 +2003,8,15,7,30,79,749,5,0.145,1.2000000000000002,39.550000000000004,22,810,396 +2003,8,15,8,30,94,837,4,0.145,2.1,30.6,25,810,591 +2003,8,15,9,30,103,892,4,0.145,2.7,25.97,27,810,758 +2003,8,15,10,30,108,922,3,0.145,3.3000000000000003,23.650000000000002,28,810,878 +2003,8,15,11,30,107,941,3,0.145,3.8000000000000003,21.86,29,810,944 +2003,8,15,12,30,108,939,3,0.145,4.1000000000000005,20.36,30,810,947 +2003,8,15,13,30,108,920,3,0.145,4.3,19.03,31,810,889 +2003,8,15,14,30,108,881,3,0.145,4.4,20.150000000000002,30,810,774 +2003,8,15,15,30,103,820,3,0.145,4.4,21.67,29,810,613 +2003,8,15,16,30,91,725,3,0.145,4.2,23.45,28,810,421 +2003,8,15,17,30,72,538,3,0.145,3.2,28.61,25,810,217 +2003,8,15,18,30,27,201,5,0.145,2.3000000000000003,37.92,22,810,43 +2003,8,15,19,30,0,0,5,0.145,2.3000000000000003,48.14,19,810,0 +2003,8,15,20,30,0,0,6,0.145,2.4000000000000004,51.93,18,810,0 +2003,8,15,21,30,0,0,6,0.145,2.2,55.300000000000004,17,810,0 +2003,8,15,22,30,0,0,6,0.145,1.8,55.5,17,810,0 +2003,8,15,23,30,0,0,6,0.145,1.5,59.34,16,810,0 +2003,8,16,0,30,0,0,6,0.145,1.4000000000000001,63.25,15,810,0 +2003,8,16,1,30,0,0,6,0.145,1.5,63.86,15,810,0 +2003,8,16,2,30,0,0,6,0.145,2.2,66.25,15,810,0 +2003,8,16,3,30,0,0,7,0.145,3,69.84,15,810,0 +2003,8,16,4,30,0,0,8,0.145,3.5,73.65,15,810,0 +2003,8,16,5,30,16,115,8,0.145,4.1000000000000005,71.64,16,810,20 +2003,8,16,6,30,71,378,9,0.145,4.4,61.08,19,810,159 +2003,8,16,7,30,86,705,9,0.145,3.7,47.19,23,810,383 +2003,8,16,8,30,100,806,8,0.145,3,36.5,26,810,577 +2003,8,16,9,30,112,857,7,0.145,2.8000000000000003,32.160000000000004,27,810,740 +2003,8,16,10,30,316,595,6,0.145,2.8000000000000003,29.12,28,810,812 +2003,8,16,11,30,124,899,6,0.145,2.9000000000000004,26.810000000000002,29,810,922 +2003,8,16,12,30,131,888,6,0.145,2.9000000000000004,25.13,30,810,924 +2003,8,16,13,30,370,513,6,0.145,2.8000000000000003,26.61,29,810,804 +2003,8,16,14,30,292,540,6,0.145,2.5,28.73,28,810,699 +2003,8,16,15,30,120,769,6,0.145,2,31.39,27,810,595 +2003,8,16,16,30,108,655,7,0.145,1.3,36.61,25,810,405 +2003,8,16,17,30,78,434,8,0.145,1.5,47.33,22,810,193 +2003,8,16,18,30,27,74,10,0.145,3.2,60.19,20,810,32 +2003,8,16,19,30,0,0,9,0.145,5.300000000000001,69.61,17,810,0 +2003,8,16,20,30,0,0,8,0.145,7,71.97,15,810,0 +2003,8,16,21,30,0,0,7,0.145,7.2,67.48,15,810,0 +2003,8,16,22,30,0,0,6,0.145,6.300000000000001,66.35,15,810,0 +2003,8,16,23,30,0,0,7,0.145,5.5,67.21000000000001,15,810,0 +2003,8,17,0,30,0,0,7,0.145,5,68.89,15,810,0 +2003,8,17,1,30,0,0,7,0.145,4.800000000000001,66.06,16,810,0 +2003,8,17,2,30,0,0,8,0.145,4.7,67.42,16,810,0 +2003,8,17,3,30,0,0,8,0.145,4.800000000000001,68.42,16,810,0 +2003,8,17,4,30,0,0,8,0.145,4.800000000000001,68.97,16,810,0 +2003,8,17,5,30,2,0,8,0.145,4.6000000000000005,69.22,16,810,2 +2003,8,17,6,30,25,0,8,0.145,5,60.99,18,810,25 +2003,8,17,7,30,132,5,8,0.145,5.5,56.64,19,810,134 +2003,8,17,8,30,123,0,8,0.145,5.6000000000000005,52.58,20,810,124 +2003,8,17,9,30,288,29,8,0.145,5.7,53.21,20,810,309 +2003,8,17,10,30,420,104,8,0.145,5.5,53.14,20,810,507 +2003,8,17,11,30,422,468,8,0.145,5.2,49.6,21,810,837 +2003,8,17,12,30,421,360,8,0.145,4.7,49.17,21,810,741 +2003,8,17,13,30,386,378,7,0.145,4,45.71,22,810,705 +2003,8,17,14,30,351,67,7,0.145,3.1,42.35,23,810,402 +2003,8,17,15,30,277,71,7,0.145,2.2,41.75,23,810,321 +2003,8,17,16,30,127,556,7,0.145,1,44.32,22,810,376 +2003,8,17,17,30,94,333,8,0.145,0.5,52.08,21,810,182 +2003,8,17,18,30,25,93,9,0.145,0.8,62.96,19,810,31 +2003,8,17,19,30,0,0,8,0.145,1,66.47,17,810,0 +2003,8,17,20,30,0,0,8,0.145,0.9,69.46000000000001,16,810,0 +2003,8,17,21,30,0,0,8,0.145,0.9,68.47,16,810,0 +2003,8,17,22,30,0,0,8,0.145,1.2000000000000002,72.29,15,810,0 +2003,8,17,23,30,0,0,8,0.145,1.6,73.16,15,810,0 +2003,8,18,0,30,0,0,8,0.145,1.8,77.97,14,810,0 +2003,8,18,1,30,0,0,8,0.145,1.8,78.08,14,810,0 +2003,8,18,2,30,0,0,8,0.145,1.5,83.83,13,810,0 +2003,8,18,3,30,0,0,8,0.145,1.1,83.71000000000001,13,810,0 +2003,8,18,4,30,0,0,8,0.145,0.7000000000000001,83.26,13,810,0 +2003,8,18,5,30,14,0,8,0.145,0.7000000000000001,78.38,14,810,14 +2003,8,18,6,30,65,422,9,0.145,1.3,67.87,17,810,160 +2003,8,18,7,30,111,605,9,0.145,1.7000000000000002,62.49,19,810,363 +2003,8,18,8,30,109,778,8,0.145,1.7000000000000002,51.64,21,810,566 +2003,8,18,9,30,302,423,7,0.145,2,40.800000000000004,24,810,609 +2003,8,18,10,30,408,81,6,0.145,2.5,33.6,25,810,475 +2003,8,18,11,30,464,203,5,0.145,2.9000000000000004,30.39,26,810,644 +2003,8,18,12,30,397,520,5,0.145,3.1,30.3,26,810,858 +2003,8,18,13,30,322,503,6,0.145,2.8000000000000003,33.32,25,810,745 +2003,8,18,14,30,24,0,6,0.145,2.3000000000000003,39.88,23,810,24 +2003,8,18,15,30,209,16,8,0.145,1.9000000000000001,48.89,21,810,219 +2003,8,18,16,30,156,434,9,0.145,1.8,60.15,19,810,349 +2003,8,18,17,30,76,0,10,0.145,1.5,72.46000000000001,18,810,76 +2003,8,18,18,30,8,0,11,0.145,0.8,87.78,15,810,8 +2003,8,18,19,30,0,0,10,0.145,0.30000000000000004,99.24000000000001,13,810,0 +2003,8,18,20,30,0,0,10,0.145,0.30000000000000004,97.3,13,810,0 +2003,8,18,21,30,0,0,9,0.145,0.7000000000000001,100,12,810,0 +2003,8,18,22,30,0,0,9,0.145,1.2000000000000002,96.71000000000001,12,810,0 +2003,8,18,23,30,0,0,8,0.145,1.7000000000000002,90.91,12,810,0 +2003,8,19,0,30,0,0,7,0.145,2,84.38,12,810,0 +2003,8,19,1,30,0,0,6,0.145,2.5,78.34,12,810,0 +2003,8,19,2,30,0,0,5,0.145,2.8000000000000003,79.03,11,810,0 +2003,8,19,3,30,0,0,5,0.145,3,76.04,11,810,0 +2003,8,19,4,30,0,0,4,0.145,3.1,73.19,11,810,0 +2003,8,19,5,30,12,100,3,0.145,3.4000000000000004,66.18,12,810,15 +2003,8,19,6,30,59,522,3,0.145,3.2,50.9,16,810,176 +2003,8,19,7,30,83,714,3,0.145,2.7,38.7,20,810,379 +2003,8,19,8,30,106,794,2,0.145,2.4000000000000004,29.91,23,810,570 +2003,8,19,9,30,117,851,2,0.145,2,26.25,25,810,734 +2003,8,19,10,30,124,882,2,0.145,1.8,23.490000000000002,27,810,853 +2003,8,19,11,30,324,635,2,0.145,1.6,22.41,28,810,883 +2003,8,19,12,30,429,449,3,0.145,1.5,21.330000000000002,29,810,827 +2003,8,19,13,30,265,649,3,0.145,1.2000000000000002,21.44,29,810,809 +2003,8,19,14,30,314,414,2,0.145,1.2000000000000002,21.26,29,810,622 +2003,8,19,15,30,216,494,2,0.145,1.5,22.17,28,810,516 +2003,8,19,16,30,148,479,2,0.145,1.7000000000000002,23.43,27,810,360 +2003,8,19,17,30,86,312,3,0.145,1.6,30.44,24,810,166 +2003,8,19,18,30,22,140,7,0.145,1.4000000000000001,49.04,20,810,30 +2003,8,19,19,30,0,0,6,0.145,1.2000000000000002,51.63,18,810,0 +2003,8,19,20,30,0,0,5,0.145,1.1,53.29,17,810,0 +2003,8,19,21,30,0,0,5,0.145,1.2000000000000002,54.64,16,810,0 +2003,8,19,22,30,0,0,4,0.145,1.3,56.07,15,810,0 +2003,8,19,23,30,0,0,3,0.145,1.4000000000000001,54.19,15,810,0 +2003,8,20,0,30,0,0,3,0.145,1.5,56.63,14,810,0 +2003,8,20,1,30,0,0,3,0.145,1.7000000000000002,57.27,14,810,0 +2003,8,20,2,30,0,0,4,0.145,1.9000000000000001,62.71,13,810,0 +2003,8,20,3,30,0,0,4,0.145,2.1,63.13,13,810,0 +2003,8,20,4,30,0,0,3,0.145,2.4000000000000004,61.690000000000005,13,810,0 +2003,8,20,5,30,12,104,3,0.145,3,52.32,16,810,15 +2003,8,20,6,30,65,394,3,0.145,3.5,39.32,20,810,153 +2003,8,20,7,30,81,690,3,0.145,3.2,29.330000000000002,24,810,364 +2003,8,20,8,30,174,595,0,0.145,2.6,19.47,28,810,520 +2003,8,20,9,30,107,888,0,0.145,2.2,16.25,30,810,748 +2003,8,20,10,30,114,916,0,0.145,1.9000000000000001,15.13,31,810,869 +2003,8,20,11,30,115,932,0,0.145,1.8,14.22,32,810,934 +2003,8,20,12,30,117,929,0,0.145,1.9000000000000001,13.370000000000001,33,810,936 +2003,8,20,13,30,116,911,0,0.145,2.2,13.290000000000001,33,810,877 +2003,8,20,14,30,110,880,0,0.145,2.5,13.93,32,810,762 +2003,8,20,15,30,135,737,0,0.145,2.8000000000000003,14.66,31,810,581 +2003,8,20,16,30,77,743,0,0.145,2.5,16.89,29,810,401 +2003,8,20,17,30,86,299,3,0.157,1.7000000000000002,26.89,26,810,160 +2003,8,20,18,30,19,33,6,0.157,1.3,39.9,23,810,20 +2003,8,20,19,30,0,0,5,0.157,1.2000000000000002,39.660000000000004,22,810,0 +2003,8,20,20,30,0,0,5,0.157,1.2000000000000002,41.79,21,810,0 +2003,8,20,21,30,0,0,5,0.157,1.2000000000000002,42.910000000000004,20,810,0 +2003,8,20,22,30,0,0,4,0.157,1.3,44.85,19,810,0 +2003,8,20,23,30,0,0,4,0.157,1.3,47.29,18,810,0 +2003,8,21,0,30,0,0,4,0.157,1.3,46.32,18,810,0 +2003,8,21,1,30,0,0,4,0.157,1.4000000000000001,48.11,17,810,0 +2003,8,21,2,30,0,0,3,0.157,1.4000000000000001,47.49,17,810,0 +2003,8,21,3,30,0,0,3,0.157,1.5,47.230000000000004,17,810,0 +2003,8,21,4,30,0,0,3,0.157,1.6,47.28,17,810,0 +2003,8,21,5,30,10,41,4,0.157,1.8,45.22,18,810,11 +2003,8,21,6,30,80,189,5,0.157,2.5,39.910000000000004,21,810,122 +2003,8,21,7,30,164,283,4,0.157,3,34.02,24,810,279 +2003,8,21,8,30,152,660,3,0.157,3,26.64,26,810,534 +2003,8,21,9,30,242,609,3,0.157,2.7,23.87,28,810,681 +2003,8,21,10,30,365,401,4,0.157,2.8000000000000003,23.53,29,810,695 +2003,8,21,11,30,457,129,5,0.157,3.2,23.21,30,810,570 +2003,8,21,12,30,411,52,5,0.157,3.7,22.95,31,810,457 +2003,8,21,13,30,429,136,6,0.157,4,25.48,30,810,543 +2003,8,21,14,30,70,0,6,0.157,3.9000000000000004,27.95,29,810,70 +2003,8,21,15,30,140,3,7,0.157,3.5,32.17,27,810,142 +2003,8,21,16,30,36,0,7,0.157,3.2,37.92,25,810,36 +2003,8,21,17,30,20,0,8,0.157,3.3000000000000003,45.27,23,810,20 +2003,8,21,18,30,13,0,9,0.157,3.2,52.47,21,810,13 +2003,8,21,19,30,0,0,9,0.157,2.8000000000000003,59.65,19,810,0 +2003,8,21,20,30,0,0,9,0.157,2.4000000000000004,60.18,19,810,0 +2003,8,21,21,30,0,0,9,0.157,2.1,65.29,19,810,0 +2003,8,21,22,30,0,0,9,0.157,1.6,65.52,18,810,0 +2003,8,21,23,30,0,0,9,0.157,1.3,65.36,18,810,0 +2003,8,22,0,30,0,0,9,0.157,1.2000000000000002,65.68,18,810,0 +2003,8,22,1,30,0,0,9,0.157,1.2000000000000002,65.61,18,810,0 +2003,8,22,2,30,0,0,9,0.157,1.2000000000000002,65.79,18,810,0 +2003,8,22,3,30,0,0,9,0.157,1.2000000000000002,70.35000000000001,17,810,0 +2003,8,22,4,30,0,0,9,0.157,1.5,70.17,17,810,0 +2003,8,22,5,30,6,0,9,0.157,2,65.79,18,810,6 +2003,8,22,6,30,81,66,9,0.157,2.1,55.69,21,810,95 +2003,8,22,7,30,173,122,9,0.157,1.3,41.01,25,810,223 +2003,8,22,8,30,112,761,7,0.157,1,31.17,28,810,551 +2003,8,22,9,30,333,328,7,0.157,1.8,26.62,30,810,568 +2003,8,22,10,30,334,546,6,0.157,2.4000000000000004,24.76,31,810,782 +2003,8,22,11,30,376,540,6,0.157,2.8000000000000003,23.12,32,810,847 +2003,8,22,12,30,50,0,6,0.157,3.1,23.240000000000002,32,810,50 +2003,8,22,13,30,170,11,6,0.157,3,25.01,31,810,179 +2003,8,22,14,30,125,3,7,0.157,2.7,27.54,30,810,127 +2003,8,22,15,30,93,0,8,0.157,2.3000000000000003,30.94,29,810,93 +2003,8,22,16,30,87,0,9,0.157,2,38.95,26,810,87 +2003,8,22,17,30,74,0,10,0.157,2.1,48.35,24,810,74 +2003,8,22,18,30,8,0,11,0.157,2.5,58.76,22,810,8 +2003,8,22,19,30,0,0,11,0.157,2.9000000000000004,67.71000000000001,20,810,0 +2003,8,22,20,30,0,0,12,0.157,3.1,68.73,20,810,0 +2003,8,22,21,30,0,0,12,0.157,3.3000000000000003,73.95,19,810,0 +2003,8,22,22,30,0,0,12,0.157,3,73.16,19,810,0 +2003,8,22,23,30,0,0,11,0.157,2.1,75.2,18,810,0 +2003,8,23,0,30,0,0,11,0.157,1.4000000000000001,72.99,18,810,0 +2003,8,23,1,30,0,0,11,0.157,1.4000000000000001,77.95,17,810,0 +2003,8,23,2,30,0,0,11,0.157,1.6,77.42,17,810,0 +2003,8,23,3,30,0,0,10,0.157,1.8,81.37,16,810,0 +2003,8,23,4,30,0,0,10,0.157,2,79.72,16,810,0 +2003,8,23,5,30,10,77,10,0.157,2.4000000000000004,68.68,18,810,11 +2003,8,23,6,30,52,526,9,0.157,2.4000000000000004,55.85,21,810,164 +2003,8,23,7,30,145,390,9,0.157,1.8,44.96,24,810,302 +2003,8,23,8,30,269,145,8,0.157,1.3,38.230000000000004,26,810,352 +2003,8,23,9,30,272,526,8,0.157,1.1,32.93,28,810,648 +2003,8,23,10,30,310,591,8,0.157,1.6,30.42,29,810,792 +2003,8,23,11,30,219,15,8,0.157,2.2,28.810000000000002,30,810,232 +2003,8,23,12,30,384,39,8,0.157,2.3000000000000003,31.150000000000002,29,810,419 +2003,8,23,13,30,413,303,9,0.157,2,34.7,28,810,663 +2003,8,23,14,30,365,148,10,0.157,1.4000000000000001,38.81,27,810,474 +2003,8,23,15,30,278,120,10,0.157,1.4000000000000001,45.65,25,810,350 +2003,8,23,16,30,174,57,11,0.157,2.5,54.44,23,810,198 +2003,8,23,17,30,83,17,12,0.157,3.6,65.71000000000001,21,810,87 +2003,8,23,18,30,8,0,12,0.157,3.6,77.2,20,810,8 +2003,8,23,19,30,0,0,12,0.157,2.5,77.24,19,810,0 +2003,8,23,20,30,0,0,12,0.157,1.1,76.27,19,810,0 +2003,8,23,21,30,0,0,12,0.157,0.4,80.77,18,810,0 +2003,8,23,22,30,0,0,12,0.157,0.4,80.71000000000001,18,810,0 +2003,8,23,23,30,0,0,12,0.157,0.6000000000000001,78.13,18,810,0 +2003,8,24,0,30,0,0,11,0.157,0.7000000000000001,81.85000000000001,17,810,0 +2003,8,24,1,30,0,0,11,0.157,0.8,81.85000000000001,17,810,0 +2003,8,24,2,30,0,0,11,0.157,1.1,87.27,16,810,0 +2003,8,24,3,30,0,0,11,0.157,1.7000000000000002,86.83,16,810,0 +2003,8,24,4,30,0,0,11,0.157,2.4000000000000004,85.9,16,810,0 +2003,8,24,5,30,0,0,11,0.157,3.3000000000000003,80.09,17,810,0 +2003,8,24,6,30,45,568,11,0.157,3.8000000000000003,71.04,19,810,165 +2003,8,24,7,30,63,755,11,0.157,3.4000000000000004,53.64,23,810,366 +2003,8,24,8,30,72,852,9,0.157,3,40.9,26,810,560 +2003,8,24,9,30,82,896,9,0.157,2.9000000000000004,37.13,27,810,721 +2003,8,24,10,30,315,578,9,0.157,2.8000000000000003,34.47,28,810,785 +2003,8,24,11,30,404,403,9,0.157,2.6,34.17,28,810,754 +2003,8,24,12,30,454,128,9,0.157,2.2,36.63,27,810,565 +2003,8,24,13,30,372,445,9,0.157,1.7000000000000002,37.71,27,810,737 +2003,8,24,14,30,155,7,10,0.157,1.5,41.22,26,810,161 +2003,8,24,15,30,14,0,10,0.157,1.9000000000000001,44.83,25,810,14 +2003,8,24,16,30,20,0,10,0.157,2.4000000000000004,52.300000000000004,23,810,20 +2003,8,24,17,30,72,0,11,0.157,3,59.050000000000004,22,810,72 +2003,8,24,18,30,6,0,12,0.157,3.7,70.44,20,810,6 +2003,8,24,19,30,0,0,12,0.157,3.9000000000000004,75.91,19,810,0 +2003,8,24,20,30,0,0,12,0.157,3.6,80.03,19,810,0 +2003,8,24,21,30,0,0,12,0.157,3.4000000000000004,78.93,18,810,0 +2003,8,24,22,30,0,0,12,0.157,3.1,78.29,18,810,0 +2003,8,24,23,30,0,0,12,0.157,2.5,83.67,17,810,0 +2003,8,25,0,30,0,0,12,0.157,2,88.63,16,810,0 +2003,8,25,1,30,0,0,11,0.157,1.4000000000000001,86.97,16,810,0 +2003,8,25,2,30,0,0,11,0.157,1,85.72,16,810,0 +2003,8,25,3,30,0,0,11,0.157,1,84.87,16,810,0 +2003,8,25,4,30,0,0,11,0.157,1.3,83.61,16,810,0 +2003,8,25,5,30,0,0,11,0.157,2.1,77.15,17,810,0 +2003,8,25,6,30,44,0,10,0.157,2.6,67.66,19,810,44 +2003,8,25,7,30,148,354,10,0.157,2.5,54.35,22,810,289 +2003,8,25,8,30,266,165,8,0.157,2.8000000000000003,41.980000000000004,25,810,360 +2003,8,25,9,30,353,188,7,0.157,3.1,34.09,26,810,487 +2003,8,25,10,30,320,566,6,0.157,3.2,31.23,27,810,779 +2003,8,25,11,30,49,0,6,0.157,3.1,29.39,28,810,49 +2003,8,25,12,30,411,57,6,0.157,2.8000000000000003,29.8,28,810,460 +2003,8,25,13,30,366,428,7,0.157,2.4000000000000004,30.560000000000002,28,810,716 +2003,8,25,14,30,154,7,7,0.157,1.8,33.160000000000004,27,810,160 +2003,8,25,15,30,99,0,7,0.157,1.1,35.58,26,810,99 +2003,8,25,16,30,142,11,7,0.157,0.5,38.12,25,810,147 +2003,8,25,17,30,74,0,8,0.157,0.30000000000000004,45.28,23,810,74 +2003,8,25,18,30,7,0,10,0.157,0.5,56.54,21,810,7 +2003,8,25,19,30,0,0,9,0.157,0.8,56.81,20,810,0 +2003,8,25,20,30,0,0,8,0.157,1,58.67,19,810,0 +2003,8,25,21,30,0,0,8,0.157,1.1,57.01,19,810,0 +2003,8,25,22,30,0,0,7,0.157,1.2000000000000002,58.620000000000005,18,810,0 +2003,8,25,23,30,0,0,7,0.157,1.2000000000000002,56.17,18,810,0 +2003,8,26,0,30,0,0,6,0.157,1.2000000000000002,57.61,17,810,0 +2003,8,26,1,30,0,0,6,0.157,1.1,55.82,17,810,0 +2003,8,26,2,30,0,0,5,0.157,1.1,58.33,16,810,0 +2003,8,26,3,30,0,0,5,0.157,1.1,57.67,16,810,0 +2003,8,26,4,30,0,0,5,0.157,1.1,57.47,16,810,0 +2003,8,26,5,30,0,0,5,0.157,1.3,54.68,17,810,0 +2003,8,26,6,30,75,55,7,0.157,1.4000000000000001,48.980000000000004,20,810,87 +2003,8,26,7,30,144,387,6,0.157,1.5,40.300000000000004,23,810,297 +2003,8,26,8,30,88,821,6,0.157,2.1,35.480000000000004,25,810,554 +2003,8,26,9,30,210,668,6,0.157,2.5,32.28,26,810,683 +2003,8,26,10,30,288,624,6,0.157,2.9000000000000004,29.6,27,810,792 +2003,8,26,11,30,397,396,5,0.157,3.2,27.37,28,810,738 +2003,8,26,12,30,408,412,5,0.157,3.5,25.67,29,810,764 +2003,8,26,13,30,351,506,5,0.157,3.6,25.78,29,810,764 +2003,8,26,14,30,105,865,5,0.157,3.6,27.150000000000002,28,810,727 +2003,8,26,15,30,262,278,5,0.157,3.5,28.46,27,810,424 +2003,8,26,16,30,82,707,5,0.157,3.1,29.97,26,810,374 +2003,8,26,17,30,63,482,5,0.157,2,36.83,23,810,170 +2003,8,26,18,30,13,0,7,0.157,1.4000000000000001,47.43,21,810,13 +2003,8,26,19,30,0,0,7,0.157,1.4000000000000001,53.4,19,810,0 +2003,8,26,20,30,0,0,7,0.157,1.5,56.59,18,810,0 +2003,8,26,21,30,0,0,7,0.157,1.4000000000000001,60.67,17,810,0 +2003,8,26,22,30,0,0,7,0.157,1.3,61.18,17,810,0 +2003,8,26,23,30,0,0,7,0.157,1.2000000000000002,65.42,16,810,0 +2003,8,27,0,30,0,0,7,0.157,1.1,65.86,16,810,0 +2003,8,27,1,30,0,0,8,0.157,1,72.61,15,810,0 +2003,8,27,2,30,0,0,8,0.157,1,75.2,15,810,0 +2003,8,27,3,30,0,0,9,0.157,1.1,82.8,14,810,0 +2003,8,27,4,30,0,0,9,0.157,1.2000000000000002,83.67,14,810,0 +2003,8,27,5,30,0,0,9,0.157,2,74.13,16,810,0 +2003,8,27,6,30,60,381,10,0.157,2.4000000000000004,63.9,19,810,137 +2003,8,27,7,30,74,711,10,0.157,1.6,49.51,23,810,353 +2003,8,27,8,30,83,824,9,0.157,0.8,38.64,26,810,548 +2003,8,27,9,30,244,590,8,0.157,0.8,32.64,28,810,660 +2003,8,27,10,30,358,461,7,0.157,1.1,29.580000000000002,29,810,730 +2003,8,27,11,30,409,418,7,0.157,1.3,27.13,30,800,768 +2003,8,27,12,30,450,130,7,0.157,1.2000000000000002,26.94,30,800,562 +2003,8,27,13,30,364,438,7,0.157,0.9,28.76,29,800,720 +2003,8,27,14,30,32,0,7,0.157,0.6000000000000001,31.060000000000002,28,800,32 +2003,8,27,15,30,11,0,8,0.157,1.1,34.08,27,800,11 +2003,8,27,16,30,173,90,8,0.157,1.8,40.62,25,800,209 +2003,8,27,17,30,21,0,9,0.157,1.7000000000000002,49.29,23,810,21 +2003,8,27,18,30,1,0,11,0.157,1.5,60.870000000000005,21,810,1 +2003,8,27,19,30,0,0,11,0.157,1.4000000000000001,70.52,19,810,0 +2003,8,27,20,30,0,0,12,0.157,0.6000000000000001,77.59,18,810,0 +2003,8,27,21,30,0,0,12,0.157,0.2,81.06,18,810,0 +2003,8,27,22,30,0,0,12,0.157,0.7000000000000001,82.05,18,810,0 +2003,8,27,23,30,0,0,12,0.157,1.2000000000000002,87.08,17,810,0 +2003,8,28,0,30,0,0,12,0.157,1.7000000000000002,85.93,17,810,0 +2003,8,28,1,30,0,0,12,0.157,2.2,83.47,17,810,0 +2003,8,28,2,30,0,0,11,0.157,2.7,85.76,16,810,0 +2003,8,28,3,30,0,0,11,0.157,3.1,82.39,16,810,0 +2003,8,28,4,30,0,0,10,0.157,2.8000000000000003,83.18,16,810,0 +2003,8,28,5,30,0,0,9,0.157,2.5,79.81,16,810,0 +2003,8,28,6,30,69,237,9,0.157,2.4000000000000004,69.45,17,810,117 +2003,8,28,7,30,87,637,8,0.157,2.5,55.52,19,810,335 +2003,8,28,8,30,124,726,6,0.157,2.5,43.88,21,810,531 +2003,8,28,9,30,208,670,6,0.157,2.4000000000000004,37.81,23,810,678 +2003,8,28,10,30,116,889,5,0.157,2.3000000000000003,33,25,810,829 +2003,8,28,11,30,388,495,5,0.157,2.3000000000000003,30.560000000000002,26,810,812 +2003,8,28,12,30,340,588,5,0.157,2.5,28.310000000000002,27,810,844 +2003,8,28,13,30,357,419,5,0.157,2.7,28.25,27,810,696 +2003,8,28,14,30,280,483,5,0.157,2.8000000000000003,29.92,26,810,624 +2003,8,28,15,30,241,360,5,0.157,2.9000000000000004,31.55,25,810,447 +2003,8,28,16,30,171,92,5,0.157,2.5,33.81,24,810,208 +2003,8,28,17,30,72,2,6,0.151,1.5,44.42,21,810,72 +2003,8,28,18,30,0,0,8,0.151,1,57.07,19,810,0 +2003,8,28,19,30,0,0,8,0.151,1,63.300000000000004,17,810,0 +2003,8,28,20,30,0,0,7,0.151,0.9,62.21,17,810,0 +2003,8,28,21,30,0,0,7,0.151,0.8,58.01,18,810,0 +2003,8,28,22,30,0,0,7,0.151,0.7000000000000001,61.11,17,810,0 +2003,8,28,23,30,0,0,7,0.151,0.8,59.88,17,810,0 +2003,8,29,0,30,0,0,7,0.151,0.8,59.04,17,810,0 +2003,8,29,1,30,0,0,6,0.151,0.9,62.21,16,810,0 +2003,8,29,2,30,0,0,6,0.151,0.9,66.38,15,810,0 +2003,8,29,3,30,0,0,6,0.151,0.9,70.75,14,810,0 +2003,8,29,4,30,0,0,6,0.151,0.9,74.8,13,810,0 +2003,8,29,5,30,0,0,6,0.151,1.4000000000000001,69.76,14,810,0 +2003,8,29,6,30,57,387,7,0.151,2.4000000000000004,60.31,17,810,133 +2003,8,29,7,30,137,395,7,0.151,3.2,49.5,20,810,290 +2003,8,29,8,30,109,769,7,0.151,3.3000000000000003,45.67,21,810,539 +2003,8,29,9,30,331,292,7,0.151,3.2,41.31,23,810,536 +2003,8,29,10,30,139,849,7,0.151,3.2,39.51,24,810,818 +2003,8,29,11,30,136,876,7,0.151,3.3000000000000003,37.39,25,810,882 +2003,8,29,12,30,146,857,7,0.151,3.6,40.15,25,810,879 +2003,8,29,13,30,155,816,8,0.151,3.8000000000000003,44.04,24,810,812 +2003,8,29,14,30,161,746,8,0.151,3.9000000000000004,48.94,22,810,689 +2003,8,29,15,30,265,203,9,0.151,3.8000000000000003,55,21,810,380 +2003,8,29,16,30,168,300,10,0.151,3.6,66.65,19,810,288 +2003,8,29,17,30,5,0,11,0.151,3,81.66,17,810,5 +2003,8,29,18,30,0,0,12,0.151,2.7,98.47,15,810,0 +2003,8,29,19,30,0,0,11,0.151,2.4000000000000004,100,14,810,0 +2003,8,29,20,30,0,0,11,0.151,2,100,14,810,0 +2003,8,29,21,30,0,0,11,0.151,1.9000000000000001,100,13,810,0 +2003,8,29,22,30,0,0,9,0.151,2.2,100,12,810,0 +2003,8,29,23,30,0,0,9,0.151,2.3000000000000003,100,11,810,0 +2003,8,30,0,30,0,0,9,0.151,2,100,11,810,0 +2003,8,30,1,30,0,0,8,0.151,1.8,100,10,810,0 +2003,8,30,2,30,0,0,8,0.151,1.7000000000000002,100,10,810,0 +2003,8,30,3,30,0,0,8,0.151,1.7000000000000002,100,10,810,0 +2003,8,30,4,30,0,0,8,0.151,1.6,100,10,810,0 +2003,8,30,5,30,0,0,8,0.151,1.8,100,10,810,0 +2003,8,30,6,30,71,135,8,0.151,2.2,98.08,11,810,98 +2003,8,30,7,30,158,69,9,0.151,2.8000000000000003,88.58,13,810,184 +2003,8,30,8,30,257,196,9,0.151,3.6,72.96000000000001,16,810,367 +2003,8,30,9,30,298,42,8,0.151,4.4,58.35,19,810,328 +2003,8,30,10,30,305,25,8,0.151,5,54.53,21,810,325 +2003,8,30,11,30,138,6,8,0.151,5.4,51.36,21,810,143 +2003,8,30,12,30,213,14,8,0.151,5.5,55.59,20,810,226 +2003,8,30,13,30,46,0,9,0.151,5.2,59.99,19,810,46 +2003,8,30,14,30,28,0,9,0.151,4.4,64.86,18,810,28 +2003,8,30,15,30,136,2,9,0.151,2.9000000000000004,70.78,17,810,138 +2003,8,30,16,30,153,39,10,0.151,1.6,83.7,15,810,169 +2003,8,30,17,30,73,201,10,0.151,1.2000000000000002,92.71000000000001,14,810,114 +2003,8,30,18,30,0,0,9,0.151,1.4000000000000001,100,12,810,0 +2003,8,30,19,30,0,0,9,0.151,1.8,100,12,810,0 +2003,8,30,20,30,0,0,9,0.151,2.3000000000000003,100,12,810,0 +2003,8,30,21,30,0,0,9,0.151,2.5,100,12,810,0 +2003,8,30,22,30,0,0,9,0.151,2.6,100,11,810,0 +2003,8,30,23,30,0,0,9,0.151,2.5,100,11,810,0 +2003,8,31,0,30,0,0,8,0.151,2,100,10,810,0 +2003,8,31,1,30,0,0,7,0.151,1.4000000000000001,100,9,810,0 +2003,8,31,2,30,0,0,7,0.151,1,100,9,810,0 +2003,8,31,3,30,0,0,6,0.151,0.7000000000000001,100,8,810,0 +2003,8,31,4,30,0,0,6,0.151,0.7000000000000001,100,8,810,0 +2003,8,31,5,30,0,0,6,0.151,1.1,98.42,9,810,0 +2003,8,31,6,30,18,0,8,0.151,1.9000000000000001,87.53,12,810,18 +2003,8,31,7,30,116,0,8,0.151,2.6,80.69,14,810,116 +2003,8,31,8,30,176,11,7,0.151,2.8000000000000003,62.33,17,810,182 +2003,8,31,9,30,177,9,6,0.151,2.7,51.09,19,810,184 +2003,8,31,10,30,149,8,6,0.151,2.6,46.24,20,810,156 +2003,8,31,11,30,345,30,6,0.151,2.6,42.87,21,810,370 +2003,8,31,12,30,313,23,6,0.151,2.6,40.34,22,810,333 +2003,8,31,13,30,276,19,6,0.151,2.6,40.54,22,810,292 +2003,8,31,14,30,330,300,6,0.151,2.6,40.53,22,810,540 +2003,8,31,15,30,170,8,6,0.151,2.7,42.92,21,810,175 +2003,8,31,16,30,165,174,6,0.151,2.5,45.45,20,810,233 +2003,8,31,17,30,74,141,6,0.151,1.7000000000000002,57.79,17,810,102 +2003,8,31,18,30,0,0,7,0.151,1.1,69.83,15,810,0 +2003,8,31,19,30,0,0,7,0.151,1,78.05,13,810,0 +2003,8,31,20,30,0,0,7,0.151,1,83.22,12,810,0 +2003,8,31,21,30,0,0,7,0.151,1.1,82.79,12,810,0 +2003,8,31,22,30,0,0,7,0.151,1.2000000000000002,87.34,11,810,0 +2003,8,31,23,30,0,0,6,0.151,1.1,91.26,10,810,0 +2003,9,1,0,30,0,0,6,0.151,1,88.23,10,810,0 +2003,9,1,1,30,0,0,5,0.151,1,90.49,9,810,0 +2003,9,1,2,30,0,0,4,0.151,1,86.22,9,810,0 +2003,9,1,3,30,0,0,4,0.151,1.2000000000000002,87.87,8,810,0 +2003,9,1,4,30,0,0,3,0.151,1.3,83.48,8,810,0 +2003,9,1,5,30,0,0,2,0.151,1.8,69.96000000000001,10,810,0 +2003,9,1,6,30,41,609,3,0.151,2.3000000000000003,56.230000000000004,14,810,155 +2003,9,1,7,30,58,816,3,0.151,2,41.87,18,810,368 +2003,9,1,8,30,71,905,1,0.151,1.6,30.21,21,810,570 +2003,9,1,9,30,78,959,0,0.151,1.6,23.98,23,810,741 +2003,9,1,10,30,82,989,-1,0.151,1.9000000000000001,21.27,24,810,864 +2003,9,1,11,30,84,1002,-1,0.151,2.2,18.03,26,810,929 +2003,9,1,12,30,83,1001,-2,0.151,2.5,16.43,27,810,928 +2003,9,1,13,30,246,691,-2,0.151,2.8000000000000003,16.15,27,810,794 +2003,9,1,14,30,205,670,-2,0.151,3.1,16,27,810,671 +2003,9,1,15,30,68,905,-2,0.151,3.2,17.32,26,810,572 +2003,9,1,16,30,58,810,-1,0.151,2.7,20.57,24,810,370 +2003,9,1,17,30,42,597,2,0.151,1.7000000000000002,34.92,20,810,158 +2003,9,1,18,30,0,0,3,0.151,1.2000000000000002,46.04,17,810,0 +2003,9,1,19,30,0,0,2,0.151,1.3,47.1,16,810,0 +2003,9,1,20,30,0,0,2,0.151,1.3,49.08,15,810,0 +2003,9,1,21,30,0,0,2,0.151,1.3,51.43,14,810,0 +2003,9,1,22,30,0,0,2,0.151,1.2000000000000002,50.47,14,810,0 +2003,9,1,23,30,0,0,1,0.151,1.2000000000000002,48.75,14,810,0 +2003,9,2,0,30,0,0,0,0.151,1.1,46.79,14,810,0 +2003,9,2,1,30,0,0,0,0.151,1.1,48.910000000000004,13,810,0 +2003,9,2,2,30,0,0,0,0.151,1.1,48.93,13,810,0 +2003,9,2,3,30,0,0,0,0.151,1.3,52.82,12,810,0 +2003,9,2,4,30,0,0,1,0.151,1.5,54.11,12,810,0 +2003,9,2,5,30,0,0,1,0.151,1.6,52.370000000000005,13,810,0 +2003,9,2,6,30,43,560,4,0.151,2.1,49.96,17,810,146 +2003,9,2,7,30,70,697,5,0.151,2.1,40.19,21,810,333 +2003,9,2,8,30,79,851,3,0.151,1.6,29.11,24,810,545 +2003,9,2,9,30,90,899,3,0.151,1.7000000000000002,26.1,26,810,709 +2003,9,2,10,30,100,920,3,0.151,2.3000000000000003,24.8,27,810,825 +2003,9,2,11,30,314,616,3,0.151,2.8000000000000003,23.56,28,810,831 +2003,9,2,12,30,382,409,3,0.151,3,23.85,28,810,726 +2003,9,2,13,30,343,467,4,0.151,3,26.12,27,810,712 +2003,9,2,14,30,240,531,4,0.151,2.9000000000000004,28.740000000000002,26,810,607 +2003,9,2,15,30,125,716,5,0.151,2.5,33.79,24,810,520 +2003,9,2,16,30,130,418,6,0.151,1.7000000000000002,39.52,23,810,289 +2003,9,2,17,30,70,102,9,0.151,0.8,57.61,20,810,89 +2003,9,2,18,30,0,0,10,0.151,0.6000000000000001,70.60000000000001,18,810,0 +2003,9,2,19,30,0,0,10,0.151,0.7000000000000001,76.04,17,810,0 +2003,9,2,20,30,0,0,10,0.151,0.8,85.73,15,810,0 +2003,9,2,21,30,0,0,10,0.151,1,90.64,14,810,0 +2003,9,2,22,30,0,0,10,0.151,1.1,89.33,14,810,0 +2003,9,2,23,30,0,0,10,0.151,1.1,87.99,14,810,0 +2003,9,3,0,30,0,0,9,0.151,1.1,92.22,13,810,0 +2003,9,3,1,30,0,0,9,0.151,1.1,89.93,13,810,0 +2003,9,3,2,30,0,0,9,0.151,1.1,87.61,13,810,0 +2003,9,3,3,30,0,0,8,0.151,1,85.94,13,810,0 +2003,9,3,4,30,0,0,8,0.151,0.9,84.99,13,810,0 +2003,9,3,5,30,0,0,8,0.151,1.1,85.02,13,810,0 +2003,9,3,6,30,53,377,9,0.151,1.6,80.96000000000001,15,810,122 +2003,9,3,7,30,156,95,10,0.151,1.7000000000000002,67.85,18,810,192 +2003,9,3,8,30,121,718,8,0.151,1.8,54.85,20,810,512 +2003,9,3,9,30,218,629,8,0.151,2.1,50.32,21,810,649 +2003,9,3,10,30,338,454,8,0.151,2.5,50.46,21,810,695 +2003,9,3,11,30,380,479,8,0.151,2.7,51.09,21,810,780 +2003,9,3,12,30,112,1,8,0.151,2.6,52.03,21,810,113 +2003,9,3,13,30,56,0,9,0.151,2.5,53.07,21,810,56 +2003,9,3,14,30,335,115,9,0.151,2.4000000000000004,57.57,20,810,414 +2003,9,3,15,30,241,286,9,0.151,2.4000000000000004,58.43,20,810,398 +2003,9,3,16,30,155,210,9,0.151,2.2,63.15,19,810,234 +2003,9,3,17,30,43,0,10,0.151,1.7000000000000002,74.12,17,810,43 +2003,9,3,18,30,0,0,10,0.151,1.4000000000000001,86.60000000000001,15,810,0 +2003,9,3,19,30,0,0,10,0.151,1.6,85.88,15,810,0 +2003,9,3,20,30,0,0,10,0.151,1.6,90.41,14,810,0 +2003,9,3,21,30,0,0,10,0.151,1.3,95.42,13,810,0 +2003,9,3,22,30,0,0,9,0.151,1,100,12,810,0 +2003,9,3,23,30,0,0,9,0.151,0.8,98.9,12,810,0 +2003,9,4,0,30,0,0,9,0.151,0.6000000000000001,100,12,810,0 +2003,9,4,1,30,0,0,9,0.151,0.7000000000000001,100,11,810,0 +2003,9,4,2,30,0,0,9,0.151,0.9,100,11,810,0 +2003,9,4,3,30,0,0,8,0.151,1.2000000000000002,98.93,11,810,0 +2003,9,4,4,30,0,0,8,0.151,1.3,97.74000000000001,11,810,0 +2003,9,4,5,30,0,0,8,0.151,1.7000000000000002,89.96000000000001,12,810,0 +2003,9,4,6,30,51,455,8,0.151,1.9000000000000001,74.57000000000001,15,810,133 +2003,9,4,7,30,79,689,8,0.151,1.5,58.410000000000004,19,810,334 +2003,9,4,8,30,89,820,7,0.151,1.4000000000000001,44.19,22,810,533 +2003,9,4,9,30,99,879,6,0.151,1.7000000000000002,36.86,24,810,698 +2003,9,4,10,30,106,909,6,0.151,2.2,33.64,25,810,817 +2003,9,4,11,30,103,932,5,0.151,2.7,31.35,26,810,880 +2003,9,4,12,30,106,926,5,0.151,3,29.22,27,810,878 +2003,9,4,13,30,105,906,5,0.151,3.2,29.150000000000002,27,810,814 +2003,9,4,14,30,96,878,5,0.151,3.2,30.93,26,810,696 +2003,9,4,15,30,87,819,5,0.151,3,32.84,25,810,531 +2003,9,4,16,30,71,713,5,0.151,2.3000000000000003,35.22,24,810,336 +2003,9,4,17,30,63,207,7,0.151,1.4000000000000001,48.44,21,810,100 +2003,9,4,18,30,0,0,8,0.151,1,60.910000000000004,18,810,0 +2003,9,4,19,30,0,0,7,0.151,1.1,66.22,16,810,0 +2003,9,4,20,30,0,0,7,0.151,1.2000000000000002,69.55,15,810,0 +2003,9,4,21,30,0,0,7,0.151,1.3,68.38,15,810,0 +2003,9,4,22,30,0,0,7,0.151,1.3,71.92,15,810,0 +2003,9,4,23,30,0,0,6,0.151,1.3,70.60000000000001,14,810,0 +2003,9,5,0,30,0,0,6,0.151,1.3,69.05,14,810,0 +2003,9,5,1,30,0,0,6,0.151,1.4000000000000001,67.34,14,810,0 +2003,9,5,2,30,0,0,5,0.151,1.4000000000000001,70.23,13,810,0 +2003,9,5,3,30,0,0,5,0.151,1.4000000000000001,68.58,13,810,0 +2003,9,5,4,30,0,0,4,0.151,1.4000000000000001,66.36,13,810,0 +2003,9,5,5,30,0,0,4,0.151,1.3,59.45,14,810,0 +2003,9,5,6,30,62,204,5,0.151,1.6,51.43,18,810,98 +2003,9,5,7,30,67,743,5,0.151,1.6,37.5,22,810,341 +2003,9,5,8,30,85,836,3,0.151,1.4000000000000001,27.34,25,810,536 +2003,9,5,9,30,97,889,2,0.151,1.8,25.240000000000002,26,810,701 +2003,9,5,10,30,220,728,3,0.151,2.3000000000000003,24.09,27,810,787 +2003,9,5,11,30,314,607,3,0.151,2.6,23.11,28,810,818 +2003,9,5,12,30,323,590,3,0.151,3,22.32,29,810,813 +2003,9,5,13,30,300,571,4,0.151,3.2,24.44,28,810,744 +2003,9,5,14,30,255,509,4,0.151,3.2,26.84,27,810,600 +2003,9,5,15,30,231,318,4,0.151,2.7,29.18,26,810,402 +2003,9,5,16,30,84,0,5,0.151,1.5,34.58,24,810,84 +2003,9,5,17,30,14,0,8,0.138,0.7000000000000001,51.480000000000004,21,810,14 +2003,9,5,18,30,0,0,9,0.138,0.6000000000000001,61.74,19,810,0 +2003,9,5,19,30,0,0,9,0.138,1.1,70.63,17,810,0 +2003,9,5,20,30,0,0,9,0.138,2.1,74.55,16,810,0 +2003,9,5,21,30,0,0,9,0.138,3.3000000000000003,74.25,16,810,0 +2003,9,5,22,30,0,0,9,0.138,4.1000000000000005,78.62,15,810,0 +2003,9,5,23,30,0,0,9,0.138,4.3,77.95,15,810,0 +2003,9,6,0,30,0,0,9,0.138,4.1000000000000005,76.88,15,810,0 +2003,9,6,1,30,0,0,8,0.138,3.9000000000000004,75.73,15,810,0 +2003,9,6,2,30,0,0,8,0.138,3.5,74.66,15,810,0 +2003,9,6,3,30,0,0,8,0.138,3,78.54,14,810,0 +2003,9,6,4,30,0,0,8,0.138,2.5,77.44,14,810,0 +2003,9,6,5,30,0,0,8,0.138,2.4000000000000004,76.59,14,810,0 +2003,9,6,6,30,5,0,8,0.138,2.7,71.73,15,810,5 +2003,9,6,7,30,142,40,8,0.138,2.8000000000000003,63.52,17,810,156 +2003,9,6,8,30,141,2,7,0.138,2.5,54.77,19,810,142 +2003,9,6,9,30,333,192,7,0.138,2,51.38,20,810,463 +2003,9,6,10,30,366,64,7,0.138,1.1,48.34,21,810,416 +2003,9,6,11,30,310,23,7,0.138,0.6000000000000001,48.47,21,810,330 +2003,9,6,12,30,122,3,8,0.138,1.2000000000000002,52.11,20,810,125 +2003,9,6,13,30,388,105,8,0.138,2,57.04,19,810,470 +2003,9,6,14,30,322,265,8,0.138,1.9000000000000001,62.58,18,810,501 +2003,9,6,15,30,166,550,8,0.138,1,62.620000000000005,18,810,459 +2003,9,6,16,30,105,536,8,0.138,0.5,66.99,17,810,299 +2003,9,6,17,30,55,0,9,0.138,0.5,74.83,16,810,55 +2003,9,6,18,30,0,0,9,0.138,0.4,72.88,16,810,0 +2003,9,6,19,30,0,0,8,0.138,0.4,69.35000000000001,16,810,0 +2003,9,6,20,30,0,0,8,0.138,0.6000000000000001,72.35000000000001,15,810,0 +2003,9,6,21,30,0,0,8,0.138,0.8,77.45,14,810,0 +2003,9,6,22,30,0,0,8,0.138,0.8,77.87,14,810,0 +2003,9,6,23,30,0,0,8,0.138,1,83.22,13,810,0 +2003,9,7,0,30,0,0,8,0.138,1.1,83.14,13,810,0 +2003,9,7,1,30,0,0,8,0.138,1.2000000000000002,82.72,13,810,0 +2003,9,7,2,30,0,0,8,0.138,1.3,82.09,13,800,0 +2003,9,7,3,30,0,0,8,0.138,1.4000000000000001,82.13,13,800,0 +2003,9,7,4,30,0,0,8,0.138,1.4000000000000001,88.56,12,800,0 +2003,9,7,5,30,0,0,8,0.138,1.7000000000000002,84.11,13,800,0 +2003,9,7,6,30,39,0,8,0.138,2.3000000000000003,81.60000000000001,14,800,39 +2003,9,7,7,30,135,26,9,0.138,2.7,78.13,15,810,144 +2003,9,7,8,30,167,9,9,0.138,2.5,73.39,16,810,172 +2003,9,7,9,30,267,30,9,0.138,2.3000000000000003,69.51,17,810,287 +2003,9,7,10,30,186,11,9,0.138,2.3000000000000003,65.59,18,810,196 +2003,9,7,11,30,53,0,9,0.138,2.3000000000000003,65.56,18,810,53 +2003,9,7,12,30,207,13,9,0.138,2.5,65.03,18,810,218 +2003,9,7,13,30,298,26,9,0.138,2.7,64.03,18,800,319 +2003,9,7,14,30,330,182,9,0.138,2.7,63.28,18,800,452 +2003,9,7,15,30,235,79,9,0.138,2.4000000000000004,67.63,17,800,277 +2003,9,7,16,30,71,0,9,0.138,1.6,74.31,16,800,71 +2003,9,7,17,30,46,0,10,0.138,0.7000000000000001,84.68,15,800,46 +2003,9,7,18,30,0,0,10,0.138,0.4,91.33,14,800,0 +2003,9,7,19,30,0,0,10,0.138,0.4,95.88,13,800,0 +2003,9,7,20,30,0,0,9,0.138,0.9,98.73,12,800,0 +2003,9,7,21,30,0,0,9,0.138,1.7000000000000002,94.26,12,800,0 +2003,9,7,22,30,0,0,8,0.138,2.4000000000000004,95.33,11,800,0 +2003,9,7,23,30,0,0,7,0.138,2.8000000000000003,89.84,11,800,0 +2003,9,8,0,30,0,0,6,0.138,3.1,85.18,11,800,0 +2003,9,8,1,30,0,0,5,0.138,3.2,81.37,11,800,0 +2003,9,8,2,30,0,0,5,0.138,3.2,83.72,10,800,0 +2003,9,8,3,30,0,0,4,0.138,3.3000000000000003,81.18,10,800,0 +2003,9,8,4,30,0,0,4,0.138,3.4000000000000004,79.65,10,800,0 +2003,9,8,5,30,0,0,4,0.138,3.7,73.57000000000001,11,800,0 +2003,9,8,6,30,39,540,4,0.138,3.9000000000000004,61.910000000000004,14,800,129 +2003,9,8,7,30,60,766,5,0.138,3.1,49.82,18,800,335 +2003,9,8,8,30,72,867,4,0.138,2.1,35.46,22,800,532 +2003,9,8,9,30,81,918,3,0.138,1.3,29.330000000000002,24,800,696 +2003,9,8,10,30,89,937,3,0.138,0.5,27.53,25,800,810 +2003,9,8,11,30,376,442,3,0.138,0.4,26.78,26,800,739 +2003,9,8,12,30,427,192,4,0.138,0.6000000000000001,27.78,26,800,585 +2003,9,8,13,30,388,231,4,0.138,0.7000000000000001,28.32,26,800,565 +2003,9,8,14,30,221,600,4,0.138,0.9,29.990000000000002,25,800,621 +2003,9,8,15,30,240,122,4,0.138,1,31.61,24,800,304 +2003,9,8,16,30,145,88,5,0.138,0.8,37.52,22,800,176 +2003,9,8,17,30,21,0,8,0.138,0.5,57.24,19,800,21 +2003,9,8,18,30,0,0,9,0.138,0.7000000000000001,67.79,17,800,0 +2003,9,8,19,30,0,0,9,0.138,1.4000000000000001,72.41,16,800,0 +2003,9,8,20,30,0,0,8,0.138,1.9000000000000001,70.15,16,800,0 +2003,9,8,21,30,0,0,8,0.138,1.9000000000000001,73.3,15,800,0 +2003,9,8,22,30,0,0,8,0.138,1.6,77.61,14,800,0 +2003,9,8,23,30,0,0,7,0.138,1.4000000000000001,81.51,13,800,0 +2003,9,9,0,30,0,0,7,0.138,1.2000000000000002,80.94,13,800,0 +2003,9,9,1,30,0,0,7,0.138,1,86.44,12,800,0 +2003,9,9,2,30,0,0,7,0.138,0.8,86.06,12,800,0 +2003,9,9,3,30,0,0,7,0.138,0.6000000000000001,85.99,12,800,0 +2003,9,9,4,30,0,0,7,0.138,0.5,91.4,11,800,0 +2003,9,9,5,30,0,0,7,0.138,0.5,84.42,12,800,0 +2003,9,9,6,30,56,13,8,0.138,0.4,76.53,14,800,59 +2003,9,9,7,30,85,601,7,0.138,0.8,64.88,16,800,299 +2003,9,9,8,30,84,821,5,0.138,1.5,47.480000000000004,19,800,517 +2003,9,9,9,30,217,614,4,0.138,2.1,37.550000000000004,21,800,627 +2003,9,9,10,30,375,318,3,0.138,2.6,34.17,22,800,619 +2003,9,9,11,30,424,216,3,0.138,2.9000000000000004,33.78,22,800,600 +2003,9,9,12,30,408,88,3,0.138,2.9000000000000004,35.87,21,800,480 +2003,9,9,13,30,339,46,3,0.138,2.9000000000000004,36.37,21,800,375 +2003,9,9,14,30,293,53,3,0.138,2.5,36.78,21,800,328 +2003,9,9,15,30,187,19,4,0.138,2.4000000000000004,39.83,20,800,197 +2003,9,9,16,30,76,0,4,0.138,2.9000000000000004,43.47,19,800,76 +2003,9,9,17,30,48,0,5,0.138,3.2,54.07,17,800,48 +2003,9,9,18,30,0,0,6,0.138,3.3000000000000003,64.18,15,800,0 +2003,9,9,19,30,0,0,6,0.138,3.4000000000000004,71.06,14,800,0 +2003,9,9,20,30,0,0,7,0.138,3.1,78.85000000000001,13,800,0 +2003,9,9,21,30,0,0,7,0.138,2.5,83.14,12,800,0 +2003,9,9,22,30,0,0,6,0.138,2.3000000000000003,80.64,12,800,0 +2003,9,9,23,30,0,0,6,0.138,2.6,77.52,12,800,0 +2003,9,10,0,30,0,0,5,0.138,2.3000000000000003,79,11,800,0 +2003,9,10,1,30,0,0,5,0.138,2,76.29,11,800,0 +2003,9,10,2,30,0,0,4,0.138,2.1,79.33,10,800,0 +2003,9,10,3,30,0,0,4,0.138,1.9000000000000001,82.91,9,800,0 +2003,9,10,4,30,0,0,4,0.138,1.6,87.23,8,800,0 +2003,9,10,5,30,0,0,3,0.138,1.7000000000000002,79.99,9,800,0 +2003,9,10,6,30,49,335,3,0.138,2.1,65.81,12,800,103 +2003,9,10,7,30,86,593,3,0.138,2.1,53.82,15,800,296 +2003,9,10,8,30,82,0,3,0.138,2.1,45.62,17,800,82 +2003,9,10,9,30,204,645,2,0.138,2.2,38.85,19,800,632 +2003,9,10,10,30,326,462,2,0.138,2.2,35.59,20,800,678 +2003,9,10,11,30,376,372,2,0.138,2,34.83,20,800,678 +2003,9,10,12,30,330,560,2,0.138,2.3000000000000003,37.660000000000004,19,800,784 +2003,9,10,13,30,127,863,2,0.138,3.5,41.52,18,800,781 +2003,9,10,14,30,97,875,3,0.138,4.800000000000001,44.86,17,800,671 +2003,9,10,15,30,81,829,2,0.138,4.9,47.17,16,800,507 +2003,9,10,16,30,112,4,2,0.138,4.3,51.52,14,800,114 +2003,9,10,17,30,50,18,2,0.138,3.3000000000000003,57.7,12,800,53 +2003,9,10,18,30,0,0,2,0.138,2.3000000000000003,69.31,10,800,0 +2003,9,10,19,30,0,0,2,0.138,1.7000000000000002,74.41,9,810,0 +2003,9,10,20,30,0,0,2,0.138,1.1,79.41,8,810,0 +2003,9,10,21,30,0,0,2,0.138,0.7000000000000001,83.76,7,810,0 +2003,9,10,22,30,0,0,2,0.138,0.7000000000000001,88.22,6,810,0 +2003,9,10,23,30,0,0,1,0.138,0.7000000000000001,86.32000000000001,6,810,0 +2003,9,11,0,30,0,0,1,0.138,0.4,90.37,5,810,0 +2003,9,11,1,30,0,0,1,0.138,0.30000000000000004,94.79,4,810,0 +2003,9,11,2,30,0,0,1,0.138,0.6000000000000001,93.28,4,810,0 +2003,9,11,3,30,0,0,0,0.138,0.8,92.63,4,810,0 +2003,9,11,4,30,0,0,0,0.138,0.9,98.54,3,810,0 +2003,9,11,5,30,0,0,0,0.138,1.2000000000000002,89.76,4,810,0 +2003,9,11,6,30,46,366,0,0.138,1.2000000000000002,72.19,7,810,104 +2003,9,11,7,30,146,144,0,0.138,0.9,58.7,10,810,197 +2003,9,11,8,30,76,854,0,0.138,1.2000000000000002,49.89,12,810,521 +2003,9,11,9,30,53,0,0,0.138,1.5,42.550000000000004,14,810,53 +2003,9,11,10,30,355,61,0,0.138,1.7000000000000002,37,16,810,402 +2003,9,11,11,30,113,1,0,0.138,1.9000000000000001,34.36,17,810,114 +2003,9,11,12,30,195,12,0,0.138,2,32.14,18,810,205 +2003,9,11,13,30,91,943,0,0.138,1.8,30.14,19,810,801 +2003,9,11,14,30,84,913,0,0.138,1.4000000000000001,29.92,19,810,678 +2003,9,11,15,30,76,849,0,0.138,0.8,31.39,18,810,508 +2003,9,11,16,30,60,741,-1,0.138,0.30000000000000004,33.26,17,810,309 +2003,9,11,17,30,37,479,0,0.138,0.2,45.230000000000004,14,810,105 +2003,9,11,18,30,0,0,1,0.138,0.5,58.63,11,810,0 +2003,9,11,19,30,0,0,0,0.138,1,60.24,10,810,0 +2003,9,11,20,30,0,0,0,0.138,1.5,62.38,9,810,0 +2003,9,11,21,30,0,0,0,0.138,1.9000000000000001,60.99,9,810,0 +2003,9,11,22,30,0,0,0,0.138,2.3000000000000003,63.93,8,810,0 +2003,9,11,23,30,0,0,0,0.138,2.8000000000000003,62.64,8,810,0 +2003,9,12,0,30,0,0,0,0.138,3.1,61.64,8,810,0 +2003,9,12,1,30,0,0,0,0.138,3.3000000000000003,61.03,8,810,0 +2003,9,12,2,30,0,0,0,0.138,3.3000000000000003,60.85,8,810,0 +2003,9,12,3,30,0,0,0,0.138,3.2,60.9,8,800,0 +2003,9,12,4,30,0,0,0,0.138,3.1,61,8,800,0 +2003,9,12,5,30,0,0,0,0.138,3.2,61,8,800,0 +2003,9,12,6,30,49,294,0,0.138,3.5,51.160000000000004,11,800,95 +2003,9,12,7,30,129,329,0,0.138,3.8000000000000003,39.78,15,800,243 +2003,9,12,8,30,176,14,0,0.138,3.6,34.35,18,800,184 +2003,9,12,9,30,192,11,1,0.138,3.2,32.12,20,800,199 +2003,9,12,10,30,265,19,1,0.138,2.9000000000000004,29.57,22,800,280 +2003,9,12,11,30,359,423,2,0.138,2.8000000000000003,28.47,23,800,700 +2003,9,12,12,30,350,503,2,0.138,2.6,26.96,24,800,754 +2003,9,12,13,30,72,969,2,0.138,2.6,25.240000000000002,25,800,797 +2003,9,12,14,30,66,942,1,0.138,2.7,26.48,24,800,675 +2003,9,12,15,30,159,535,1,0.138,2.8000000000000003,27.69,23,800,428 +2003,9,12,16,30,101,464,1,0.138,2.2,31.39,21,800,254 +2003,9,12,17,30,31,529,3,0.138,1.3,43.35,18,800,103 +2003,9,12,18,30,0,0,3,0.138,1,53.870000000000005,15,800,0 +2003,9,12,19,30,0,0,3,0.138,1.1,60.29,13,800,0 +2003,9,12,20,30,0,0,3,0.138,2,63.45,12,800,0 +2003,9,12,21,30,0,0,3,0.138,3.3000000000000003,77.17,9,800,0 +2003,9,12,22,30,0,0,3,0.138,4.1000000000000005,86.91,7,810,0 +2003,9,12,23,30,0,0,2,0.138,4,95.7,5,810,0 +2003,9,13,0,30,0,0,1,0.138,3.4000000000000004,97.64,4,810,0 +2003,9,13,1,30,0,0,0,0.138,2.9000000000000004,99.97,3,810,0 +2003,9,13,2,30,0,0,0,0.138,2.3000000000000003,96.34,3,810,0 +2003,9,13,3,30,0,0,0,0.138,1.8,94.29,3,810,0 +2003,9,13,4,30,0,0,0,0.138,1.3,92.94,3,810,0 +2003,9,13,5,30,0,0,0,0.138,1.1,90.84,3,810,0 +2003,9,13,6,30,39,0,0,0.138,1.9000000000000001,79.11,5,810,39 +2003,9,13,7,30,128,26,0,0.138,3,67.49,7,810,137 +2003,9,13,8,30,92,0,-1,0.138,3.3000000000000003,49.45,10,810,92 +2003,9,13,9,30,273,38,-3,0.138,3.2,38.82,12,810,299 +2003,9,13,10,30,369,89,-3,0.138,3.4000000000000004,35.2,13,810,437 +2003,9,13,11,30,251,16,-3,0.138,3.5,32.8,14,810,264 +2003,9,13,12,30,317,28,-3,0.138,3.4000000000000004,33.13,14,810,340 +2003,9,13,13,30,275,24,-3,0.138,3,33.42,14,810,293 +2003,9,13,14,30,258,32,-3,0.138,2.5,35.49,13,810,279 +2003,9,13,15,30,205,343,-4,0.138,2,37.01,12,810,377 +2003,9,13,16,30,84,553,-4,0.138,1.9000000000000001,38.21,11,810,264 +2003,9,13,17,30,34,486,-3,0.138,1.8,47.160000000000004,9,810,98 +2003,9,13,18,30,0,0,-2,0.138,1.8,63.050000000000004,6,810,0 +2003,9,13,19,30,0,0,-2,0.138,1.8,68.49,5,810,0 +2003,9,13,20,30,0,0,-1,0.138,1.5,74.95,4,810,0 +2003,9,13,21,30,0,0,-1,0.138,1.2000000000000002,75.72,4,810,0 +2003,9,13,22,30,0,0,-1,0.138,1,75.57000000000001,4,810,0 +2003,9,13,23,30,0,0,-2,0.138,0.7000000000000001,80.36,4,810,0 +2003,9,14,0,30,0,0,-2,0.138,0.4,79.22,3,810,0 +2003,9,14,1,30,0,0,-2,0.138,0.2,83.64,2,810,0 +2003,9,14,2,30,0,0,-2,0.138,0.4,82.96000000000001,1,810,0 +2003,9,14,3,30,0,0,-2,0.138,0.9,82.38,1,810,0 +2003,9,14,4,30,0,0,-3,0.138,1.5,79.97,0,810,0 +2003,9,14,5,30,0,0,-3,0.138,2,75.3,1,810,0 +2003,9,14,6,30,40,407,-4,0.138,2.4000000000000004,60.51,5,810,101 +2003,9,14,7,30,107,454,-5,0.138,2.1,41.9,8,810,262 +2003,9,14,8,30,64,935,-7,0.138,1.5,29.63,11,810,543 +2003,9,14,9,30,70,991,-9,0.138,1.2000000000000002,21.78,14,810,715 +2003,9,14,10,30,73,1020,-10,0.138,1.4000000000000001,16.55,17,810,836 +2003,9,14,11,30,74,1032,-10,0.138,1.7000000000000002,13.88,19,810,897 +2003,9,14,12,30,75,1029,-11,0.138,2,12.66,20,810,892 +2003,9,14,13,30,73,1014,-11,0.138,2.3000000000000003,12.51,20,810,822 +2003,9,14,14,30,66,987,-11,0.138,2.3000000000000003,12.5,21,810,695 +2003,9,14,15,30,59,932,-11,0.138,2.2,13.36,20,810,520 +2003,9,14,16,30,49,825,-10,0.138,1.8,15.66,17,810,312 +2003,9,14,17,30,29,568,-4,0.138,1.5,33.39,13,810,101 +2003,9,14,18,30,0,0,-5,0.138,1.4000000000000001,38.59,10,810,0 +2003,9,14,19,30,0,0,-5,0.138,1.3,42.09,8,810,0 +2003,9,14,20,30,0,0,-5,0.138,1.4000000000000001,45.49,7,810,0 +2003,9,14,21,30,0,0,-6,0.138,1.8,42.13,7,810,0 +2003,9,14,22,30,0,0,-8,0.138,2.5,37.730000000000004,7,810,0 +2003,9,14,23,30,0,0,-9,0.138,3.1,34.480000000000004,7,810,0 +2003,9,15,0,30,0,0,-10,0.138,3.5,35.12,6,810,0 +2003,9,15,1,30,0,0,-9,0.138,3.8000000000000003,36.03,6,810,0 +2003,9,15,2,30,0,0,-8,0.138,3.9000000000000004,41.18,6,810,0 +2003,9,15,3,30,0,0,-6,0.138,4,44.81,6,810,0 +2003,9,15,4,30,0,0,-6,0.138,4,44.67,6,810,0 +2003,9,15,5,30,0,0,-8,0.138,4,38.18,7,810,0 +2003,9,15,6,30,31,619,-8,0.138,4.1000000000000005,30.34,10,810,122 +2003,9,15,7,30,58,715,-7,0.138,3.6,22.53,15,810,300 +2003,9,15,8,30,58,946,-8,0.138,2.8000000000000003,17.3,19,810,539 +2003,9,15,9,30,65,992,-9,0.138,2,12.82,22,810,708 +2003,9,15,10,30,70,1013,-9,0.138,1.4000000000000001,11.370000000000001,24,810,825 +2003,9,15,11,30,74,1018,-8,0.138,1.1,11.25,25,810,881 +2003,9,15,12,30,75,1010,-8,0.138,0.9,11.24,26,810,873 +2003,9,15,13,30,74,989,-7,0.138,0.9,11.86,26,800,801 +2003,9,15,14,30,66,961,-6,0.138,0.8,13.11,25,800,674 +2003,9,15,15,30,60,898,-6,0.138,0.6000000000000001,14.450000000000001,24,800,499 +2003,9,15,16,30,50,776,-4,0.138,0.30000000000000004,18.740000000000002,22,800,294 +2003,9,15,17,30,30,476,1,0.138,0.5,36.89,18,800,88 +2003,9,15,18,30,0,0,0,0.138,0.8,42.980000000000004,14,810,0 +2003,9,15,19,30,0,0,0,0.138,1.1,50.08,12,810,0 +2003,9,15,20,30,0,0,0,0.138,1.5,49.71,12,810,0 +2003,9,15,21,30,0,0,0,0.138,1.8,51.93,11,810,0 +2003,9,15,22,30,0,0,0,0.138,2.1,50.120000000000005,11,810,0 +2003,9,15,23,30,0,0,-1,0.138,2.2,51.24,10,800,0 +2003,9,16,0,30,0,0,-2,0.138,2.3000000000000003,48.730000000000004,10,800,0 +2003,9,16,1,30,0,0,-2,0.138,2.3000000000000003,50.4,9,800,0 +2003,9,16,2,30,0,0,-2,0.138,2.1,49.84,9,800,0 +2003,9,16,3,30,0,0,-2,0.138,2,53.08,8,800,0 +2003,9,16,4,30,0,0,-2,0.138,1.8,52.9,8,800,0 +2003,9,16,5,30,0,0,-2,0.138,1.8,49.230000000000004,9,800,0 +2003,9,16,6,30,49,26,-1,0.138,2.5,41.64,13,800,53 +2003,9,16,7,30,117,408,-1,0.138,3.2,31.23,18,800,253 +2003,9,16,8,30,76,858,-2,0.138,3.2,23.650000000000002,21,800,509 +2003,9,16,9,30,260,433,-2,0.138,3.1,19.64,24,800,539 +2003,9,16,10,30,90,947,-1,0.138,3,19.400000000000002,25,800,791 +2003,9,16,11,30,289,617,-1,0.138,2.9000000000000004,18.78,26,800,776 +2003,9,16,12,30,335,512,0,0.138,2.9000000000000004,19.18,26,800,738 +2003,9,16,13,30,260,571,0,0.138,3,19.53,26,800,677 +2003,9,16,14,30,261,409,0,0.138,2.9000000000000004,19.740000000000002,26,800,518 +2003,9,16,15,30,198,344,0,0.138,2.7,21.09,25,800,364 +2003,9,16,16,30,126,147,0,0.138,1.8,25.22,23,800,171 +2003,9,16,17,30,40,73,3,0.138,1.1,38.17,20,800,49 +2003,9,16,18,30,0,0,2,0.138,1.2000000000000002,43.660000000000004,17,800,0 +2003,9,16,19,30,0,0,2,0.138,1.5,45.76,16,800,0 +2003,9,16,20,30,0,0,2,0.138,2,46.08,16,800,0 +2003,9,16,21,30,0,0,2,0.138,2.7,45.29,16,800,0 +2003,9,16,22,30,0,0,2,0.138,3.1,47.660000000000004,15,800,0 +2003,9,16,23,30,0,0,1,0.138,3.1,46.69,15,800,0 +2003,9,17,0,30,0,0,1,0.138,3.1,48.43,14,800,0 +2003,9,17,1,30,0,0,1,0.138,2.9000000000000004,50.620000000000005,13,800,0 +2003,9,17,2,30,0,0,0,0.138,2.7,49.03,13,800,0 +2003,9,17,3,30,0,0,0,0.138,2.6,50.370000000000005,12,800,0 +2003,9,17,4,30,0,0,0,0.138,2.5,47.65,12,800,0 +2003,9,17,5,30,0,0,-1,0.138,2.5,45.62,12,800,0 +2003,9,17,6,30,38,479,-1,0.138,3,37.45,15,800,105 +2003,9,17,7,30,62,746,-1,0.138,3.6,29.09,19,800,309 +2003,9,17,8,30,72,872,-3,0.138,3.7,20.900000000000002,22,800,510 +2003,9,17,9,30,77,935,-4,0.138,3.6,16.42,24,800,677 +2003,9,17,10,30,300,516,-4,0.138,3.6,15.610000000000001,25,800,680 +2003,9,17,11,30,347,430,-4,0.138,3.8000000000000003,15.26,26,790,685 +2003,9,17,12,30,349,402,-3,0.138,4.1000000000000005,14.84,27,790,664 +2003,9,17,13,30,346,72,-3,0.138,4.4,16.16,26,790,399 +2003,9,17,14,30,285,76,-2,0.138,4.3,19.22,24,790,333 +2003,9,17,15,30,122,0,-1,0.138,4.3,25.55,21,800,122 +2003,9,17,16,30,42,0,0,0.138,5.5,36.93,17,800,42 +2003,9,17,17,30,6,0,1,0.866,6.800000000000001,57.35,12,800,6 +2003,9,17,18,30,0,0,2,0.866,6.6000000000000005,84.60000000000001,7,800,0 +2003,9,17,19,30,0,0,1,0.866,5.7,92.45,5,800,0 +2003,9,17,20,30,0,0,0,0.866,4.800000000000001,90.85000000000001,4,810,0 +2003,9,17,21,30,0,0,0,0.866,3.9000000000000004,90.35000000000001,3,810,0 +2003,9,17,22,30,0,0,-1,0.866,3.1,84.31,3,810,0 +2003,9,17,23,30,0,0,-2,0.866,2.4000000000000004,85.11,2,810,0 +2003,9,18,0,30,0,0,-2,0.866,1.7000000000000002,81.12,1,810,0 +2003,9,18,1,30,0,0,-3,0.866,1.1,77.68,1,810,0 +2003,9,18,2,30,0,0,-3,0.866,0.6000000000000001,75.51,0,810,0 +2003,9,18,3,30,0,0,-3,0.866,0.30000000000000004,80.73,0,810,0 +2003,9,18,4,30,0,0,-4,0.866,0.4,85.56,0,810,0 +2003,9,18,5,30,0,0,-4,0.866,0.9,78.33,0,810,0 +2003,9,18,6,30,37,538,-4,0.866,0.9,72.53,1,810,111 +2003,9,18,7,30,127,273,-4,0.866,0.6000000000000001,55.910000000000004,5,810,216 +2003,9,18,8,30,228,174,-6,0.866,1,40.15,8,810,315 +2003,9,18,9,30,175,685,-7,0.866,1.7000000000000002,31.400000000000002,10,810,611 +2003,9,18,10,30,103,1006,-8,0.866,2.3000000000000003,24.27,13,810,841 +2003,9,18,11,30,109,1014,-9,0.866,2.9000000000000004,21.71,14,810,901 +2003,9,18,12,30,109,1008,-9,0.866,3.4000000000000004,19.87,15,810,893 +2003,9,18,13,30,105,989,-9,0.866,3.7,18.27,16,810,818 +2003,9,18,14,30,92,958,-9,0.866,3.9000000000000004,18.150000000000002,16,810,684 +2003,9,18,15,30,76,901,-9,0.866,3.9000000000000004,19.6,15,810,502 +2003,9,18,16,30,56,785,-9,0.866,3.3000000000000003,22.900000000000002,13,810,290 +2003,9,18,17,30,29,481,-6,0.866,2.1,36.94,9,810,79 +2003,9,18,18,30,0,0,-5,0.866,1.4000000000000001,48.51,6,810,0 +2003,9,18,19,30,0,0,-5,0.866,1.3,52.4,5,810,0 +2003,9,18,20,30,0,0,-5,0.866,1.3,55.52,4,810,0 +2003,9,18,21,30,0,0,-6,0.866,1.2000000000000002,54.97,4,810,0 +2003,9,18,22,30,0,0,-6,0.866,1.1,58.22,3,810,0 +2003,9,18,23,30,0,0,-6,0.866,0.9,56.69,3,810,0 +2003,9,19,0,30,0,0,-7,0.866,1,55.04,3,810,0 +2003,9,19,1,30,0,0,-7,0.866,1.4000000000000001,54.08,3,810,0 +2003,9,19,2,30,0,0,-7,0.866,1.9000000000000001,55.160000000000004,3,810,0 +2003,9,19,3,30,0,0,-6,0.866,2.2,59.47,3,810,0 +2003,9,19,4,30,0,0,-7,0.866,2.4000000000000004,58.45,2,810,0 +2003,9,19,5,30,0,0,-7,0.866,2.6,52.09,3,810,0 +2003,9,19,6,30,33,554,-7,0.866,2.8000000000000003,41.93,6,810,107 +2003,9,19,7,30,59,805,-7,0.866,2.5,32.05,10,810,321 +2003,9,19,8,30,79,907,-8,0.866,1.9000000000000001,22.73,14,810,528 +2003,9,19,9,30,93,962,-8,0.866,1.6,18.79,17,810,702 +2003,9,19,10,30,102,990,-7,0.866,1.6,17.8,19,810,824 +2003,9,19,11,30,106,1002,-6,0.866,1.9000000000000001,17.75,20,810,885 +2003,9,19,12,30,108,996,-6,0.866,2.3000000000000003,17.29,21,810,878 +2003,9,19,13,30,105,974,-6,0.866,2.6,16.490000000000002,22,810,804 +2003,9,19,14,30,94,940,-6,0.866,2.7,16.63,22,810,670 +2003,9,19,15,30,80,874,-5,0.866,2.7,17.98,21,800,489 +2003,9,19,16,30,74,552,-5,0.866,2.2,22.29,18,800,235 +2003,9,19,17,30,33,271,-1,0.866,1.6,39.21,14,810,59 +2003,9,19,18,30,0,0,-1,0.866,1.6,44.21,12,810,0 +2003,9,19,19,30,0,0,-1,0.866,1.7000000000000002,46.74,11,810,0 +2003,9,19,20,30,0,0,-1,0.866,1.6,50.04,10,810,0 +2003,9,19,21,30,0,0,-1,0.866,1.4000000000000001,53.31,9,810,0 +2003,9,19,22,30,0,0,-2,0.866,1.3,56.21,8,810,0 +2003,9,19,23,30,0,0,-2,0.866,1.5,54.5,8,800,0 +2003,9,20,0,30,0,0,-3,0.866,2,52.19,8,800,0 +2003,9,20,1,30,0,0,-3,0.866,2.5,50.52,8,800,0 +2003,9,20,2,30,0,0,-3,0.866,2.7,54.620000000000005,7,800,0 +2003,9,20,3,30,0,0,-3,0.866,2.5,55.61,7,800,0 +2003,9,20,4,30,0,0,-2,0.866,2.2,56.49,7,800,0 +2003,9,20,5,30,0,0,-3,0.866,2,52.47,8,800,0 +2003,9,20,6,30,12,0,-2,0.866,2,47.62,10,800,12 +2003,9,20,7,30,128,59,-1,0.866,2.5,41.28,13,800,147 +2003,9,20,8,30,171,511,-2,0.866,3,31.88,16,800,423 +2003,9,20,9,30,115,909,-4,0.866,3.3000000000000003,23.39,19,800,688 +2003,9,20,10,30,115,939,-4,0.866,3.1,20.59,21,800,796 +2003,9,20,11,30,144,895,-5,0.866,2.6,19,22,800,836 +2003,9,20,12,30,186,798,-5,0.866,2.3000000000000003,17.81,22,800,799 +2003,9,20,13,30,206,700,-5,0.866,2.1,16.69,23,800,704 +2003,9,20,14,30,165,679,-5,0.866,2,17.490000000000002,22,800,577 +2003,9,20,15,30,126,633,-5,0.866,1.8,18.11,21,800,419 +2003,9,20,16,30,42,758,-4,0.866,1.3,23.77,18,800,260 +2003,9,20,17,30,30,3,0,0.866,1,38.61,15,800,30 +2003,9,20,18,30,0,0,-1,0.866,1.2000000000000002,45.980000000000004,12,810,0 +2003,9,20,19,30,0,0,-1,0.866,1.4000000000000001,50.34,11,810,0 +2003,9,20,20,30,0,0,-2,0.866,1.9000000000000001,49.01,10,810,0 +2003,9,20,21,30,0,0,-2,0.866,2.2,51.160000000000004,9,810,0 +2003,9,20,22,30,0,0,-2,0.866,2.1,55.08,8,810,0 +2003,9,20,23,30,0,0,-1,0.866,1.9000000000000001,62.74,7,810,0 +2003,9,21,0,30,0,0,-1,0.866,1.6,64.63,7,810,0 +2003,9,21,1,30,0,0,-1,0.866,1.2000000000000002,69.2,7,810,0 +2003,9,21,2,30,0,0,-1,0.866,0.7000000000000001,68.54,6,810,0 +2003,9,21,3,30,0,0,-1,0.866,0.30000000000000004,72.5,5,810,0 +2003,9,21,4,30,0,0,-1,0.866,0.2,71.01,5,810,0 +2003,9,21,5,30,0,0,-2,0.866,0.30000000000000004,69,5,810,0 +2003,9,21,6,30,35,497,-1,0.866,0.7000000000000001,56.94,8,810,98 +2003,9,21,7,30,64,773,-2,0.866,0.9,42.93,12,810,310 +2003,9,21,8,30,82,892,-3,0.866,0.6000000000000001,32.61,15,810,518 +2003,9,21,9,30,97,948,-4,0.866,0.6000000000000001,23.66,18,810,691 +2003,9,21,10,30,107,976,-6,0.866,1.2000000000000002,18.69,20,810,812 +2003,9,21,11,30,108,995,-7,0.866,1.6,16.51,21,800,873 +2003,9,21,12,30,106,995,-7,0.866,1.8,15.18,22,800,866 +2003,9,21,13,30,100,980,-7,0.866,1.6,14.21,23,800,793 +2003,9,21,14,30,87,952,-7,0.866,1.3,15.08,22,800,661 +2003,9,21,15,30,74,888,-7,0.866,1.3,15.98,21,800,480 +2003,9,21,16,30,55,760,-6,0.866,1,19.02,19,800,269 +2003,9,21,17,30,24,425,-2,0.139,0.6000000000000001,33.54,15,810,61 +2003,9,21,18,30,0,0,-2,0.139,0.5,41.47,12,810,0 +2003,9,21,19,30,0,0,-2,0.139,0.9,46.35,10,810,0 +2003,9,21,20,30,0,0,-3,0.139,2,48.47,9,810,0 +2003,9,21,21,30,0,0,-3,0.139,3,47.54,9,810,0 +2003,9,21,22,30,0,0,-2,0.139,2.6,52.88,8,810,0 +2003,9,21,23,30,0,0,-2,0.139,1.6,62.56,6,810,0 +2003,9,22,0,30,0,0,-2,0.139,1.1,61.43,6,810,0 +2003,9,22,1,30,0,0,-3,0.139,0.6000000000000001,63.83,5,810,0 +2003,9,22,2,30,0,0,-3,0.139,0.2,62.28,5,810,0 +2003,9,22,3,30,0,0,-3,0.139,0.30000000000000004,65.67,4,810,0 +2003,9,22,4,30,0,0,-3,0.139,0.5,65.21000000000001,4,810,0 +2003,9,22,5,30,0,0,-4,0.139,0.6000000000000001,64.45,4,810,0 +2003,9,22,6,30,29,533,-3,0.139,0.9,54.730000000000004,7,810,95 +2003,9,22,7,30,49,797,-3,0.139,0.9,39.49,12,810,300 +2003,9,22,8,30,58,911,-4,0.139,0.7000000000000001,27.92,16,810,500 +2003,9,22,9,30,65,965,-5,0.139,1.2000000000000002,21.150000000000002,19,810,666 +2003,9,22,10,30,69,992,-5,0.139,1.7000000000000002,17.42,22,810,782 +2003,9,22,11,30,72,1003,-5,0.139,1.7000000000000002,16.65,23,810,839 +2003,9,22,12,30,72,1000,-5,0.139,1.7000000000000002,15.82,24,810,831 +2003,9,22,13,30,69,984,-5,0.139,1.7000000000000002,14.93,25,810,761 +2003,9,22,14,30,61,960,-5,0.139,1.8,14.9,25,810,634 +2003,9,22,15,30,54,899,-5,0.139,1.9000000000000001,15.82,24,810,460 +2003,9,22,16,30,43,777,-4,0.139,1.7000000000000002,19.68,21,810,257 +2003,9,22,17,30,22,445,0,0.139,1.5,38.01,17,810,58 +2003,9,22,18,30,0,0,-1,0.139,1.5,39.58,14,810,0 +2003,9,22,19,30,0,0,-1,0.139,1.4000000000000001,44.81,12,810,0 +2003,9,22,20,30,0,0,-1,0.139,1.5,50.39,11,810,0 +2003,9,22,21,30,0,0,-2,0.139,1.7000000000000002,47.550000000000004,10,810,0 +2003,9,22,22,30,0,0,-3,0.139,2.2,44.28,10,810,0 +2003,9,22,23,30,0,0,-4,0.139,2.8000000000000003,41.19,10,810,0 +2003,9,23,0,30,0,0,-5,0.139,3.3000000000000003,35.93,11,810,0 +2003,9,23,1,30,0,0,-5,0.139,3.7,37.26,10,810,0 +2003,9,23,2,30,0,0,-5,0.139,3.8000000000000003,38.660000000000004,10,810,0 +2003,9,23,3,30,0,0,-4,0.139,3.7,40,10,810,0 +2003,9,23,4,30,0,0,-4,0.139,3.5,42.730000000000004,9,810,0 +2003,9,23,5,30,0,0,-5,0.139,3.4000000000000004,37.88,10,810,0 +2003,9,23,6,30,29,553,-5,0.139,3.6,30.29,13,810,96 +2003,9,23,7,30,49,817,-5,0.139,3.4000000000000004,23.95,17,810,304 +2003,9,23,8,30,60,928,-5,0.139,3.2,17.87,21,810,507 +2003,9,23,9,30,67,982,-7,0.139,3.2,13.040000000000001,24,810,675 +2003,9,23,10,30,71,1011,-8,0.139,3.1,11.73,25,800,793 +2003,9,23,11,30,72,1026,-8,0.139,3,10.86,26,800,852 +2003,9,23,12,30,71,1025,-8,0.139,3,10.08,27,800,844 +2003,9,23,13,30,68,1009,-8,0.139,3,9.35,28,800,772 +2003,9,23,14,30,63,979,-9,0.139,3,9.72,27,800,642 +2003,9,23,15,30,56,915,-9,0.139,2.6,10.19,26,800,464 +2003,9,23,16,30,45,784,-6,0.139,1.8,16.6,22,800,257 +2003,9,23,17,30,21,435,-2,0.139,1.4000000000000001,30.51,17,800,55 +2003,9,23,18,30,0,0,-3,0.139,1.6,34.72,14,800,0 +2003,9,23,19,30,0,0,-3,0.139,1.9000000000000001,34.99,13,800,0 +2003,9,23,20,30,0,0,-4,0.139,2,36.03,12,800,0 +2003,9,23,21,30,0,0,-4,0.139,2.1,37.75,11,800,0 +2003,9,23,22,30,0,0,-4,0.139,2.1,37.06,11,800,0 +2003,9,23,23,30,0,0,-5,0.139,2.1,38.800000000000004,10,810,0 +2003,9,24,0,30,0,0,-5,0.139,2.1,37.99,10,810,0 +2003,9,24,1,30,0,0,-5,0.139,2.1,40.12,9,810,0 +2003,9,24,2,30,0,0,-5,0.139,2,43.660000000000004,8,810,0 +2003,9,24,3,30,0,0,-5,0.139,1.6,47.71,7,810,0 +2003,9,24,4,30,0,0,-4,0.139,1.6,49.31,7,810,0 +2003,9,24,5,30,0,0,-4,0.139,1.7000000000000002,50.75,7,810,0 +2003,9,24,6,30,29,523,-3,0.139,1.7000000000000002,47.9,9,810,90 +2003,9,24,7,30,51,790,0,0.139,1.6,51,11,810,295 +2003,9,24,8,30,62,907,-1,0.139,1,36.75,15,810,496 +2003,9,24,9,30,67,968,-3,0.139,1.3,26.62,18,810,663 +2003,9,24,10,30,71,999,-4,0.139,2.2,19.92,21,810,780 +2003,9,24,11,30,74,1008,-5,0.139,3,17.76,22,810,836 +2003,9,24,12,30,74,1004,-5,0.139,3.5,16.69,23,810,827 +2003,9,24,13,30,72,985,-5,0.139,3.8000000000000003,16.92,23,810,754 +2003,9,24,14,30,65,952,-4,0.139,4,18.55,22,810,624 +2003,9,24,15,30,58,883,-4,0.139,4,20.740000000000002,21,810,448 +2003,9,24,16,30,46,745,-3,0.139,3.4000000000000004,26.72,18,810,243 +2003,9,24,17,30,22,351,0,0.139,2.3000000000000003,41.02,14,810,47 +2003,9,24,18,30,0,0,0,0.139,1.4000000000000001,53.03,11,810,0 +2003,9,24,19,30,0,0,0,0.139,1,58.42,10,810,0 +2003,9,24,20,30,0,0,0,0.139,0.9,67.23,8,810,0 +2003,9,24,21,30,0,0,0,0.139,0.9,66.92,8,810,0 +2003,9,24,22,30,0,0,0,0.139,1,71.58,7,810,0 +2003,9,24,23,30,0,0,0,0.139,1.1,70.92,7,810,0 +2003,9,25,0,30,0,0,0,0.139,1.2000000000000002,74.04,6,810,0 +2003,9,25,1,30,0,0,-1,0.139,1.4000000000000001,69.84,6,810,0 +2003,9,25,2,30,0,0,-1,0.139,1.8,64.95,6,810,0 +2003,9,25,3,30,0,0,-3,0.139,2.4000000000000004,54.51,7,810,0 +2003,9,25,4,30,0,0,-5,0.139,2.9000000000000004,44.34,8,810,0 +2003,9,25,5,30,0,0,-6,0.139,3.2,37.35,9,810,0 +2003,9,25,6,30,36,297,-7,0.139,3.8000000000000003,29.28,12,810,70 +2003,9,25,7,30,45,840,-7,0.139,4,22.5,16,810,302 +2003,9,25,8,30,56,946,-7,0.139,3.9000000000000004,16.84,20,810,505 +2003,9,25,9,30,62,998,-10,0.139,3.8000000000000003,11.53,23,810,673 +2003,9,25,10,30,67,1020,-10,0.139,3.4000000000000004,9.66,25,810,788 +2003,9,25,11,30,69,1023,-10,0.139,3.2,9.290000000000001,26,810,839 +2003,9,25,12,30,71,1011,-10,0.139,3,9.01,27,800,825 +2003,9,25,13,30,70,987,-9,0.139,2.9000000000000004,9.24,27,800,749 +2003,9,25,14,30,64,954,-9,0.139,2.6,9.46,27,800,619 +2003,9,25,15,30,80,746,-9,0.139,2,10.4,26,800,406 +2003,9,25,16,30,55,617,-5,0.139,1.1,17.17,22,800,215 +2003,9,25,17,30,20,302,0,0.139,0.6000000000000001,34.69,18,800,40 +2003,9,25,18,30,0,0,-1,0.139,0.5,38.84,15,810,0 +2003,9,25,19,30,0,0,-2,0.139,0.5,37.03,14,810,0 +2003,9,25,20,30,0,0,-3,0.139,1.2000000000000002,35.71,13,810,0 +2003,9,25,21,30,0,0,-4,0.139,2,32.980000000000004,13,800,0 +2003,9,25,22,30,0,0,-5,0.139,2.9000000000000004,31.5,13,800,0 +2003,9,25,23,30,0,0,-6,0.139,3.8000000000000003,29.240000000000002,13,800,0 +2003,9,26,0,30,0,0,-6,0.139,4.4,28.46,13,800,0 +2003,9,26,1,30,0,0,-5,0.139,4.5,32.55,13,800,0 +2003,9,26,2,30,0,0,-4,0.139,4.1000000000000005,36.18,12,800,0 +2003,9,26,3,30,0,0,-3,0.139,3.6,39.79,11,800,0 +2003,9,26,4,30,0,0,-4,0.139,2.9000000000000004,42.28,10,800,0 +2003,9,26,5,30,0,0,-4,0.139,2.1,42.19,10,810,0 +2003,9,26,6,30,27,490,-3,0.139,1.9000000000000001,36.7,13,810,81 +2003,9,26,7,30,48,772,-2,0.139,2.3000000000000003,29.060000000000002,17,810,281 +2003,9,26,8,30,58,892,-1,0.139,2.5,26.7,20,810,479 +2003,9,26,9,30,65,950,0,0.139,2.3000000000000003,23.29,23,810,643 +2003,9,26,10,30,69,980,-1,0.139,2.2,21.38,24,810,757 +2003,9,26,11,30,70,992,-1,0.139,2.5,19.53,25,800,812 +2003,9,26,12,30,70,989,-1,0.139,2.7,18.07,26,800,802 +2003,9,26,13,30,67,972,-1,0.139,2.7,17.77,26,800,730 +2003,9,26,14,30,165,639,-2,0.139,2.6,18.61,25,800,534 +2003,9,26,15,30,53,876,-2,0.139,2.6,19.55,24,800,431 +2003,9,26,16,30,42,738,-2,0.139,2.2,23.71,21,800,230 +2003,9,26,17,30,19,329,1,0.139,1.8,38.99,17,810,38 +2003,9,26,18,30,0,0,0,0.139,1.4000000000000001,46.31,14,810,0 +2003,9,26,19,30,0,0,1,0.139,1.1,54.19,12,810,0 +2003,9,26,20,30,0,0,0,0.139,1.1,57.160000000000004,11,810,0 +2003,9,26,21,30,0,0,1,0.139,1.5,65.98,9,810,0 +2003,9,26,22,30,0,0,1,0.139,1.8,71.01,9,810,0 +2003,9,26,23,30,0,0,1,0.139,1.7000000000000002,71.39,8,810,0 +2003,9,27,0,30,0,0,1,0.139,1.3,78.08,7,810,0 +2003,9,27,1,30,0,0,1,0.139,0.9,85.19,6,810,0 +2003,9,27,2,30,0,0,1,0.139,0.7000000000000001,84.05,6,810,0 +2003,9,27,3,30,0,0,0,0.139,0.7000000000000001,86.28,5,810,0 +2003,9,27,4,30,0,0,0,0.139,0.7000000000000001,80.93,5,810,0 +2003,9,27,5,30,0,0,0,0.139,0.7000000000000001,75.84,5,810,0 +2003,9,27,6,30,28,463,0,0.139,0.6000000000000001,61.11,8,810,78 +2003,9,27,7,30,50,758,0,0.139,0.8,43.75,13,810,276 +2003,9,27,8,30,61,882,-1,0.139,1.4000000000000001,34.44,16,810,473 +2003,9,27,9,30,68,941,-2,0.139,1.7000000000000002,27.95,18,810,637 +2003,9,27,10,30,71,973,-3,0.139,2,23.38,20,810,751 +2003,9,27,11,30,73,986,-3,0.139,2.4000000000000004,21.32,21,810,806 +2003,9,27,12,30,73,984,-3,0.139,2.9000000000000004,19.84,22,810,797 +2003,9,27,13,30,70,967,-3,0.139,3.2,19.900000000000002,22,810,725 +2003,9,27,14,30,64,933,-3,0.139,3.5,20.01,22,810,597 +2003,9,27,15,30,56,862,-3,0.139,3.6,21.34,21,810,423 +2003,9,27,16,30,43,719,-3,0.139,3,26,19,810,222 +2003,9,27,17,30,18,291,-1,0.139,1.9000000000000001,37.44,15,810,34 +2003,9,27,18,30,0,0,-1,0.139,1.3,46.09,12,810,0 +2003,9,27,19,30,0,0,0,0.139,1.1,49.9,11,810,0 +2003,9,27,20,30,0,0,-1,0.139,1,56.45,9,810,0 +2003,9,27,21,30,0,0,-1,0.139,0.8,59.53,8,810,0 +2003,9,27,22,30,0,0,-1,0.139,0.5,59.230000000000004,8,810,0 +2003,9,27,23,30,0,0,-1,0.139,0.4,62.910000000000004,7,810,0 +2003,9,28,0,30,0,0,-1,0.139,0.6000000000000001,66.48,6,810,0 +2003,9,28,1,30,0,0,-1,0.139,0.7000000000000001,70.17,5,810,0 +2003,9,28,2,30,0,0,-1,0.139,0.6000000000000001,70.22,5,810,0 +2003,9,28,3,30,0,0,-1,0.139,0.4,75.58,4,810,0 +2003,9,28,4,30,0,0,-1,0.139,0.2,75.81,4,810,0 +2003,9,28,5,30,0,0,-1,0.139,0,75.89,4,810,0 +2003,9,28,6,30,27,461,-1,0.139,0.4,62.29,7,810,75 +2003,9,28,7,30,50,753,-1,0.139,1.4000000000000001,48.54,11,810,272 +2003,9,28,8,30,61,876,-1,0.139,2.3000000000000003,38.44,14,810,468 +2003,9,28,9,30,69,934,-1,0.139,2.8000000000000003,31.13,17,810,630 +2003,9,28,10,30,74,964,-2,0.139,3.3000000000000003,27.22,19,810,743 +2003,9,28,11,30,76,977,-2,0.139,3.8000000000000003,25.38,20,810,797 +2003,9,28,12,30,76,973,-2,0.139,4.1000000000000005,23.73,21,810,788 +2003,9,28,13,30,74,953,-2,0.139,4.2,23.66,21,810,715 +2003,9,28,14,30,67,919,-2,0.139,4.1000000000000005,25.13,21,810,587 +2003,9,28,15,30,59,844,-2,0.139,4,26.830000000000002,20,810,413 +2003,9,28,16,30,45,692,-1,0.139,3.3000000000000003,31.150000000000002,17,810,214 +2003,9,28,17,30,17,270,0,0.139,2.2,45.480000000000004,13,810,30 +2003,9,28,18,30,0,0,0,0.139,1.6,55.25,10,810,0 +2003,9,28,19,30,0,0,0,0.139,1.3,59.18,9,810,0 +2003,9,28,20,30,0,0,0,0.139,1,63.07,8,810,0 +2003,9,28,21,30,0,0,0,0.139,0.7000000000000001,62.81,8,810,0 +2003,9,28,22,30,0,0,0,0.139,0.6000000000000001,62.07,8,810,0 +2003,9,28,23,30,0,0,0,0.139,0.6000000000000001,65.6,7,810,0 +2003,9,29,0,30,0,0,-1,0.139,0.6000000000000001,64.55,7,810,0 +2003,9,29,1,30,0,0,-1,0.139,0.6000000000000001,68.22,6,810,0 +2003,9,29,2,30,0,0,-1,0.139,0.6000000000000001,68.68,6,810,0 +2003,9,29,3,30,0,0,-1,0.139,0.7000000000000001,69.52,6,810,0 +2003,9,29,4,30,0,0,-1,0.139,1.1,69.55,6,810,0 +2003,9,29,5,30,0,0,0,0.139,1.9000000000000001,69.92,6,810,0 +2003,9,29,6,30,33,225,0,0.139,2.7,62.6,8,810,56 +2003,9,29,7,30,50,743,0,0.139,3.1,50.47,12,810,267 +2003,9,29,8,30,64,860,0,0.139,3.6,40.93,15,810,460 +2003,9,29,9,30,73,920,0,0.139,4.1000000000000005,32.96,18,810,621 +2003,9,29,10,30,79,950,0,0.139,4.2,31.12,19,810,734 +2003,9,29,11,30,263,607,0,0.139,4.4,29.27,20,810,709 +2003,9,29,12,30,83,954,0,0.139,4.6000000000000005,27.560000000000002,21,810,777 +2003,9,29,13,30,83,929,0,0.139,4.800000000000001,29.7,20,810,703 +2003,9,29,14,30,77,887,0,0.139,4.800000000000001,32.11,19,810,574 +2003,9,29,15,30,71,761,0,0.139,4.6000000000000005,34.54,18,810,387 +2003,9,29,16,30,71,416,0,0.139,4.1000000000000005,42.410000000000004,15,810,171 +2003,9,29,17,30,17,178,1,0.14200000000000002,3.4000000000000004,56.13,12,810,24 +2003,9,29,18,30,0,0,1,0.14200000000000002,2.9000000000000004,68.25,9,810,0 +2003,9,29,19,30,0,0,1,0.14200000000000002,2.4000000000000004,73.81,8,810,0 +2003,9,29,20,30,0,0,1,0.14200000000000002,1.8,80.41,7,810,0 +2003,9,29,21,30,0,0,2,0.14200000000000002,1.3,87.31,7,810,0 +2003,9,29,22,30,0,0,2,0.14200000000000002,1.2000000000000002,88.22,6,810,0 +2003,9,29,23,30,0,0,2,0.14200000000000002,1.6,88.16,6,810,0 +2003,9,30,0,30,0,0,2,0.14200000000000002,1.7000000000000002,87.74,6,810,0 +2003,9,30,1,30,0,0,2,0.14200000000000002,1.3,93.59,5,810,0 +2003,9,30,2,30,0,0,1,0.14200000000000002,1.2000000000000002,98.34,4,810,0 +2003,9,30,3,30,0,0,1,0.14200000000000002,1.5,95.77,4,810,0 +2003,9,30,4,30,0,0,1,0.14200000000000002,1.7000000000000002,93.75,4,810,0 +2003,9,30,5,30,0,0,0,0.14200000000000002,1.9000000000000001,92.56,4,810,0 +2003,9,30,6,30,15,0,1,0.14200000000000002,2.1,88.15,5,810,15 +2003,9,30,7,30,83,559,2,0.14200000000000002,2,77.01,8,810,245 +2003,9,30,8,30,101,689,2,0.14200000000000002,2.1,61.86,11,810,416 +2003,9,30,9,30,218,486,1,0.14200000000000002,2.8000000000000003,47.44,14,810,506 +2003,9,30,10,30,340,119,0,0.14200000000000002,3.5,43.03,15,810,421 +2003,9,30,11,30,371,140,0,0.14200000000000002,3.8000000000000003,39.96,16,810,473 +2003,9,30,12,30,288,28,0,0.14200000000000002,3.7,37.26,17,810,309 +2003,9,30,13,30,293,50,0,0.14200000000000002,3.5,36.95,17,810,327 +2003,9,30,14,30,216,27,0,0.14200000000000002,3.4000000000000004,36.37,17,810,231 +2003,9,30,15,30,139,9,0,0.14200000000000002,3.2,38.15,16,810,143 +2003,9,30,16,30,88,50,0,0.14200000000000002,2.8000000000000003,46.25,13,810,100 +2003,9,30,17,30,11,0,0,0.14200000000000002,2,65.6,10,810,11 +2003,9,30,18,30,0,0,0,0.14200000000000002,1.4000000000000001,74.63,7,810,0 +2003,9,30,19,30,0,0,0,0.14200000000000002,1,80.47,6,810,0 +2003,9,30,20,30,0,0,0,0.14200000000000002,0.8,85.46000000000001,5,810,0 +2003,9,30,21,30,0,0,0,0.14200000000000002,0.7000000000000001,83.29,5,810,0 +2003,9,30,22,30,0,0,0,0.14200000000000002,0.5,80.68,5,810,0 +2003,9,30,23,30,0,0,0,0.14200000000000002,0.30000000000000004,83.75,4,810,0 +2003,10,1,0,30,0,0,0,0.14200000000000002,0.2,80.53,4,810,0 +2003,10,1,1,30,0,0,-1,0.14200000000000002,0.30000000000000004,76.53,4,810,0 +2003,10,1,2,30,0,0,-2,0.14200000000000002,0.4,72.10000000000001,4,810,0 +2003,10,1,3,30,0,0,-3,0.14200000000000002,0.6000000000000001,68.32000000000001,4,810,0 +2003,10,1,4,30,0,0,-3,0.14200000000000002,0.8,65.63,4,810,0 +2003,10,1,5,30,0,0,-4,0.14200000000000002,1,64.2,4,810,0 +2003,10,1,6,30,33,151,-3,0.14200000000000002,1.2000000000000002,54.26,7,810,48 +2003,10,1,7,30,71,0,-1,0.14200000000000002,1.5,46.6,11,810,71 +2003,10,1,8,30,165,18,-2,0.14200000000000002,1.8,36.93,14,810,173 +2003,10,1,9,30,283,171,-1,0.14200000000000002,2,31.77,17,810,384 +2003,10,1,10,30,216,645,-1,0.14200000000000002,2.2,31.29,18,810,656 +2003,10,1,11,30,245,636,0,0.14200000000000002,2.5,29.04,20,810,706 +2003,10,1,12,30,303,430,0,0.14200000000000002,2.9000000000000004,28.45,21,810,612 +2003,10,1,13,30,98,0,0,0.14200000000000002,3.1,29.07,21,810,98 +2003,10,1,14,30,237,346,0,0.14200000000000002,3.1,31.44,20,810,427 +2003,10,1,15,30,120,536,1,0.14200000000000002,3,34.33,19,810,337 +2003,10,1,16,30,71,432,1,0.14200000000000002,2.3000000000000003,43.14,16,810,169 +2003,10,1,17,30,15,0,3,0.14200000000000002,1.5,61.870000000000005,12,810,15 +2003,10,1,18,30,0,0,2,0.14200000000000002,1.2000000000000002,69.49,10,810,0 +2003,10,1,19,30,0,0,2,0.14200000000000002,0.9,73.26,9,810,0 +2003,10,1,20,30,0,0,2,0.14200000000000002,0.5,72.42,9,810,0 +2003,10,1,21,30,0,0,2,0.14200000000000002,0.2,72.04,9,810,0 +2003,10,1,22,30,0,0,2,0.14200000000000002,0.5,71.79,9,810,0 +2003,10,1,23,30,0,0,2,0.14200000000000002,0.9,71.56,9,810,0 +2003,10,2,0,30,0,0,2,0.14200000000000002,0.7000000000000001,71.3,9,810,0 +2003,10,2,1,30,0,0,2,0.14200000000000002,0.5,76.07000000000001,8,810,0 +2003,10,2,2,30,0,0,2,0.14200000000000002,0.7000000000000001,76.56,8,810,0 +2003,10,2,3,30,0,0,2,0.14200000000000002,0.9,77.46000000000001,8,810,0 +2003,10,2,4,30,0,0,2,0.14200000000000002,0.9,83.36,8,810,0 +2003,10,2,5,30,0,0,2,0.14200000000000002,0.9,83.54,8,810,0 +2003,10,2,6,30,22,0,2,0.14200000000000002,1.4000000000000001,74.07000000000001,9,810,22 +2003,10,2,7,30,114,135,3,0.14200000000000002,2,65.46000000000001,12,810,152 +2003,10,2,8,30,139,536,4,0.14200000000000002,2.3000000000000003,54.65,15,800,380 +2003,10,2,9,30,211,499,3,0.14200000000000002,2.4000000000000004,42.22,18,800,502 +2003,10,2,10,30,324,81,3,0.14200000000000002,2.4000000000000004,39.59,19,800,379 +2003,10,2,11,30,341,340,3,0.14200000000000002,2.5,37.800000000000004,20,800,587 +2003,10,2,12,30,294,456,3,0.14200000000000002,2.1,41.57,19,800,619 +2003,10,2,13,30,92,0,4,0.14200000000000002,1.5,47.34,18,800,92 +2003,10,2,14,30,257,190,5,0.14200000000000002,1.5,57.58,16,800,361 +2003,10,2,15,30,131,5,6,0.14200000000000002,2.2,69.67,14,800,133 +2003,10,2,16,30,86,121,7,0.14200000000000002,2.8000000000000003,76.60000000000001,13,800,113 +2003,10,2,17,30,6,0,7,0.14200000000000002,2.9000000000000004,81.73,12,800,6 +2003,10,2,18,30,0,0,6,0.14200000000000002,2.8000000000000003,85.92,11,800,0 +2003,10,2,19,30,0,0,6,0.14200000000000002,2.6,83.03,11,800,0 +2003,10,2,20,30,0,0,5,0.14200000000000002,2.4000000000000004,85.62,10,800,0 +2003,10,2,21,30,0,0,5,0.14200000000000002,2.2,83.65,10,800,0 +2003,10,2,22,30,0,0,5,0.14200000000000002,2,88.23,10,800,0 +2003,10,2,23,30,0,0,4,0.14200000000000002,1.7000000000000002,86.32000000000001,9,800,0 +2003,10,3,0,30,0,0,4,0.14200000000000002,1.6,90.25,8,800,0 +2003,10,3,1,30,0,0,3,0.14200000000000002,1.8,86.62,8,800,0 +2003,10,3,2,30,0,0,3,0.14200000000000002,2,88.31,7,810,0 +2003,10,3,3,30,0,0,1,0.14200000000000002,2,86.37,6,810,0 +2003,10,3,4,30,0,0,0,0.14200000000000002,1.7000000000000002,83.07000000000001,5,810,0 +2003,10,3,5,30,0,0,-1,0.14200000000000002,1.5,74.29,5,810,0 +2003,10,3,6,30,2,0,-1,0.14200000000000002,1.9000000000000001,61.230000000000004,7,810,2 +2003,10,3,7,30,13,0,-1,0.14200000000000002,2.3000000000000003,49.86,10,810,13 +2003,10,3,8,30,71,0,-5,0.14200000000000002,2.2,34.15,12,810,71 +2003,10,3,9,30,271,92,-6,0.14200000000000002,1.9000000000000001,25.01,15,810,324 +2003,10,3,10,30,335,208,-6,0.14200000000000002,2,24.29,16,810,475 +2003,10,3,11,30,327,373,-5,0.14200000000000002,2.3000000000000003,23.77,17,810,595 +2003,10,3,12,30,355,231,-5,0.14200000000000002,2.6,22.72,18,810,518 +2003,10,3,13,30,242,492,-5,0.14200000000000002,2.7,22.88,18,810,561 +2003,10,3,14,30,248,248,-5,0.14200000000000002,2.6,24.34,18,810,382 +2003,10,3,15,30,169,98,-5,0.14200000000000002,2.4000000000000004,25.75,17,810,208 +2003,10,3,16,30,84,69,-5,0.14200000000000002,1.6,30.07,14,810,99 +2003,10,3,17,30,7,0,-2,0.14200000000000002,1.1,48.230000000000004,10,810,7 +2003,10,3,18,30,0,0,-3,0.14200000000000002,1.1,52.370000000000005,8,810,0 +2003,10,3,19,30,0,0,-3,0.14200000000000002,1,49.28,8,810,0 +2003,10,3,20,30,0,0,-4,0.14200000000000002,1,51.480000000000004,7,810,0 +2003,10,3,21,30,0,0,-4,0.14200000000000002,1,50.97,7,810,0 +2003,10,3,22,30,0,0,-4,0.14200000000000002,1,51.300000000000004,7,810,0 +2003,10,3,23,30,0,0,-4,0.14200000000000002,1,51.85,7,810,0 +2003,10,4,0,30,0,0,-3,0.14200000000000002,1.1,56.550000000000004,6,810,0 +2003,10,4,1,30,0,0,-3,0.14200000000000002,1.2000000000000002,57.58,6,810,0 +2003,10,4,2,30,0,0,-3,0.14200000000000002,1.3,59.74,6,810,0 +2003,10,4,3,30,0,0,-2,0.14200000000000002,1.3,62.93,6,810,0 +2003,10,4,4,30,0,0,-1,0.14200000000000002,1.3,66.6,6,810,0 +2003,10,4,5,30,0,0,0,0.14200000000000002,1.4000000000000001,70.88,6,810,0 +2003,10,4,6,30,28,295,0,0.14200000000000002,1.6,65.29,8,810,53 +2003,10,4,7,30,62,638,1,0.14200000000000002,1.8,58.36,11,810,237 +2003,10,4,8,30,75,797,1,0.14200000000000002,1.8,49.53,14,810,428 +2003,10,4,9,30,133,740,2,0.14200000000000002,2.4000000000000004,44.54,16,810,559 +2003,10,4,10,30,259,492,2,0.14200000000000002,3,42.24,17,810,587 +2003,10,4,11,30,238,638,2,0.14200000000000002,3.3000000000000003,40.230000000000004,18,800,692 +2003,10,4,12,30,284,471,2,0.14200000000000002,3.3000000000000003,38.2,19,800,616 +2003,10,4,13,30,207,597,2,0.14200000000000002,3,38.550000000000004,19,800,590 +2003,10,4,14,30,233,322,2,0.14200000000000002,2.8000000000000003,41.04,18,800,406 +2003,10,4,15,30,164,220,2,0.14200000000000002,2.5,43.2,17,800,250 +2003,10,4,16,30,78,203,2,0.14200000000000002,1.7000000000000002,48.95,15,800,121 +2003,10,4,17,30,0,0,3,0.14200000000000002,1.1,60.1,13,800,0 +2003,10,4,18,30,0,0,3,0.14200000000000002,0.9,66.27,11,810,0 +2003,10,4,19,30,0,0,2,0.14200000000000002,0.7000000000000001,69.75,10,810,0 +2003,10,4,20,30,0,0,2,0.14200000000000002,0.9,79.24,8,810,0 +2003,10,4,21,30,0,0,2,0.14200000000000002,1.2000000000000002,78.7,8,810,0 +2003,10,4,22,30,0,0,2,0.14200000000000002,1.5,78.05,8,810,0 +2003,10,4,23,30,0,0,2,0.14200000000000002,1.9000000000000001,76.84,8,810,0 +2003,10,5,0,30,0,0,1,0.14200000000000002,2.3000000000000003,80.57000000000001,7,810,0 +2003,10,5,1,30,0,0,1,0.14200000000000002,2.7,78.66,7,810,0 +2003,10,5,2,30,0,0,1,0.14200000000000002,2.9000000000000004,77.65,7,810,0 +2003,10,5,3,30,0,0,1,0.14200000000000002,2.9000000000000004,78.64,7,810,0 +2003,10,5,4,30,0,0,2,0.14200000000000002,3,81.41,7,810,0 +2003,10,5,5,30,0,0,2,0.14200000000000002,3.2,84.14,7,810,0 +2003,10,5,6,30,27,321,2,0.14200000000000002,3.7,74.77,9,810,53 +2003,10,5,7,30,57,684,3,0.14200000000000002,3.7,58.79,13,810,242 +2003,10,5,8,30,69,840,1,0.14200000000000002,3.1,41.35,17,810,437 +2003,10,5,9,30,75,918,-2,0.14200000000000002,2.7,24.6,20,810,600 +2003,10,5,10,30,78,956,-4,0.14200000000000002,2.5,19.96,21,810,713 +2003,10,5,11,30,261,575,-5,0.14200000000000002,2.5,17.900000000000002,22,810,668 +2003,10,5,12,30,79,968,-5,0.14200000000000002,2.5,16.55,23,800,754 +2003,10,5,13,30,247,472,-5,0.14200000000000002,2.7,16.42,23,800,548 +2003,10,5,14,30,162,577,-5,0.14200000000000002,2.8000000000000003,17.46,22,800,468 +2003,10,5,15,30,49,0,-5,0.14200000000000002,2.5,18.89,21,800,49 +2003,10,5,16,30,47,552,-3,0.14200000000000002,1.6,27.69,17,810,160 +2003,10,5,17,30,0,0,0,0.14200000000000002,1.1,45.15,14,810,0 +2003,10,5,18,30,0,0,0,0.14200000000000002,0.7000000000000001,41.410000000000004,14,810,0 +2003,10,5,19,30,0,0,-1,0.14200000000000002,0.5,40.93,13,810,0 +2003,10,5,20,30,0,0,-1,0.14200000000000002,0.8,46.52,11,810,0 +2003,10,5,21,30,0,0,-2,0.14200000000000002,1.2000000000000002,48.33,10,810,0 +2003,10,5,22,30,0,0,-2,0.14200000000000002,1.5,53.11,8,810,0 +2003,10,5,23,30,0,0,-3,0.14200000000000002,1.6,50.85,8,810,0 +2003,10,6,0,30,0,0,-3,0.14200000000000002,1.6,52.33,7,810,0 +2003,10,6,1,30,0,0,-4,0.14200000000000002,1.7000000000000002,50.32,7,810,0 +2003,10,6,2,30,0,0,-5,0.14200000000000002,1.7000000000000002,48.35,7,810,0 +2003,10,6,3,30,0,0,-5,0.14200000000000002,1.7000000000000002,46.82,7,810,0 +2003,10,6,4,30,0,0,-5,0.14200000000000002,1.6,49.01,7,810,0 +2003,10,6,5,30,0,0,-6,0.14200000000000002,1.6,48.11,7,810,0 +2003,10,6,6,30,23,397,-5,0.14200000000000002,1.7000000000000002,39.65,9,810,53 +2003,10,6,7,30,48,746,-3,0.14200000000000002,2,33.75,14,810,247 +2003,10,6,8,30,61,877,-6,0.14200000000000002,2,22.91,17,810,442 +2003,10,6,9,30,69,941,-6,0.14200000000000002,1.9000000000000001,17.87,20,810,604 +2003,10,6,10,30,318,276,-6,0.14200000000000002,2.1,16.63,21,810,500 +2003,10,6,11,30,352,122,-6,0.14200000000000002,2.3000000000000003,15.59,22,810,438 +2003,10,6,12,30,336,87,-6,0.14200000000000002,2.5,14.66,23,810,397 +2003,10,6,13,30,227,536,-6,0.14200000000000002,2.7,14.66,23,810,565 +2003,10,6,14,30,209,409,-6,0.14200000000000002,2.9000000000000004,15.65,22,800,424 +2003,10,6,15,30,149,310,-6,0.14200000000000002,2.8000000000000003,16.86,21,800,266 +2003,10,6,16,30,54,454,-4,0.14200000000000002,2,23.54,18,800,145 +2003,10,6,17,30,0,0,-1,0.14200000000000002,1.3,40.07,14,810,0 +2003,10,6,18,30,0,0,-1,0.14200000000000002,1.3,43.15,12,810,0 +2003,10,6,19,30,0,0,-2,0.14200000000000002,1.3,44.17,11,810,0 +2003,10,6,20,30,0,0,-3,0.14200000000000002,1.3,42.54,11,810,0 +2003,10,6,21,30,0,0,-3,0.14200000000000002,1.5,43.93,10,810,0 +2003,10,6,22,30,0,0,-4,0.14200000000000002,1.6,42.410000000000004,10,810,0 +2003,10,6,23,30,0,0,-4,0.14200000000000002,1.6,44.13,9,810,0 +2003,10,7,0,30,0,0,-4,0.14200000000000002,1.5,43.17,9,800,0 +2003,10,7,1,30,0,0,-4,0.14200000000000002,1.5,42.45,9,800,0 +2003,10,7,2,30,0,0,-4,0.14200000000000002,1.5,45.24,8,800,0 +2003,10,7,3,30,0,0,-4,0.14200000000000002,1.5,48.52,7,800,0 +2003,10,7,4,30,0,0,-4,0.14200000000000002,1.6,48.59,7,800,0 +2003,10,7,5,30,0,0,-4,0.14200000000000002,1.8,48.800000000000004,7,800,0 +2003,10,7,6,30,25,139,-4,0.14200000000000002,2.4000000000000004,44.27,9,800,36 +2003,10,7,7,30,100,280,-2,0.14200000000000002,3,36.51,14,800,173 +2003,10,7,8,30,60,843,-2,0.14200000000000002,2.5,27.23,18,800,423 +2003,10,7,9,30,251,321,-3,0.14200000000000002,1.5,22.64,20,800,433 +2003,10,7,10,30,322,233,-3,0.14200000000000002,1,21.39,21,800,475 +2003,10,7,11,30,352,212,-3,0.14200000000000002,0.6000000000000001,20.43,22,800,500 +2003,10,7,12,30,254,566,-3,0.14200000000000002,0.4,19.47,23,800,643 +2003,10,7,13,30,188,641,-3,0.14200000000000002,0.6000000000000001,19.68,23,800,590 +2003,10,7,14,30,231,72,-2,0.14200000000000002,1.1,19.91,23,800,269 +2003,10,7,15,30,95,595,-2,0.14200000000000002,1.2000000000000002,21.52,22,800,317 +2003,10,7,16,30,56,418,0,0.14200000000000002,0.9,31.38,19,800,137 +2003,10,7,17,30,0,0,1,0.14200000000000002,0.8,43.49,16,800,0 +2003,10,7,18,30,0,0,0,0.14200000000000002,0.5,41.2,15,800,0 +2003,10,7,19,30,0,0,0,0.14200000000000002,0.5,46.69,13,800,0 +2003,10,7,20,30,0,0,0,0.14200000000000002,1,53.72,11,800,0 +2003,10,7,21,30,0,0,0,0.14200000000000002,1.5,56.74,11,800,0 +2003,10,7,22,30,0,0,0,0.14200000000000002,2,55.49,10,800,0 +2003,10,7,23,30,0,0,0,0.14200000000000002,2.4000000000000004,54.63,10,800,0 +2003,10,8,0,30,0,0,0,0.14200000000000002,2.9000000000000004,53.88,10,800,0 +2003,10,8,1,30,0,0,0,0.14200000000000002,3,56.83,9,800,0 +2003,10,8,2,30,0,0,-1,0.14200000000000002,2.6,56.15,9,800,0 +2003,10,8,3,30,0,0,-1,0.14200000000000002,2.3000000000000003,55.86,9,800,0 +2003,10,8,4,30,0,0,-1,0.14200000000000002,2.2,55.620000000000005,9,800,0 +2003,10,8,5,30,0,0,-1,0.14200000000000002,2,55.31,9,800,0 +2003,10,8,6,30,24,188,-1,0.14200000000000002,2.3000000000000003,48.230000000000004,11,800,37 +2003,10,8,7,30,50,700,0,0.14200000000000002,2.9000000000000004,38.31,15,800,232 +2003,10,8,8,30,65,841,-1,0.14200000000000002,3,29,19,800,423 +2003,10,8,9,30,236,380,-1,0.14200000000000002,2.5,25.42,21,800,450 +2003,10,8,10,30,212,621,-1,0.14200000000000002,2,24.09,22,800,617 +2003,10,8,11,30,308,47,-1,0.14200000000000002,1.5,22.52,23,800,341 +2003,10,8,12,30,336,202,-1,0.14200000000000002,1.1,21.01,24,800,474 +2003,10,8,13,30,213,569,-1,0.14200000000000002,0.9,20.87,24,800,567 +2003,10,8,14,30,152,588,-1,0.14200000000000002,0.8,22.28,23,800,454 +2003,10,8,15,30,115,489,-1,0.14200000000000002,0.6000000000000001,23.97,22,800,295 +2003,10,8,16,30,58,389,0,0.14200000000000002,0.5,31.580000000000002,20,800,132 +2003,10,8,17,30,0,0,2,0.14200000000000002,0.5,42.78,17,800,0 +2003,10,8,18,30,0,0,1,0.14200000000000002,0.5,44.7,15,800,0 +2003,10,8,19,30,0,0,1,0.14200000000000002,0.7000000000000001,50.77,13,800,0 +2003,10,8,20,30,0,0,1,0.14200000000000002,0.9,57.49,11,800,0 +2003,10,8,21,30,0,0,0,0.14200000000000002,1.2000000000000002,61.04,10,800,0 +2003,10,8,22,30,0,0,0,0.14200000000000002,1.5,60.800000000000004,10,800,0 +2003,10,8,23,30,0,0,0,0.14200000000000002,1.6,60.78,10,800,0 +2003,10,9,0,30,0,0,0,0.14200000000000002,1.8,60.99,10,800,0 +2003,10,9,1,30,0,0,1,0.14200000000000002,2,65.67,10,800,0 +2003,10,9,2,30,0,0,1,0.14200000000000002,2.2,65.8,9,800,0 +2003,10,9,3,30,0,0,1,0.14200000000000002,2.4000000000000004,65.91,9,800,0 +2003,10,9,4,30,0,0,1,0.14200000000000002,2.7,66.46000000000001,9,800,0 +2003,10,9,5,30,0,0,1,0.14200000000000002,2.9000000000000004,67.37,9,800,0 +2003,10,9,6,30,20,379,1,0.14200000000000002,3.4000000000000004,56.04,12,800,45 +2003,10,9,7,30,45,740,2,0.14200000000000002,3.6,44.33,16,810,234 +2003,10,9,8,30,57,876,1,0.14200000000000002,2.7,32.53,20,810,427 +2003,10,9,9,30,64,941,-1,0.14200000000000002,1.6,22.39,23,800,587 +2003,10,9,10,30,68,973,-2,0.14200000000000002,1,18.92,24,800,697 +2003,10,9,11,30,69,987,-3,0.14200000000000002,1.2000000000000002,16.84,25,800,748 +2003,10,9,12,30,69,982,-3,0.14200000000000002,1.7000000000000002,15.43,26,800,734 +2003,10,9,13,30,66,960,-3,0.14200000000000002,2.1,14.49,27,800,658 +2003,10,9,14,30,59,921,-3,0.14200000000000002,2.2,15.5,26,800,527 +2003,10,9,15,30,51,837,-3,0.14200000000000002,1.8,16.57,25,800,353 +2003,10,9,16,30,36,648,0,0.14200000000000002,1.4000000000000001,26.87,21,800,155 +2003,10,9,17,30,0,0,1,0.14200000000000002,1.3,40.58,17,800,0 +2003,10,9,18,30,0,0,0,0.14200000000000002,1.2000000000000002,38.78,16,800,0 +2003,10,9,19,30,0,0,0,0.14200000000000002,1.2000000000000002,43.28,14,800,0 +2003,10,9,20,30,0,0,0,0.14200000000000002,1.7000000000000002,45,13,800,0 +2003,10,9,21,30,0,0,-1,0.14200000000000002,2.4000000000000004,42.92,13,800,0 +2003,10,9,22,30,0,0,-1,0.14200000000000002,3,41.61,13,800,0 +2003,10,9,23,30,0,0,-1,0.14200000000000002,3.4000000000000004,41.59,13,800,0 +2003,10,10,0,30,0,0,-1,0.14200000000000002,3.6,42.21,13,800,0 +2003,10,10,1,30,0,0,-1,0.14200000000000002,3.4000000000000004,46.27,12,800,0 +2003,10,10,2,30,0,0,0,0.14200000000000002,3.1,51.65,11,800,0 +2003,10,10,3,30,0,0,0,0.14200000000000002,2.9000000000000004,52.82,11,800,0 +2003,10,10,4,30,0,0,0,0.14200000000000002,2.8000000000000003,52.99,11,800,0 +2003,10,10,5,30,0,0,0,0.14200000000000002,2.7,52.18,11,800,0 +2003,10,10,6,30,21,220,0,0.14200000000000002,2.8000000000000003,48.300000000000004,12,800,35 +2003,10,10,7,30,77,427,0,0.14200000000000002,2.9000000000000004,37.980000000000004,16,800,185 +2003,10,10,8,30,64,808,0,0.14200000000000002,2.6,30.95,20,800,403 +2003,10,10,9,30,69,924,0,0.14200000000000002,2,25.23,23,800,579 +2003,10,10,10,30,245,495,0,0.14200000000000002,1.3,21.63,24,800,563 +2003,10,10,11,30,214,665,0,0.14200000000000002,0.7000000000000001,20.32,25,800,669 +2003,10,10,12,30,246,568,0,0.14200000000000002,0.7000000000000001,19.27,26,800,628 +2003,10,10,13,30,194,619,0,0.14200000000000002,1.2000000000000002,20.92,25,800,572 +2003,10,10,14,30,223,287,0,0.14200000000000002,1.7000000000000002,23.17,24,800,367 +2003,10,10,15,30,93,583,0,0.14200000000000002,1.8,27.86,22,800,300 +2003,10,10,16,30,51,407,3,0.14200000000000002,1.4000000000000001,40.63,19,800,124 +2003,10,10,17,30,0,0,5,0.14200000000000002,1,51.47,17,800,0 +2003,10,10,18,30,0,0,5,0.14200000000000002,1.2000000000000002,59.34,15,800,0 +2003,10,10,19,30,0,0,5,0.14200000000000002,2.3000000000000003,63.33,14,800,0 +2003,10,10,20,30,0,0,5,0.14200000000000002,3.4000000000000004,72.56,12,800,0 +2003,10,10,21,30,0,0,5,0.14200000000000002,3.4000000000000004,81.57000000000001,10,800,0 +2003,10,10,22,30,0,0,3,0.14200000000000002,2.9000000000000004,84.75,8,800,0 +2003,10,10,23,30,0,0,0,0.14200000000000002,3,79.17,6,800,0 +2003,10,11,0,30,0,0,-3,0.14200000000000002,3.6,62.85,5,800,0 +2003,10,11,1,30,0,0,-7,0.14200000000000002,3.5,52.79,3,800,0 +2003,10,11,2,30,0,0,-9,0.14200000000000002,2.9000000000000004,49.35,2,800,0 +2003,10,11,3,30,0,0,-9,0.14200000000000002,2.3000000000000003,47.58,1,800,0 +2003,10,11,4,30,0,0,-9,0.14200000000000002,1.6,47.88,0,800,0 +2003,10,11,5,30,0,0,-9,0.14200000000000002,1.1,52.34,0,810,0 +2003,10,11,6,30,20,395,-9,0.14200000000000002,1.2000000000000002,48.75,1,810,44 +2003,10,11,7,30,45,791,-10,0.14200000000000002,1.9000000000000001,39.910000000000004,4,810,241 +2003,10,11,8,30,55,931,-12,0.14200000000000002,2.1,26.73,7,810,441 +2003,10,11,9,30,60,996,-14,0.14200000000000002,2.1,18.34,10,810,605 +2003,10,11,10,30,62,1026,-15,0.14200000000000002,2.3000000000000003,14.44,12,810,716 +2003,10,11,11,30,64,1033,-16,0.14200000000000002,2.6,12.040000000000001,14,810,765 +2003,10,11,12,30,64,1024,-16,0.14200000000000002,3,11.08,15,810,748 +2003,10,11,13,30,62,1000,-16,0.14200000000000002,3.3000000000000003,10.52,16,810,668 +2003,10,11,14,30,53,963,-16,0.14200000000000002,3.4000000000000004,10.94,16,810,533 +2003,10,11,15,30,45,881,-15,0.14200000000000002,3.3000000000000003,12.25,15,810,354 +2003,10,11,16,30,32,695,-14,0.14200000000000002,2.5,17.59,11,810,152 +2003,10,11,17,30,0,0,-9,0.14200000000000002,1.8,30.73,8,810,0 +2003,10,11,18,30,0,0,-9,0.14200000000000002,1.6,35.93,6,810,0 +2003,10,11,19,30,0,0,-9,0.14200000000000002,1.5,38.95,5,810,0 +2003,10,11,20,30,0,0,-9,0.14200000000000002,1.2000000000000002,38.65,5,810,0 +2003,10,11,21,30,0,0,-10,0.14200000000000002,1.1,37.410000000000004,5,810,0 +2003,10,11,22,30,0,0,-10,0.14200000000000002,1.4000000000000001,35.79,5,810,0 +2003,10,11,23,30,0,0,-11,0.14200000000000002,2,34.09,5,810,0 +2003,10,12,0,30,0,0,-11,0.14200000000000002,2.4000000000000004,32.71,5,810,0 +2003,10,12,1,30,0,0,-12,0.14200000000000002,2.5,32.27,5,810,0 +2003,10,12,2,30,0,0,-11,0.14200000000000002,2.4000000000000004,33.15,5,810,0 +2003,10,12,3,30,0,0,-11,0.14200000000000002,2.4000000000000004,33.94,5,810,0 +2003,10,12,4,30,0,0,-11,0.14200000000000002,2.3000000000000003,33.86,5,810,0 +2003,10,12,5,30,0,0,-11,0.14200000000000002,2.3000000000000003,33.01,5,810,0 +2003,10,12,6,30,19,303,-11,0.14200000000000002,2.5,28.72,7,810,36 +2003,10,12,7,30,54,593,-9,0.14200000000000002,2.6,25.1,11,810,200 +2003,10,12,8,30,64,802,-10,0.14200000000000002,2.8000000000000003,17.12,16,810,393 +2003,10,12,9,30,117,754,-10,0.14200000000000002,2.9000000000000004,13.72,19,800,527 +2003,10,12,10,30,70,975,-10,0.14200000000000002,2.7,12.36,21,800,687 +2003,10,12,11,30,70,992,-9,0.14200000000000002,2.5,12.32,22,800,738 +2003,10,12,12,30,70,987,-9,0.14200000000000002,2.4000000000000004,12.34,23,800,724 +2003,10,12,13,30,68,964,-8,0.14200000000000002,2.3000000000000003,12.98,23,800,647 +2003,10,12,14,30,60,928,-8,0.14200000000000002,2.1,13.35,23,800,517 +2003,10,12,15,30,50,844,-7,0.14200000000000002,1.6,15.42,21,800,341 +2003,10,12,16,30,35,647,-4,0.14200000000000002,0.8,26.63,17,800,143 +2003,10,12,17,30,0,0,-3,0.14200000000000002,0.2,34.78,13,800,0 +2003,10,12,18,30,0,0,-4,0.14200000000000002,0.1,38.03,11,800,0 +2003,10,12,19,30,0,0,-4,0.14200000000000002,0.5,39.69,10,800,0 +2003,10,12,20,30,0,0,-5,0.14200000000000002,1.3,38.050000000000004,10,800,0 +2003,10,12,21,30,0,0,-5,0.14200000000000002,1.9000000000000001,39.77,9,800,0 +2003,10,12,22,30,0,0,-5,0.14200000000000002,2.4000000000000004,39.93,9,800,0 +2003,10,12,23,30,0,0,-5,0.14200000000000002,2.7,41.87,8,800,0 +2003,10,13,0,30,0,0,-5,0.14200000000000002,2.3000000000000003,45.19,7,800,0 +2003,10,13,1,30,0,0,-5,0.14200000000000002,1.6,50.71,6,800,0 +2003,10,13,2,30,0,0,-4,0.14200000000000002,1.2000000000000002,58.45,5,800,0 +2003,10,13,3,30,0,0,-3,0.14200000000000002,1,66.65,4,800,0 +2003,10,13,4,30,0,0,-3,0.14200000000000002,1,68.47,4,800,0 +2003,10,13,5,30,0,0,-3,0.14200000000000002,0.9,67.9,4,800,0 +2003,10,13,6,30,19,44,-3,0.14200000000000002,1,63.74,5,800,21 +2003,10,13,7,30,94,169,-2,0.14200000000000002,1.3,56.99,7,800,135 +2003,10,13,8,30,176,89,-4,0.14200000000000002,1.8,44.57,10,800,212 +2003,10,13,9,30,72,924,-8,0.14200000000000002,2.7,27.05,12,800,570 +2003,10,13,10,30,77,981,-11,0.14200000000000002,3.7,19.57,13,800,693 +2003,10,13,11,30,218,637,-13,0.14200000000000002,4.6000000000000005,15.34,14,800,644 +2003,10,13,12,30,165,750,-14,0.14200000000000002,5.4,14.08,14,800,659 +2003,10,13,13,30,161,691,-14,0.14200000000000002,5.800000000000001,14.950000000000001,13,800,572 +2003,10,13,14,30,177,471,-14,0.14200000000000002,6,16.41,12,800,406 +2003,10,13,15,30,49,864,-13,0.14200000000000002,5.7,18.240000000000002,11,800,343 +2003,10,13,16,30,34,655,-13,0.14200000000000002,4.6000000000000005,24.01,8,810,141 +2003,10,13,17,30,0,0,-11,0.14200000000000002,3,31.27,6,810,0 +2003,10,13,18,30,0,0,-10,0.14200000000000002,1.9000000000000001,40.54,4,810,0 +2003,10,13,19,30,0,0,-9,0.14200000000000002,1.1,45.660000000000004,3,810,0 +2003,10,13,20,30,0,0,-9,0.14200000000000002,0.6000000000000001,49.870000000000005,2,810,0 +2003,10,13,21,30,0,0,-9,0.14200000000000002,0.5,48.74,1,810,0 +2003,10,13,22,30,0,0,-10,0.14200000000000002,0.8,46.84,1,810,0 +2003,10,13,23,30,0,0,-10,0.14200000000000002,1.1,45.03,0,810,0 +2003,10,14,0,30,0,0,-10,0.14200000000000002,1.4000000000000001,46.74,0,810,0 +2003,10,14,1,30,0,0,-11,0.14200000000000002,1.5,45.21,0,810,0 +2003,10,14,2,30,0,0,-11,0.14200000000000002,1.5,43.86,0,810,0 +2003,10,14,3,30,0,0,-12,0.14200000000000002,1.4000000000000001,46.09,0,810,0 +2003,10,14,4,30,0,0,-12,0.14200000000000002,1.2000000000000002,45.47,0,810,0 +2003,10,14,5,30,0,0,-12,0.14200000000000002,1.1,45.29,0,810,0 +2003,10,14,6,30,18,311,-12,0.14200000000000002,1,38.7,1,810,33 +2003,10,14,7,30,46,736,-11,0.14200000000000002,1.2000000000000002,32.81,5,810,221 +2003,10,14,8,30,60,880,-13,0.14200000000000002,1.5,20.82,9,810,415 +2003,10,14,9,30,68,951,-16,0.14200000000000002,1.8,14.36,12,810,576 +2003,10,14,10,30,73,988,-16,0.14200000000000002,1.6,11.73,14,810,689 +2003,10,14,11,30,73,1008,-16,0.14200000000000002,1.2000000000000002,10.25,16,800,743 +2003,10,14,12,30,232,569,-16,0.14200000000000002,0.8,9.84,17,800,604 +2003,10,14,13,30,69,986,-16,0.14200000000000002,0.7000000000000001,10.1,17,800,652 +2003,10,14,14,30,62,945,-16,0.14200000000000002,0.5,10.290000000000001,17,800,517 +2003,10,14,15,30,53,848,-15,0.14200000000000002,0.1,11.17,16,800,337 +2003,10,14,16,30,36,622,-13,0.14200000000000002,0.1,17.04,12,800,135 +2003,10,14,17,30,0,0,-11,0.14200000000000002,0.30000000000000004,26.25,9,800,0 +2003,10,14,18,30,0,0,-11,0.14200000000000002,0.7000000000000001,30.05,7,800,0 +2003,10,14,19,30,0,0,-11,0.14200000000000002,1.3,29.22,7,800,0 +2003,10,14,20,30,0,0,-11,0.14200000000000002,1.9000000000000001,30.37,6,800,0 +2003,10,14,21,30,0,0,-11,0.14200000000000002,2.1,32.7,5,800,0 +2003,10,14,22,30,0,0,-11,0.14200000000000002,2.2,32.85,5,800,0 +2003,10,14,23,30,0,0,-11,0.14200000000000002,2.1,35.58,4,800,0 +2003,10,15,0,30,0,0,-11,0.14200000000000002,1.9000000000000001,38.800000000000004,3,800,0 +2003,10,15,1,30,0,0,-10,0.14200000000000002,1.7000000000000002,40.480000000000004,3,800,0 +2003,10,15,2,30,0,0,-9,0.14200000000000002,1.5,44.15,3,800,0 +2003,10,15,3,30,0,0,-9,0.14200000000000002,1.2000000000000002,46.730000000000004,3,800,0 +2003,10,15,4,30,0,0,-8,0.14200000000000002,0.8,48.04,3,800,0 +2003,10,15,5,30,0,0,-8,0.14200000000000002,0.5,47.35,3,800,0 +2003,10,15,6,30,24,0,-8,0.14200000000000002,0.4,44.1,4,800,24 +2003,10,15,7,30,69,437,-7,0.14200000000000002,0.6000000000000001,37.5,8,800,171 +2003,10,15,8,30,64,856,-8,0.14200000000000002,0.9,27.34,12,800,406 +2003,10,15,9,30,73,929,-8,0.14200000000000002,1.4000000000000001,20.88,15,800,565 +2003,10,15,10,30,76,968,-9,0.14200000000000002,1.8,17.44,17,800,675 +2003,10,15,11,30,74,990,-10,0.14200000000000002,1.7000000000000002,15.4,18,800,727 +2003,10,15,12,30,105,901,-11,0.14200000000000002,1.3,13.64,19,800,689 +2003,10,15,13,30,201,546,-11,0.14200000000000002,0.7000000000000001,12.32,20,800,521 +2003,10,15,14,30,156,526,-11,0.14200000000000002,0.4,12.96,19,800,407 +2003,10,15,15,30,20,0,-11,0.14200000000000002,0.8,14.08,18,800,20 +2003,10,15,16,30,3,0,-8,0.14200000000000002,1.3,21.57,15,800,3 +2003,10,15,17,30,0,0,-8,0.14400000000000002,1.3,28.26,11,800,0 +2003,10,15,18,30,0,0,-7,0.14400000000000002,1.2000000000000002,36.12,8,800,0 +2003,10,15,19,30,0,0,-7,0.14400000000000002,1.2000000000000002,42.25,6,800,0 +2003,10,15,20,30,0,0,-7,0.14400000000000002,1.6,41.49,6,800,0 +2003,10,15,21,30,0,0,-7,0.14400000000000002,1.8,41.36,6,800,0 +2003,10,15,22,30,0,0,-8,0.14400000000000002,2.1,44.08,5,800,0 +2003,10,15,23,30,0,0,-8,0.14400000000000002,2.7,42.59,5,800,0 +2003,10,16,0,30,0,0,-9,0.14400000000000002,3.1,40.78,5,800,0 +2003,10,16,1,30,0,0,-9,0.14400000000000002,3.2,40.62,5,800,0 +2003,10,16,2,30,0,0,-8,0.14400000000000002,3.2,43.730000000000004,5,800,0 +2003,10,16,3,30,0,0,-7,0.14400000000000002,3.5,44.36,6,800,0 +2003,10,16,4,30,0,0,-6,0.14400000000000002,3,46.89,6,800,0 +2003,10,16,5,30,0,0,-6,0.14400000000000002,2,50.74,5,800,0 +2003,10,16,6,30,17,0,-6,0.14400000000000002,1.6,46.36,6,800,17 +2003,10,16,7,30,88,196,-5,0.14400000000000002,1.9000000000000001,37.24,10,800,133 +2003,10,16,8,30,121,530,-6,0.14400000000000002,3.2,29.21,13,810,330 +2003,10,16,9,30,80,863,-6,0.14400000000000002,4.4,24.48,16,810,534 +2003,10,16,10,30,122,817,-4,0.14400000000000002,4.5,25.490000000000002,17,810,624 +2003,10,16,11,30,70,968,-3,0.14400000000000002,4.2,25.82,18,810,704 +2003,10,16,12,30,71,962,-2,0.14400000000000002,3.7,25.36,19,810,689 +2003,10,16,13,30,187,585,-2,0.14400000000000002,3.3000000000000003,24.560000000000002,20,810,527 +2003,10,16,14,30,59,895,-2,0.14400000000000002,2.8000000000000003,26.650000000000002,19,810,482 +2003,10,16,15,30,72,639,-2,0.14400000000000002,2.3000000000000003,28.57,18,810,279 +2003,10,16,16,30,35,509,-1,0.14400000000000002,1.8,35.59,15,810,110 +2003,10,16,17,30,0,0,-1,0.14400000000000002,1.5,47.160000000000004,11,810,0 +2003,10,16,18,30,0,0,-2,0.14400000000000002,1.1,51.370000000000005,9,810,0 +2003,10,16,19,30,0,0,-2,0.14400000000000002,1,55.53,8,810,0 +2003,10,16,20,30,0,0,-1,0.14400000000000002,1.2000000000000002,57,8,810,0 +2003,10,16,21,30,0,0,-1,0.14400000000000002,1.3,62.33,7,810,0 +2003,10,16,22,30,0,0,-1,0.14400000000000002,1.4000000000000001,63.56,7,810,0 +2003,10,16,23,30,0,0,-1,0.14400000000000002,1.8,64.34,7,810,0 +2003,10,17,0,30,0,0,-1,0.14400000000000002,2.4000000000000004,64.66,7,810,0 +2003,10,17,1,30,0,0,-1,0.14400000000000002,2.8000000000000003,64.99,8,810,0 +2003,10,17,2,30,0,0,0,0.14400000000000002,3.1,65.81,8,810,0 +2003,10,17,3,30,0,0,0,0.14400000000000002,3.3000000000000003,62.38,8,810,0 +2003,10,17,4,30,0,0,0,0.14400000000000002,3.6,63.050000000000004,8,810,0 +2003,10,17,5,30,0,0,0,0.14400000000000002,3.7,62.86,8,810,0 +2003,10,17,6,30,18,0,0,0.14400000000000002,3.9000000000000004,54.18,10,810,18 +2003,10,17,7,30,78,309,0,0.14400000000000002,4,41.64,14,810,148 +2003,10,17,8,30,139,424,0,0.14400000000000002,3.8000000000000003,31.91,18,810,305 +2003,10,17,9,30,57,939,-1,0.14400000000000002,3.2,25.57,21,810,547 +2003,10,17,10,30,60,972,-1,0.14400000000000002,2.3000000000000003,22.23,23,810,653 +2003,10,17,11,30,59,988,-1,0.14400000000000002,1.6,20.85,24,810,701 +2003,10,17,12,30,59,984,-1,0.14400000000000002,1.3,19.57,25,810,686 +2003,10,17,13,30,56,962,-1,0.14400000000000002,1.2000000000000002,18.38,26,810,610 +2003,10,17,14,30,50,921,-1,0.14400000000000002,0.9,19.43,25,810,480 +2003,10,17,15,30,42,832,-1,0.14400000000000002,0.5,20.71,24,810,308 +2003,10,17,16,30,28,619,1,0.14400000000000002,0.4,32.81,20,810,116 +2003,10,17,17,30,0,0,0,0.14400000000000002,0.5,40.06,16,810,0 +2003,10,17,18,30,0,0,0,0.14400000000000002,0.7000000000000001,43.68,14,810,0 +2003,10,17,19,30,0,0,0,0.14400000000000002,1.1,45.050000000000004,13,810,0 +2003,10,17,20,30,0,0,-1,0.14400000000000002,1.9000000000000001,46.21,13,810,0 +2003,10,17,21,30,0,0,-1,0.14400000000000002,2.7,44.54,12,810,0 +2003,10,17,22,30,0,0,-2,0.14400000000000002,3.3000000000000003,42.86,12,810,0 +2003,10,17,23,30,0,0,-2,0.14400000000000002,3.7,43.730000000000004,11,810,0 +2003,10,18,0,30,0,0,-3,0.14400000000000002,4,41.59,11,810,0 +2003,10,18,1,30,0,0,-3,0.14400000000000002,4.1000000000000005,43.02,10,810,0 +2003,10,18,2,30,0,0,-3,0.14400000000000002,4.1000000000000005,43.6,10,810,0 +2003,10,18,3,30,0,0,-3,0.14400000000000002,3.9000000000000004,46.410000000000004,9,810,0 +2003,10,18,4,30,0,0,-4,0.14400000000000002,3.5,44.82,9,810,0 +2003,10,18,5,30,0,0,-4,0.14400000000000002,3,42.44,9,810,0 +2003,10,18,6,30,14,286,-5,0.14400000000000002,3.1,35.54,11,810,24 +2003,10,18,7,30,41,733,-4,0.14400000000000002,3.5,28.59,15,810,204 +2003,10,18,8,30,53,885,-5,0.14400000000000002,2.7,21.650000000000002,19,810,396 +2003,10,18,9,30,61,956,-7,0.14400000000000002,1.3,14.18,23,810,555 +2003,10,18,10,30,65,991,-8,0.14400000000000002,0.9,11.44,25,810,665 +2003,10,18,11,30,63,1012,-8,0.14400000000000002,0.8,10.47,26,810,716 +2003,10,18,12,30,64,1007,-9,0.14400000000000002,0.6000000000000001,10.290000000000001,26,810,701 +2003,10,18,13,30,62,984,-9,0.14400000000000002,0.9,10.17,26,810,623 +2003,10,18,14,30,56,939,-9,0.14400000000000002,1.3,10.73,25,810,489 +2003,10,18,15,30,47,842,-8,0.14400000000000002,1.2000000000000002,12.51,23,810,312 +2003,10,18,16,30,31,614,-3,0.14400000000000002,1,25.28,19,810,115 +2003,10,18,17,30,0,0,-3,0.14400000000000002,0.9,29.43,16,810,0 +2003,10,18,18,30,0,0,-4,0.14400000000000002,0.5,28.96,15,810,0 +2003,10,18,19,30,0,0,-4,0.14400000000000002,0.30000000000000004,30.64,14,810,0 +2003,10,18,20,30,0,0,-5,0.14400000000000002,0.7000000000000001,33.83,12,810,0 +2003,10,18,21,30,0,0,-6,0.14400000000000002,1.2000000000000002,33.95,11,810,0 +2003,10,18,22,30,0,0,-6,0.14400000000000002,1.4000000000000001,35.75,10,810,0 +2003,10,18,23,30,0,0,-6,0.14400000000000002,1.5,37.56,9,810,0 +2003,10,19,0,30,0,0,-6,0.14400000000000002,1.6,36.61,9,810,0 +2003,10,19,1,30,0,0,-7,0.14400000000000002,1.8,35.86,9,810,0 +2003,10,19,2,30,0,0,-7,0.14400000000000002,2.1,37.96,9,810,0 +2003,10,19,3,30,0,0,-7,0.14400000000000002,2.3000000000000003,37.51,8,810,0 +2003,10,19,4,30,0,0,-7,0.14400000000000002,2.4000000000000004,36.88,8,810,0 +2003,10,19,5,30,0,0,-7,0.14400000000000002,2.6,36.51,8,810,0 +2003,10,19,6,30,13,292,-7,0.14400000000000002,3.3000000000000003,31.720000000000002,10,810,22 +2003,10,19,7,30,41,745,-7,0.14400000000000002,4,23.5,15,810,204 +2003,10,19,8,30,54,894,-7,0.14400000000000002,3.7,18.38,19,810,397 +2003,10,19,9,30,62,962,-7,0.14400000000000002,2.7,13.530000000000001,23,810,556 +2003,10,19,10,30,67,995,-9,0.14400000000000002,1.8,10.58,25,810,665 +2003,10,19,11,30,66,1012,-10,0.14400000000000002,1.4000000000000001,9.51,26,810,714 +2003,10,19,12,30,66,1006,-10,0.14400000000000002,1.2000000000000002,8.76,27,810,697 +2003,10,19,13,30,151,681,-10,0.14400000000000002,1.2000000000000002,8.700000000000001,27,810,536 +2003,10,19,14,30,137,562,-10,0.14400000000000002,1.1,9.28,26,810,394 +2003,10,19,15,30,65,654,-9,0.14400000000000002,0.7000000000000001,11.620000000000001,24,810,267 +2003,10,19,16,30,30,610,-3,0.14400000000000002,0.2,23.400000000000002,20,810,111 +2003,10,19,17,30,0,0,-4,0.14400000000000002,0.2,28.17,16,810,0 +2003,10,19,18,30,0,0,-4,0.14400000000000002,0.7000000000000001,30.53,14,810,0 +2003,10,19,19,30,0,0,-5,0.14400000000000002,1.6,31.51,13,810,0 +2003,10,19,20,30,0,0,-5,0.14400000000000002,2.5,34.05,12,810,0 +2003,10,19,21,30,0,0,-5,0.14400000000000002,3.1,33.51,12,810,0 +2003,10,19,22,30,0,0,-5,0.14400000000000002,3.5,33.09,12,810,0 +2003,10,19,23,30,0,0,-5,0.14400000000000002,3.8000000000000003,32.980000000000004,12,810,0 +2003,10,20,0,30,0,0,-5,0.14400000000000002,3.9000000000000004,35.26,11,810,0 +2003,10,20,1,30,0,0,-5,0.14400000000000002,3.9000000000000004,38.25,10,810,0 +2003,10,20,2,30,0,0,-4,0.14400000000000002,4,40.79,10,810,0 +2003,10,20,3,30,0,0,-3,0.14400000000000002,4,45.96,9,810,0 +2003,10,20,4,30,0,0,-3,0.14400000000000002,3.9000000000000004,46.69,9,810,0 +2003,10,20,5,30,0,0,-3,0.14400000000000002,3.6,48.86,8,810,0 +2003,10,20,6,30,13,198,-4,0.14400000000000002,3.4000000000000004,41.59,10,810,19 +2003,10,20,7,30,46,684,-3,0.14400000000000002,3.2,32.83,14,810,193 +2003,10,20,8,30,62,847,-3,0.14400000000000002,2.7,25.14,18,810,382 +2003,10,20,9,30,71,919,-5,0.14400000000000002,2.7,18.46,21,810,539 +2003,10,20,10,30,76,954,-6,0.14400000000000002,3.1,16.15,23,810,645 +2003,10,20,11,30,74,976,-6,0.14400000000000002,3.2,14.6,24,810,694 +2003,10,20,12,30,73,971,-7,0.14400000000000002,3.3000000000000003,13.44,24,810,678 +2003,10,20,13,30,69,947,-7,0.14400000000000002,3.4000000000000004,12.58,25,810,600 +2003,10,20,14,30,60,904,-7,0.14400000000000002,3.3000000000000003,13.48,24,810,469 +2003,10,20,15,30,50,802,-6,0.14400000000000002,2.7,15.66,22,810,294 +2003,10,20,16,30,31,557,-2,0.14400000000000002,1.7000000000000002,27.26,18,810,102 +2003,10,20,17,30,0,0,-3,0.14400000000000002,1.3,32.410000000000004,15,810,0 +2003,10,20,18,30,0,0,-3,0.14400000000000002,1.2000000000000002,35.46,13,810,0 +2003,10,20,19,30,0,0,-3,0.14400000000000002,1.2000000000000002,40.29,11,810,0 +2003,10,20,20,30,0,0,-4,0.14400000000000002,1.3,42.17,10,810,0 +2003,10,20,21,30,0,0,-4,0.14400000000000002,1.3,40.69,10,810,0 +2003,10,20,22,30,0,0,-5,0.14400000000000002,1.5,38.71,10,810,0 +2003,10,20,23,30,0,0,-5,0.14400000000000002,1.7000000000000002,37.13,10,810,0 +2003,10,21,0,30,0,0,-5,0.14400000000000002,1.9000000000000001,36.54,10,810,0 +2003,10,21,1,30,0,0,-5,0.14400000000000002,2,39.300000000000004,9,810,0 +2003,10,21,2,30,0,0,-5,0.14400000000000002,2.2,39.56,9,810,0 +2003,10,21,3,30,0,0,-5,0.14400000000000002,2.3000000000000003,39.63,9,810,0 +2003,10,21,4,30,0,0,-5,0.14400000000000002,2.4000000000000004,39.77,9,810,0 +2003,10,21,5,30,0,0,-5,0.14400000000000002,2.4000000000000004,39.95,9,810,0 +2003,10,21,6,30,11,243,-5,0.14400000000000002,2.6,32.72,12,810,17 +2003,10,21,7,30,39,698,-4,0.14400000000000002,3.3000000000000003,27.21,16,810,187 +2003,10,21,8,30,53,849,-4,0.14400000000000002,3.5,19.75,21,810,371 +2003,10,21,9,30,62,920,-4,0.14400000000000002,3.4000000000000004,16.990000000000002,24,810,526 +2003,10,21,10,30,67,954,-4,0.14400000000000002,3.4000000000000004,16.02,25,810,632 +2003,10,21,11,30,69,968,-4,0.14400000000000002,3.4000000000000004,14.870000000000001,26,810,679 +2003,10,21,12,30,198,615,-4,0.14400000000000002,3.6,13.870000000000001,27,810,579 +2003,10,21,13,30,132,716,-4,0.14400000000000002,3.8000000000000003,13.86,27,810,530 +2003,10,21,14,30,136,551,-4,0.14400000000000002,3.9000000000000004,14.75,26,810,383 +2003,10,21,15,30,82,533,-4,0.14400000000000002,3.3000000000000003,17.85,23,810,242 +2003,10,21,16,30,30,527,0,0.14400000000000002,2.1,27.650000000000002,20,810,95 +2003,10,21,17,30,0,0,-1,0.14400000000000002,1.3,32.89,17,810,0 +2003,10,21,18,30,0,0,-1,0.14400000000000002,1.1,37.03,15,810,0 +2003,10,21,19,30,0,0,-1,0.14400000000000002,1.2000000000000002,39.300000000000004,14,810,0 +2003,10,21,20,30,0,0,-1,0.14400000000000002,1.3,38.19,14,810,0 +2003,10,21,21,30,0,0,-2,0.14400000000000002,1.4000000000000001,39.65,13,810,0 +2003,10,21,22,30,0,0,-2,0.14400000000000002,1.4000000000000001,38.53,13,810,0 +2003,10,21,23,30,0,0,-2,0.14400000000000002,1.4000000000000001,40.06,12,810,0 +2003,10,22,0,30,0,0,-3,0.14400000000000002,1.3,39.21,12,810,0 +2003,10,22,1,30,0,0,-3,0.14400000000000002,1.2000000000000002,41.18,11,810,0 +2003,10,22,2,30,0,0,-3,0.14400000000000002,1.2000000000000002,43.58,10,810,0 +2003,10,22,3,30,0,0,-3,0.14400000000000002,1.5,43.37,10,810,0 +2003,10,22,4,30,0,0,-3,0.14400000000000002,1.8,46.08,9,810,0 +2003,10,22,5,30,0,0,-4,0.14400000000000002,1.9000000000000001,45.32,9,810,0 +2003,10,22,6,30,10,215,-4,0.14400000000000002,2.2,41.550000000000004,10,810,15 +2003,10,22,7,30,40,696,-3,0.14400000000000002,2.8000000000000003,32.44,15,810,184 +2003,10,22,8,30,54,859,-3,0.14400000000000002,2.9000000000000004,23.54,20,810,372 +2003,10,22,9,30,62,934,-4,0.14400000000000002,2.1,17.81,23,810,529 +2003,10,22,10,30,66,971,-5,0.14400000000000002,1.7000000000000002,14.790000000000001,25,810,636 +2003,10,22,11,30,69,983,-5,0.14400000000000002,1.7000000000000002,13.22,26,810,684 +2003,10,22,12,30,68,979,-6,0.14400000000000002,1.8,11.92,27,810,669 +2003,10,22,13,30,65,955,-6,0.14400000000000002,1.9000000000000001,11.6,27,810,591 +2003,10,22,14,30,56,913,-7,0.14400000000000002,1.8,12.120000000000001,26,810,459 +2003,10,22,15,30,46,809,-6,0.14400000000000002,1.3,14.030000000000001,24,810,285 +2003,10,22,16,30,28,555,0,0.14400000000000002,1.1,28.07,20,810,94 +2003,10,22,17,30,0,0,-2,0.14400000000000002,1.1,30.23,17,810,0 +2003,10,22,18,30,0,0,-3,0.14400000000000002,0.9,30.41,16,810,0 +2003,10,22,19,30,0,0,-3,0.14400000000000002,1,34.07,14,810,0 +2003,10,22,20,30,0,0,-3,0.14400000000000002,1.2000000000000002,37.6,12,810,0 +2003,10,22,21,30,0,0,-4,0.14400000000000002,1.6,38.25,11,810,0 +2003,10,22,22,30,0,0,-5,0.14400000000000002,2,36.42,11,810,0 +2003,10,22,23,30,0,0,-5,0.14400000000000002,2.4000000000000004,34.77,11,810,0 +2003,10,23,0,30,0,0,-6,0.14400000000000002,2.9000000000000004,33.47,11,810,0 +2003,10,23,1,30,0,0,-6,0.14400000000000002,3.3000000000000003,32.95,11,810,0 +2003,10,23,2,30,0,0,-6,0.14400000000000002,3.4000000000000004,33.95,11,810,0 +2003,10,23,3,30,0,0,-5,0.14400000000000002,3.5,37.85,10,810,0 +2003,10,23,4,30,0,0,-5,0.14400000000000002,3.6,38.75,10,810,0 +2003,10,23,5,30,0,0,-5,0.14400000000000002,3.7,38.2,10,810,0 +2003,10,23,6,30,10,222,-5,0.14400000000000002,4,34.53,11,810,14 +2003,10,23,7,30,40,717,-6,0.14400000000000002,4.2,26.150000000000002,15,810,185 +2003,10,23,8,30,53,878,-6,0.14400000000000002,4.3,19.81,19,810,375 +2003,10,23,9,30,160,542,-7,0.14400000000000002,4.1000000000000005,14.73,22,810,429 +2003,10,23,10,30,65,991,-8,0.14400000000000002,3.5,11.77,24,800,642 +2003,10,23,11,30,66,1006,-9,0.14400000000000002,3,10.64,25,800,691 +2003,10,23,12,30,67,1000,-9,0.14400000000000002,2.8000000000000003,9.77,26,800,675 +2003,10,23,13,30,64,974,-10,0.14400000000000002,2.6,9.620000000000001,26,800,596 +2003,10,23,14,30,58,923,-10,0.14400000000000002,2.4000000000000004,10.17,25,800,462 +2003,10,23,15,30,48,815,-8,0.14400000000000002,1.6,13.44,22,800,285 +2003,10,23,16,30,29,548,-4,0.14400000000000002,0.9,23.6,18,800,92 +2003,10,23,17,30,0,0,-5,0.146,0.8,27.13,15,800,0 +2003,10,23,18,30,0,0,-6,0.146,0.9,29.72,13,800,0 +2003,10,23,19,30,0,0,-6,0.146,1.4000000000000001,30.76,12,800,0 +2003,10,23,20,30,0,0,-6,0.146,2.1,32.78,11,800,0 +2003,10,23,21,30,0,0,-6,0.146,2.8000000000000003,32.47,11,800,0 +2003,10,23,22,30,0,0,-6,0.146,3.1,32.49,11,800,0 +2003,10,23,23,30,0,0,-5,0.146,2.4000000000000004,37.2,10,800,0 +2003,10,24,0,30,0,0,-4,0.146,1.4000000000000001,43.89,9,810,0 +2003,10,24,1,30,0,0,-3,0.146,1,49.76,8,810,0 +2003,10,24,2,30,0,0,-3,0.146,1,55.56,7,810,0 +2003,10,24,3,30,0,0,-2,0.146,1.2000000000000002,61.230000000000004,7,810,0 +2003,10,24,4,30,0,0,-2,0.146,1.3,65.67,6,810,0 +2003,10,24,5,30,0,0,-3,0.146,1,68.77,4,810,0 +2003,10,24,6,30,0,0,-3,0.146,0.8,61.910000000000004,5,810,0 +2003,10,24,7,30,45,660,-3,0.146,1.3,53.050000000000004,7,810,176 +2003,10,24,8,30,61,838,-4,0.146,1.4000000000000001,39.45,10,810,364 +2003,10,24,9,30,69,918,-7,0.146,1.1,29.39,12,810,520 +2003,10,24,10,30,73,955,-8,0.146,1.1,23.01,14,810,625 +2003,10,24,11,30,71,976,-9,0.146,1.3,20.490000000000002,15,800,673 +2003,10,24,12,30,70,973,-9,0.146,1.6,18.64,16,800,657 +2003,10,24,13,30,176,561,-9,0.146,1.7000000000000002,18.11,16,800,479 +2003,10,24,14,30,103,666,-10,0.146,1.4000000000000001,18.72,15,800,390 +2003,10,24,15,30,77,531,-10,0.146,1.2000000000000002,19.25,14,800,229 +2003,10,24,16,30,30,503,-10,0.146,1.5,23.7,11,800,85 +2003,10,24,17,30,0,0,-9,0.146,2,32.1,8,810,0 +2003,10,24,18,30,0,0,-9,0.146,2.1,38,6,810,0 +2003,10,24,19,30,0,0,-8,0.146,2.1,44.81,4,810,0 +2003,10,24,20,30,0,0,-8,0.146,2,52.300000000000004,2,810,0 +2003,10,24,21,30,0,0,-8,0.146,2.2,52.14,2,810,0 +2003,10,24,22,30,0,0,-8,0.146,2.7,51.910000000000004,1,810,0 +2003,10,24,23,30,0,0,-8,0.146,2.9000000000000004,55.46,0,810,0 +2003,10,25,0,30,0,0,-8,0.146,2.8000000000000003,60.5,0,810,0 +2003,10,25,1,30,0,0,-8,0.146,2.7,62.01,0,810,0 +2003,10,25,2,30,0,0,-7,0.146,2.2,64.46000000000001,0,810,0 +2003,10,25,3,30,0,0,-7,0.146,1.4000000000000001,71.60000000000001,0,810,0 +2003,10,25,4,30,0,0,-7,0.146,0.8,72.19,-1,810,0 +2003,10,25,5,30,0,0,-7,0.146,0.7000000000000001,71.18,-1,810,0 +2003,10,25,6,30,0,0,-7,0.146,1.3,64.02,0,810,0 +2003,10,25,7,30,38,628,-8,0.146,2.2,51.38,1,810,161 +2003,10,25,8,30,55,876,-12,0.146,3.1,36.84,3,810,369 +2003,10,25,9,30,62,958,-16,0.146,3.7,22.48,5,810,529 +2003,10,25,10,30,67,995,-18,0.146,3.7,18.09,6,810,637 +2003,10,25,11,30,68,1007,-18,0.146,3.7,16.65,7,810,684 +2003,10,25,12,30,68,999,-17,0.146,3.7,16.32,8,810,666 +2003,10,25,13,30,65,973,-16,0.146,3.8000000000000003,16.35,9,810,586 +2003,10,25,14,30,59,919,-16,0.146,3.6,18.85,8,810,452 +2003,10,25,15,30,48,811,-15,0.146,3.1,21.19,7,810,275 +2003,10,25,16,30,27,537,-14,0.146,1.9000000000000001,27.63,4,810,84 +2003,10,25,17,30,0,0,-12,0.146,1.1,37.65,1,810,0 +2003,10,25,18,30,0,0,-12,0.146,1,38.160000000000004,0,810,0 +2003,10,25,19,30,0,0,-12,0.146,0.7000000000000001,41.660000000000004,0,810,0 +2003,10,25,20,30,0,0,-12,0.146,0.4,41.69,0,810,0 +2003,10,25,21,30,0,0,-12,0.146,0.5,41.37,0,810,0 +2003,10,25,22,30,0,0,-12,0.146,0.8,43.68,0,810,0 +2003,10,25,23,30,0,0,-13,0.146,1,42.35,0,810,0 +2003,10,26,0,30,0,0,-13,0.146,1.2000000000000002,40.77,0,810,0 +2003,10,26,1,30,0,0,-13,0.146,1.3,36.69,0,810,0 +2003,10,26,2,30,0,0,-14,0.146,1.4000000000000001,36.37,0,810,0 +2003,10,26,3,30,0,0,-14,0.146,1.5,33.04,0,810,0 +2003,10,26,4,30,0,0,-14,0.146,1.8,32.78,1,810,0 +2003,10,26,5,30,0,0,-14,0.146,2.3000000000000003,32.3,1,810,0 +2003,10,26,6,30,0,0,-14,0.146,3.1,30.19,3,810,0 +2003,10,26,7,30,31,0,-14,0.146,4,26.52,5,810,31 +2003,10,26,8,30,147,239,-13,0.146,4.5,22.5,8,810,231 +2003,10,26,9,30,159,8,-9,0.146,4.6000000000000005,26.02,11,810,163 +2003,10,26,10,30,271,233,-4,0.146,4.800000000000001,34.44,12,810,403 +2003,10,26,11,30,264,390,-2,0.146,5,37.61,13,810,501 +2003,10,26,12,30,290,185,-1,0.146,5,38.04,14,810,401 +2003,10,26,13,30,232,333,-1,0.146,4.9,37.63,15,810,410 +2003,10,26,14,30,179,60,0,0.146,4.6000000000000005,41.56,14,810,205 +2003,10,26,15,30,103,287,0,0.146,3.9000000000000004,45.81,13,810,183 +2003,10,26,16,30,28,0,0,0.146,2.6,54.65,11,810,28 +2003,10,26,17,30,0,0,0,0.146,2,69.06,8,810,0 +2003,10,26,18,30,0,0,0,0.146,2.3000000000000003,74.85000000000001,7,810,0 +2003,10,26,19,30,0,0,0,0.146,3,74.61,7,810,0 +2003,10,26,20,30,0,0,0,0.146,3.4000000000000004,74.16,7,810,0 +2003,10,26,21,30,0,0,0,0.146,3.6,79.13,6,810,0 +2003,10,26,22,30,0,0,0,0.146,3.9000000000000004,78.14,6,810,0 +2003,10,26,23,30,0,0,0,0.146,4.3,76.45,6,810,0 +2003,10,27,0,30,0,0,0,0.146,5,74.04,6,810,0 +2003,10,27,1,30,0,0,0,0.146,5.4,71.09,7,810,0 +2003,10,27,2,30,0,0,-1,0.146,5.1000000000000005,63.690000000000005,7,810,0 +2003,10,27,3,30,0,0,-1,0.146,4.800000000000001,61.76,7,810,0 +2003,10,27,4,30,0,0,-2,0.146,4.800000000000001,60.51,7,810,0 +2003,10,27,5,30,0,0,-2,0.146,4.800000000000001,64.03,6,810,0 +2003,10,27,6,30,0,0,-2,0.146,4.9,63.24,7,800,0 +2003,10,27,7,30,71,55,-2,0.146,5.5,54.94,9,800,81 +2003,10,27,8,30,17,0,-2,0.146,6.1000000000000005,44.63,11,800,17 +2003,10,27,9,30,130,0,-2,0.146,6.7,38.42,13,800,130 +2003,10,27,10,30,131,0,-3,0.146,7.1000000000000005,30.67,16,800,131 +2003,10,27,11,30,285,286,-4,0.146,6.9,26.28,17,800,457 +2003,10,27,12,30,241,33,-5,0.146,6.4,22.5,18,800,260 +2003,10,27,13,30,62,0,-6,0.146,6.2,21.43,18,800,62 +2003,10,27,14,30,127,0,-6,0.146,6.1000000000000005,22.63,17,800,127 +2003,10,27,15,30,111,133,-5,0.146,5.4,24.740000000000002,16,800,147 +2003,10,27,16,30,25,0,-5,0.146,4.2,32.03,13,800,25 +2003,10,27,17,30,0,0,-4,0.146,3.7,37.300000000000004,11,800,0 +2003,10,27,18,30,0,0,-5,0.146,4,38.46,10,800,0 +2003,10,27,19,30,0,0,-5,0.146,4.3,39.44,9,800,0 +2003,10,27,20,30,0,0,-6,0.146,4.3,38.65,9,800,0 +2003,10,27,21,30,0,0,-5,0.146,3.8000000000000003,42.53,8,800,0 +2003,10,27,22,30,0,0,-5,0.146,2.5,48.32,7,800,0 +2003,10,27,23,30,0,0,-4,0.146,1.4000000000000001,54.300000000000004,6,800,0 +2003,10,28,0,30,0,0,-3,0.146,1.2000000000000002,56.42,6,800,0 +2003,10,28,1,30,0,0,-2,0.146,1.7000000000000002,65.29,5,800,0 +2003,10,28,2,30,0,0,-1,0.146,1.7000000000000002,77.18,4,800,0 +2003,10,28,3,30,0,0,0,0.146,1.5,80.58,4,800,0 +2003,10,28,4,30,0,0,0,0.146,1.5,87.49,3,800,0 +2003,10,28,5,30,0,0,0,0.146,1.5,87.73,3,800,0 +2003,10,28,6,30,0,0,0,0.146,1.5,88.35000000000001,3,800,0 +2003,10,28,7,30,40,0,0,0.146,1.5,76.72,5,800,40 +2003,10,28,8,30,137,39,0,0.146,1,61.78,8,800,151 +2003,10,28,9,30,218,191,0,0.146,0.9,52.08,11,800,309 +2003,10,28,10,30,257,298,0,0.146,1.6,43.81,14,800,424 +2003,10,28,11,30,240,30,0,0.146,2.4000000000000004,40.7,15,800,258 +2003,10,28,12,30,261,356,0,0.146,2.8000000000000003,37.97,16,800,469 +2003,10,28,13,30,240,263,0,0.146,3.1,35.76,17,800,377 +2003,10,28,14,30,164,34,0,0.146,3,38.160000000000004,16,800,178 +2003,10,28,15,30,105,221,0,0.146,2.4000000000000004,40.81,15,800,164 +2003,10,28,16,30,33,99,0,0.146,1.5,49.72,13,800,43 +2003,10,28,17,30,0,0,0,0.146,1.5,54.24,11,800,0 +2003,10,28,18,30,0,0,0,0.146,2.7,56.22,10,800,0 +2003,10,28,19,30,0,0,0,0.146,3.6,54.02,10,790,0 +2003,10,28,20,30,0,0,-1,0.146,4.1000000000000005,52.61,10,790,0 +2003,10,28,21,30,0,0,-1,0.146,4.4,52.620000000000005,10,790,0 +2003,10,28,22,30,0,0,0,0.146,4.800000000000001,54.02,10,790,0 +2003,10,28,23,30,0,0,0,0.146,5.300000000000001,60.38,9,790,0 +2003,10,29,0,30,0,0,0,0.146,5.800000000000001,62.72,9,790,0 +2003,10,29,1,30,0,0,0,0.146,6.2,64.04,9,790,0 +2003,10,29,2,30,0,0,0,0.146,6.300000000000001,64.2,9,790,0 +2003,10,29,3,30,0,0,0,0.146,6.1000000000000005,64.22,9,790,0 +2003,10,29,4,30,0,0,0,0.146,5.6000000000000005,64.07000000000001,9,790,0 +2003,10,29,5,30,0,0,0,0.146,5.2,63.32,9,790,0 +2003,10,29,6,30,0,0,0,0.146,5,57.84,10,790,0 +2003,10,29,7,30,55,378,0,0.146,5.2,45.83,13,790,123 +2003,10,29,8,30,126,367,0,0.146,5.800000000000001,37.03,16,790,252 +2003,10,29,9,30,54,943,-1,0.146,6.4,31,18,790,496 +2003,10,29,10,30,58,975,-1,0.146,6.6000000000000005,26.740000000000002,20,790,600 +2003,10,29,11,30,57,992,-2,0.146,6.6000000000000005,24.04,21,790,645 +2003,10,29,12,30,57,983,-2,0.146,6.4,21.43,22,790,627 +2003,10,29,13,30,56,950,-2,0.146,6.1000000000000005,21.07,22,790,547 +2003,10,29,14,30,51,893,-2,0.146,5.7,22.84,21,790,416 +2003,10,29,15,30,73,505,-2,0.146,4.7,24.92,20,790,206 +2003,10,29,16,30,23,474,-1,0.146,3,32.13,17,790,65 +2003,10,29,17,30,0,0,-1,0.146,2,39.38,14,790,0 +2003,10,29,18,30,0,0,-1,0.146,1.7000000000000002,45.300000000000004,12,790,0 +2003,10,29,19,30,0,0,-1,0.146,1.5,48.47,11,790,0 +2003,10,29,20,30,0,0,-1,0.146,0.7000000000000001,52.22,10,790,0 +2003,10,29,21,30,0,0,-1,0.146,1.7000000000000002,60.77,8,790,0 +2003,10,29,22,30,0,0,0,0.146,4.1000000000000005,72.42,6,790,0 +2003,10,29,23,30,0,0,0,0.146,4.5,88.47,4,790,0 +2003,10,30,0,30,0,0,0,0.146,3.7,99.94,2,790,0 +2003,10,30,1,30,0,0,0,0.146,3,95.3,2,790,0 +2003,10,30,2,30,0,0,-1,0.146,3,92.17,1,790,0 +2003,10,30,3,30,0,0,-1,0.146,3.2,88.91,1,790,0 +2003,10,30,4,30,0,0,-2,0.146,3.5,85.18,0,790,0 +2003,10,30,5,30,0,0,-2,0.146,3.6,86.94,0,790,0 +2003,10,30,6,30,0,0,-3,0.146,3.6,88.55,0,790,0 +2003,10,30,7,30,12,0,-4,0.146,3.6,79.52,0,800,12 +2003,10,30,8,30,55,0,-4,0.146,3.4000000000000004,72.62,1,800,55 +2003,10,30,9,30,148,5,-4,0.146,3.4000000000000004,64.54,3,790,151 +2003,10,30,10,30,164,7,-5,0.146,4,52.43,5,790,167 +2003,10,30,11,30,202,15,-6,0.146,4.800000000000001,46.21,6,790,211 +2003,10,30,12,30,182,10,-6,0.146,5.4,42.19,7,790,189 +2003,10,30,13,30,133,0,-6,0.146,5.800000000000001,42.27,7,790,134 +2003,10,30,14,30,73,0,-6,0.146,5.9,45.97,6,790,73 +2003,10,30,15,30,43,0,-6,0.146,5.7,54.35,4,790,43 +2003,10,30,16,30,17,0,-5,0.146,5.1000000000000005,65.57000000000001,2,790,17 +2003,10,30,17,30,0,0,-5,0.146,4.5,74.26,0,790,0 +2003,10,30,18,30,0,0,-4,0.146,3.9000000000000004,81.73,0,800,0 +2003,10,30,19,30,0,0,-4,0.146,3.6,82.65,0,800,0 +2003,10,30,20,30,0,0,-4,0.146,3.5,84.82000000000001,0,800,0 +2003,10,30,21,30,0,0,-3,0.146,3.7,87.66,0,800,0 +2003,10,30,22,30,0,0,-3,0.146,3.9000000000000004,89.7,0,800,0 +2003,10,30,23,30,0,0,-3,0.146,4.2,90,0,800,0 +2003,10,31,0,30,0,0,-3,0.146,4.6000000000000005,88.79,0,800,0 +2003,10,31,1,30,0,0,-4,0.146,4.7,92.27,-1,800,0 +2003,10,31,2,30,0,0,-4,0.146,4.6000000000000005,95.29,-1,800,0 +2003,10,31,3,30,0,0,-5,0.146,4.4,91.84,-2,800,0 +2003,10,31,4,30,0,0,-5,0.146,4.1000000000000005,89.14,-2,800,0 +2003,10,31,5,30,0,0,-5,0.146,4,86.9,-2,800,0 +2003,10,31,6,30,0,0,-6,0.146,4.1000000000000005,84.89,-2,800,0 +2003,10,31,7,30,11,0,-6,0.146,4.2,78.04,-1,800,11 +2003,10,31,8,30,59,0,-6,0.146,4.2,73.45,0,800,59 +2003,10,31,9,30,86,0,-5,0.146,4.3,64.66,1,800,86 +2003,10,31,10,30,111,0,-5,0.146,4.7,61.75,3,800,111 +2003,10,31,11,30,134,1,-5,0.146,5.2,54.5,5,800,135 +2003,10,31,12,30,148,4,-5,0.146,5.5,50.97,6,800,150 +2003,10,31,13,30,137,1,-5,0.146,5.6000000000000005,51.230000000000004,6,800,138 +2003,10,31,14,30,102,0,-5,0.146,5.7,51.620000000000005,6,800,102 +2003,10,31,15,30,45,0,-4,0.146,5.6000000000000005,60.57,4,800,45 +2003,10,31,16,30,9,0,-4,0.146,4.800000000000001,70.97,1,800,9 +2003,10,31,17,30,0,0,-4,0.137,3.9000000000000004,80.61,0,800,0 +2003,10,31,18,30,0,0,-5,0.137,3.3000000000000003,84.76,-1,800,0 +2003,10,31,19,30,0,0,-5,0.137,2.9000000000000004,83.73,-1,800,0 +2003,10,31,20,30,0,0,-5,0.137,2.5,83.76,-1,800,0 +2003,10,31,21,30,0,0,-5,0.137,2,84.37,-1,800,0 +2003,10,31,22,30,0,0,-4,0.137,1.6,80.11,0,800,0 +2003,10,31,23,30,0,0,-4,0.137,1.5,84.34,0,800,0 +2003,11,1,0,30,0,0,-3,0.137,1.4000000000000001,84.59,0,800,0 +2003,11,1,1,30,0,0,-2,0.137,1.4000000000000001,89.31,0,800,0 +2003,11,1,2,30,0,0,-2,0.137,1.1,92.47,0,800,0 +2003,11,1,3,30,0,0,-1,0.137,0.5,94.2,0,800,0 +2003,11,1,4,30,0,0,-2,0.137,0.30000000000000004,100,0,800,0 +2003,11,1,5,30,0,0,-2,0.137,0.7000000000000001,100,0,800,0 +2003,11,1,6,30,0,0,-1,0.137,1,93.69,0,800,0 +2003,11,1,7,30,8,0,-1,0.137,1.5,87.93,1,800,8 +2003,11,1,8,30,138,89,-1,0.137,1.7000000000000002,79.27,4,800,168 +2003,11,1,9,30,164,15,0,0.137,1.3,66.22,7,800,171 +2003,11,1,10,30,95,0,-1,0.137,0.8,55.22,9,800,95 +2003,11,1,11,30,283,173,-2,0.137,0.7000000000000001,45.15,11,800,384 +2003,11,1,12,30,212,21,-2,0.137,0.7000000000000001,41.12,12,800,224 +2003,11,1,13,30,161,7,-2,0.137,0.4,38.58,13,800,165 +2003,11,1,14,30,167,61,-2,0.137,0.5,42.46,12,800,191 +2003,11,1,15,30,33,0,-1,0.137,1.2000000000000002,54.49,9,800,33 +2003,11,1,16,30,16,0,0,0.137,1.9000000000000001,71.29,6,800,16 +2003,11,1,17,30,0,0,0,0.137,2.2,85.17,4,800,0 +2003,11,1,18,30,0,0,0,0.137,2.2,99.48,2,800,0 +2003,11,1,19,30,0,0,0,0.137,1.8,97.11,2,800,0 +2003,11,1,20,30,0,0,0,0.137,1.5,94.65,1,800,0 +2003,11,1,21,30,0,0,0,0.137,1.6,93.26,1,800,0 +2003,11,1,22,30,0,0,-1,0.137,1.4000000000000001,92.26,1,800,0 +2003,11,1,23,30,0,0,-1,0.137,1.1,91.84,0,800,0 +2003,11,2,0,30,0,0,-1,0.137,0.8,98.54,0,800,0 +2003,11,2,1,30,0,0,-1,0.137,0.7000000000000001,98.28,0,800,0 +2003,11,2,2,30,0,0,-1,0.137,1,91.21000000000001,0,800,0 +2003,11,2,3,30,0,0,-1,0.137,1.3,90.97,1,800,0 +2003,11,2,4,30,0,0,-1,0.137,1.6,90.51,1,800,0 +2003,11,2,5,30,0,0,-1,0.137,1.7000000000000002,89.96000000000001,1,800,0 +2003,11,2,6,30,0,0,-1,0.137,1.9000000000000001,89.29,1,800,0 +2003,11,2,7,30,25,0,-1,0.137,2,89.79,2,800,25 +2003,11,2,8,30,58,0,-1,0.137,1.9000000000000001,79.58,4,800,58 +2003,11,2,9,30,83,0,0,0.137,1.9000000000000001,70.33,6,800,83 +2003,11,2,10,30,89,0,0,0.137,2.5,61.03,8,800,89 +2003,11,2,11,30,57,0,-1,0.137,3,56.13,9,800,57 +2003,11,2,12,30,31,0,0,0.137,3.2,53.24,10,800,31 +2003,11,2,13,30,104,0,0,0.137,3.4000000000000004,58.49,9,800,104 +2003,11,2,14,30,35,0,0,0.137,3.7,64.07000000000001,8,800,35 +2003,11,2,15,30,7,0,0,0.137,4,70.51,7,800,7 +2003,11,2,16,30,1,0,0,0.137,3.9000000000000004,87.98,4,800,1 +2003,11,2,17,30,0,0,0,0.866,3.5,100,2,800,0 +2003,11,2,18,30,0,0,0,0.866,2.9000000000000004,97.57000000000001,1,800,0 +2003,11,2,19,30,0,0,0,0.866,2.2,93.78,1,800,0 +2003,11,2,20,30,0,0,-1,0.866,1.9000000000000001,91.81,0,800,0 +2003,11,2,21,30,0,0,-1,0.866,2,97.82000000000001,0,800,0 +2003,11,2,22,30,0,0,-1,0.866,2,97.96000000000001,0,800,0 +2003,11,2,23,30,0,0,-1,0.866,2.1,98.07000000000001,0,800,0 +2003,11,3,0,30,0,0,-1,0.866,2.1,97.69,0,800,0 +2003,11,3,1,30,0,0,-1,0.866,2,91.7,1,800,0 +2003,11,3,2,30,0,0,-1,0.866,1.9000000000000001,92.25,0,800,0 +2003,11,3,3,30,0,0,-1,0.866,1.8,98.51,0,800,0 +2003,11,3,4,30,0,0,-1,0.866,1.5,97.46000000000001,0,800,0 +2003,11,3,5,30,0,0,-1,0.866,1.2000000000000002,96.48,0,800,0 +2003,11,3,6,30,0,0,-1,0.866,1.2000000000000002,88.7,0,800,0 +2003,11,3,7,30,60,68,-1,0.866,1.2000000000000002,89.05,2,800,71 +2003,11,3,8,30,97,667,-1,0.866,1.1,77.95,4,800,311 +2003,11,3,9,30,178,32,-1,0.866,1.2000000000000002,71.29,5,800,192 +2003,11,3,10,30,210,28,-2,0.866,1.5,63.45,6,800,225 +2003,11,3,11,30,275,116,-3,0.866,1.8,56.050000000000004,7,790,342 +2003,11,3,12,30,226,438,-3,0.866,1.9000000000000001,50.870000000000005,8,790,470 +2003,11,3,13,30,238,159,-3,0.866,1.8,50.39,8,790,317 +2003,11,3,14,30,163,59,-3,0.866,2,53.57,7,790,186 +2003,11,3,15,30,9,0,-3,0.866,2.7,57.63,6,790,9 +2003,11,3,16,30,26,313,-3,0.866,3,73.78,3,790,47 +2003,11,3,17,30,0,0,-3,0.866,2.8000000000000003,80.06,1,790,0 +2003,11,3,18,30,0,0,-3,0.866,2.2,84.25,0,800,0 +2003,11,3,19,30,0,0,-3,0.866,1.3,88.57000000000001,0,800,0 +2003,11,3,20,30,0,0,-3,0.866,0.9,86.28,0,800,0 +2003,11,3,21,30,0,0,-4,0.866,0.9,84.5,0,800,0 +2003,11,3,22,30,0,0,-4,0.866,0.6000000000000001,82.09,0,800,0 +2003,11,3,23,30,0,0,-5,0.866,0.30000000000000004,84.7,-1,800,0 +2003,11,4,0,30,0,0,-5,0.866,0.30000000000000004,81.25,-1,800,0 +2003,11,4,1,30,0,0,-6,0.866,0.5,77.61,-1,800,0 +2003,11,4,2,30,0,0,-6,0.866,0.9,74.51,-1,800,0 +2003,11,4,3,30,0,0,-7,0.866,1.2000000000000002,70.64,-1,800,0 +2003,11,4,4,30,0,0,-8,0.866,1.4000000000000001,72,-2,800,0 +2003,11,4,5,30,0,0,-8,0.866,1.4000000000000001,68.68,-2,800,0 +2003,11,4,6,30,0,0,-9,0.866,1.3,61.120000000000005,-1,800,0 +2003,11,4,7,30,42,624,-9,0.866,1.6,52.88,0,800,140 +2003,11,4,8,30,61,859,-9,0.866,2.2,49.45,2,800,333 +2003,11,4,9,30,73,949,-10,0.866,2.4000000000000004,41.36,3,800,493 +2003,11,4,10,30,79,990,-11,0.866,2,35.29,4,800,602 +2003,11,4,11,30,87,995,-12,0.866,1.8,30.48,5,800,650 +2003,11,4,12,30,121,770,-13,0.866,1.6,27.44,6,800,546 +2003,11,4,13,30,187,453,-13,0.866,1.5,27.490000000000002,6,800,409 +2003,11,4,14,30,111,561,-12,0.866,1.2000000000000002,30.18,5,800,326 +2003,11,4,15,30,54,749,-12,0.866,0.7000000000000001,33.26,4,800,232 +2003,11,4,16,30,23,375,-10,0.866,0.4,44.82,1,800,47 +2003,11,4,17,30,0,0,-11,0.866,0.5,45.72,0,800,0 +2003,11,4,18,30,0,0,-11,0.866,0.5,45.34,0,800,0 +2003,11,4,19,30,0,0,-11,0.866,0.30000000000000004,46.45,0,800,0 +2003,11,4,20,30,0,0,-10,0.866,0.1,50.86,0,800,0 +2003,11,4,21,30,0,0,-10,0.866,0.1,54.33,-1,800,0 +2003,11,4,22,30,0,0,-10,0.866,0.2,54.18,-1,800,0 +2003,11,4,23,30,0,0,-10,0.866,0.30000000000000004,58.29,-2,800,0 +2003,11,5,0,30,0,0,-10,0.866,0.30000000000000004,58.92,-2,800,0 +2003,11,5,1,30,0,0,-10,0.866,0.5,65.08,-2,800,0 +2003,11,5,2,30,0,0,-10,0.866,0.7000000000000001,67.34,-3,800,0 +2003,11,5,3,30,0,0,-9,0.866,0.9,70.14,-3,800,0 +2003,11,5,4,30,0,0,-9,0.866,1.3,78.81,-4,800,0 +2003,11,5,5,30,0,0,-8,0.866,1.7000000000000002,80.95,-4,800,0 +2003,11,5,6,30,0,0,-8,0.866,1.7000000000000002,81,-4,800,0 +2003,11,5,7,30,9,0,-8,0.866,1.2000000000000002,70.21000000000001,-2,800,9 +2003,11,5,8,30,23,0,-8,0.866,0.7000000000000001,60.15,0,800,23 +2003,11,5,9,30,112,0,-9,0.866,0.4,49.65,1,800,112 +2003,11,5,10,30,224,47,-9,0.866,0.30000000000000004,44.02,3,800,249 +2003,11,5,11,30,272,201,-10,0.866,0.7000000000000001,40.02,4,800,385 +2003,11,5,12,30,257,92,-9,0.866,1.2000000000000002,40.81,4,800,308 +2003,11,5,13,30,227,158,-9,0.866,1.6,42.28,4,800,304 +2003,11,5,14,30,160,255,-8,0.866,2,47.36,3,800,257 +2003,11,5,15,30,93,94,-8,0.866,2.2,53.46,2,800,115 +2003,11,5,16,30,23,74,-7,0.866,1.8,61.42,0,800,28 +2003,11,5,17,30,0,0,-6,0.866,1.2000000000000002,69,0,800,0 +2003,11,5,18,30,0,0,-6,0.866,0.9,69.75,0,800,0 +2003,11,5,19,30,0,0,-6,0.866,0.6000000000000001,75.33,-1,800,0 +2003,11,5,20,30,0,0,-7,0.866,0.30000000000000004,79.41,-2,800,0 +2003,11,5,21,30,0,0,-7,0.866,0.30000000000000004,83.5,-3,800,0 +2003,11,5,22,30,0,0,-7,0.866,0.4,81.62,-3,800,0 +2003,11,5,23,30,0,0,-7,0.866,0.5,85.87,-4,800,0 +2003,11,6,0,30,0,0,-8,0.866,0.5,83.4,-4,800,0 +2003,11,6,1,30,0,0,-8,0.866,0.6000000000000001,80.74,-4,800,0 +2003,11,6,2,30,0,0,-9,0.866,0.6000000000000001,78.88,-4,800,0 +2003,11,6,3,30,0,0,-9,0.866,0.5,78.24,-4,800,0 +2003,11,6,4,30,0,0,-9,0.866,0.4,78.3,-4,800,0 +2003,11,6,5,30,0,0,-9,0.866,0.30000000000000004,78.53,-4,810,0 +2003,11,6,6,30,0,0,-9,0.866,0.30000000000000004,73.18,-3,810,0 +2003,11,6,7,30,9,0,-8,0.866,0.4,64.54,-1,810,9 +2003,11,6,8,30,40,0,-8,0.866,0.6000000000000001,57.42,0,810,40 +2003,11,6,9,30,190,73,-8,0.866,0.7000000000000001,51.85,2,810,221 +2003,11,6,10,30,241,94,-9,0.866,0.8,45.61,3,810,290 +2003,11,6,11,30,233,410,-9,0.866,1.1,41.14,4,810,461 +2003,11,6,12,30,233,379,-9,0.866,1.2000000000000002,41,4,810,439 +2003,11,6,13,30,181,460,-9,0.866,1.6,41.22,4,810,403 +2003,11,6,14,30,136,410,-9,0.866,1.9000000000000001,41.57,4,810,290 +2003,11,6,15,30,89,199,-9,0.866,1.7000000000000002,45.39,3,810,135 +2003,11,6,16,30,23,90,-8,0.866,1.2000000000000002,51.72,1,810,28 +2003,11,6,17,30,0,0,-9,0.866,0.9,54.34,0,810,0 +2003,11,6,18,30,0,0,-8,0.866,0.5,59.01,0,810,0 +2003,11,6,19,30,0,0,-8,0.866,0.4,59.480000000000004,0,810,0 +2003,11,6,20,30,0,0,-8,0.866,0.5,64.3,-1,810,0 +2003,11,6,21,30,0,0,-8,0.866,0.5,64.69,-1,810,0 +2003,11,6,22,30,0,0,-8,0.866,0.6000000000000001,65.65,-1,810,0 +2003,11,6,23,30,0,0,-8,0.866,0.6000000000000001,67.33,-1,810,0 +2003,11,7,0,30,0,0,-7,0.866,0.6000000000000001,69.33,-1,810,0 +2003,11,7,1,30,0,0,-7,0.866,0.5,71.60000000000001,-1,810,0 +2003,11,7,2,30,0,0,-7,0.866,0.30000000000000004,73.75,-1,810,0 +2003,11,7,3,30,0,0,-6,0.866,0.30000000000000004,75.45,-1,810,0 +2003,11,7,4,30,0,0,-6,0.866,0.4,76.85000000000001,-1,810,0 +2003,11,7,5,30,0,0,-6,0.866,0.4,78.14,-1,810,0 +2003,11,7,6,30,0,0,-6,0.866,0.5,79.16,-1,810,0 +2003,11,7,7,30,51,13,-5,0.866,0.7000000000000001,69.41,0,810,53 +2003,11,7,8,30,126,186,-5,0.866,0.9,66.69,2,810,183 +2003,11,7,9,30,150,489,-5,0.866,1.2000000000000002,57.5,4,810,360 +2003,11,7,10,30,131,687,-5,0.866,1.7000000000000002,50.5,6,810,485 +2003,11,7,11,30,185,557,-5,0.866,2.2,47.38,7,810,493 +2003,11,7,12,30,221,428,-5,0.866,2.6,44.61,8,810,452 +2003,11,7,13,30,161,522,-4,0.866,2.8000000000000003,45.43,8,800,411 +2003,11,7,14,30,85,0,-4,0.866,2.9000000000000004,49.46,7,800,85 +2003,11,7,15,30,72,389,-4,0.866,2.5,53.26,6,810,161 +2003,11,7,16,30,22,69,-4,0.866,2,66.06,3,810,26 +2003,11,7,17,30,0,0,-5,0.866,1.6,68.91,1,810,0 +2003,11,7,18,30,0,0,-5,0.866,1.2000000000000002,73.2,0,810,0 +2003,11,7,19,30,0,0,-5,0.866,0.6000000000000001,72.57000000000001,0,810,0 +2003,11,7,20,30,0,0,-5,0.866,0.30000000000000004,72.41,0,810,0 +2003,11,7,21,30,0,0,-5,0.866,0.4,78.61,0,810,0 +2003,11,7,22,30,0,0,-5,0.866,0.6000000000000001,79.49,0,810,0 +2003,11,7,23,30,0,0,-4,0.866,0.7000000000000001,80.10000000000001,0,810,0 +2003,11,8,0,30,0,0,-4,0.866,0.7000000000000001,74.68,0,810,0 +2003,11,8,1,30,0,0,-4,0.866,0.7000000000000001,74.97,0,810,0 +2003,11,8,2,30,0,0,-4,0.866,0.7000000000000001,75.25,0,810,0 +2003,11,8,3,30,0,0,-4,0.866,0.7000000000000001,75.58,0,810,0 +2003,11,8,4,30,0,0,-4,0.866,0.7000000000000001,75.94,0,810,0 +2003,11,8,5,30,0,0,-4,0.866,0.6000000000000001,81.69,0,810,0 +2003,11,8,6,30,0,0,-4,0.866,0.6000000000000001,75.85000000000001,0,810,0 +2003,11,8,7,30,42,373,-4,0.866,0.9,70.92,1,810,94 +2003,11,8,8,30,78,572,-4,0.866,1.4000000000000001,62.88,4,810,250 +2003,11,8,9,30,83,749,-4,0.866,1.2000000000000002,54.54,6,810,402 +2003,11,8,10,30,86,839,-4,0.866,0.8,46.69,8,810,515 +2003,11,8,11,30,114,0,-4,0.866,0.8,43.06,9,810,114 +2003,11,8,12,30,113,774,-4,0.866,1,39.42,10,810,527 +2003,11,8,13,30,191,392,-5,0.866,1.4000000000000001,38.660000000000004,10,810,377 +2003,11,8,14,30,153,262,-5,0.866,1.7000000000000002,38.28,10,810,249 +2003,11,8,15,30,65,609,-5,0.866,1.8,44.03,8,810,201 +2003,11,8,16,30,33,0,-4,0.866,1.8,58.54,5,810,33 +2003,11,8,17,30,0,0,-4,0.866,1.6,65.91,3,810,0 +2003,11,8,18,30,0,0,-4,0.866,0.7000000000000001,72.34,2,810,0 +2003,11,8,19,30,0,0,-4,0.866,0.2,72.96000000000001,1,810,0 +2003,11,8,20,30,0,0,-4,0.866,0.5,72.76,0,810,0 +2003,11,8,21,30,0,0,-4,0.866,0.8,77.44,0,810,0 +2003,11,8,22,30,0,0,-4,0.866,0.8,76.49,0,810,0 +2003,11,8,23,30,0,0,-4,0.866,0.8,75.66,0,810,0 +2003,11,9,0,30,0,0,-4,0.866,0.9,69.82000000000001,0,810,0 +2003,11,9,1,30,0,0,-4,0.866,1.1,69.27,1,810,0 +2003,11,9,2,30,0,0,-5,0.866,1.2000000000000002,68.62,1,810,0 +2003,11,9,3,30,0,0,-5,0.866,1.2000000000000002,68.11,1,810,0 +2003,11,9,4,30,0,0,-5,0.866,1.1,72.4,0,810,0 +2003,11,9,5,30,0,0,-5,0.866,1,75.91,0,810,0 +2003,11,9,6,30,0,0,-5,0.866,1.1,68.85000000000001,0,810,0 +2003,11,9,7,30,40,533,-6,0.866,1.1,63.95,2,810,113 +2003,11,9,8,30,66,639,-5,0.866,0.8,54.09,5,810,255 +2003,11,9,9,30,99,673,-4,0.866,0.4,48.86,7,810,384 +2003,11,9,10,30,125,698,-4,0.866,0.4,43.19,9,810,479 +2003,11,9,11,30,88,868,-4,0.866,0.6000000000000001,40.39,10,810,560 +2003,11,9,12,30,170,625,-4,0.866,1,37,11,800,503 +2003,11,9,13,30,131,618,-5,0.866,1.4000000000000001,34.1,12,800,422 +2003,11,9,14,30,113,577,-5,0.866,1.6,36.68,11,800,323 +2003,11,9,15,30,54,541,-4,0.866,1.4000000000000001,44.33,9,800,173 +2003,11,9,16,30,27,0,-3,0.866,1.1,60.07,6,800,27 +2003,11,9,17,30,0,0,-3,0.866,0.8,67.93,4,800,0 +2003,11,9,18,30,0,0,-2,0.866,0.6000000000000001,74.78,3,800,0 +2003,11,9,19,30,0,0,-2,0.866,0.6000000000000001,76.62,3,800,0 +2003,11,9,20,30,0,0,-2,0.866,0.7000000000000001,77.46000000000001,3,800,0 +2003,11,9,21,30,0,0,-2,0.866,0.8,77.17,3,800,0 +2003,11,9,22,30,0,0,-2,0.866,0.9,77.02,3,800,0 +2003,11,9,23,30,0,0,-2,0.866,0.9,82.97,2,800,0 +2003,11,10,0,30,0,0,-2,0.866,1,82.84,2,800,0 +2003,11,10,1,30,0,0,-2,0.866,1.1,82.52,1,800,0 +2003,11,10,2,30,0,0,-2,0.866,1.1,82.45,1,800,0 +2003,11,10,3,30,0,0,-2,0.866,1.1,82.87,1,800,0 +2003,11,10,4,30,0,0,-2,0.866,1.1,83.49,1,800,0 +2003,11,10,5,30,0,0,-2,0.866,1.2000000000000002,84.12,1,800,0 +2003,11,10,6,30,0,0,-2,0.866,1.2000000000000002,84.51,1,800,0 +2003,11,10,7,30,38,514,-1,0.866,1.4000000000000001,74.99,4,800,107 +2003,11,10,8,30,58,784,0,0.866,2.1,65.88,7,800,287 +2003,11,10,9,30,73,877,-1,0.866,3,56.27,9,800,440 +2003,11,10,10,30,84,918,-1,0.866,3.6,49.32,10,800,545 +2003,11,10,11,30,91,853,-2,0.866,3.9000000000000004,43.72,11,800,552 +2003,11,10,12,30,96,910,-3,0.866,4.1000000000000005,39.300000000000004,12,800,575 +2003,11,10,13,30,92,868,-3,0.866,4.3,40.74,11,800,497 +2003,11,10,14,30,74,816,-3,0.866,4.1000000000000005,42.93,10,800,367 +2003,11,10,15,30,54,662,-3,0.866,3.3000000000000003,51.79,8,800,198 +2003,11,10,16,30,30,0,-2,0.866,2.4000000000000004,61.96,6,800,30 +2003,11,10,17,30,0,0,-2,0.866,1.9000000000000001,71.48,4,800,0 +2003,11,10,18,30,0,0,-2,0.866,2,76.59,3,800,0 +2003,11,10,19,30,0,0,-2,0.866,2,81.49,2,800,0 +2003,11,10,20,30,0,0,-3,0.866,2,79.71000000000001,2,800,0 +2003,11,10,21,30,0,0,-3,0.866,2.2,77.85000000000001,1,800,0 +2003,11,10,22,30,0,0,-3,0.866,2.3000000000000003,76.2,1,800,0 +2003,11,10,23,30,0,0,-3,0.866,2.2,74.88,1,800,0 +2003,11,11,0,30,0,0,-4,0.866,2,73.77,0,800,0 +2003,11,11,1,30,0,0,-4,0.866,1.8,78.47,0,800,0 +2003,11,11,2,30,0,0,-4,0.866,1.7000000000000002,78.03,0,800,0 +2003,11,11,3,30,0,0,-4,0.866,1.7000000000000002,77.99,0,800,0 +2003,11,11,4,30,0,0,-4,0.866,1.6,83.89,0,800,0 +2003,11,11,5,30,0,0,-4,0.866,1.6,83.57000000000001,0,800,0 +2003,11,11,6,30,0,0,-4,0.866,1.7000000000000002,77.26,0,800,0 +2003,11,11,7,30,39,515,-4,0.866,2.4000000000000004,72.89,2,800,106 +2003,11,11,8,30,60,794,-3,0.866,3.7,62.910000000000004,5,800,289 +2003,11,11,9,30,93,693,-3,0.866,5.300000000000001,54.14,7,800,379 +2003,11,11,10,30,83,953,-4,0.866,7,47.26,8,800,558 +2003,11,11,11,30,90,965,-5,0.866,8.200000000000001,40.44,9,800,608 +2003,11,11,12,30,91,954,-6,0.866,8.700000000000001,35.92,10,800,590 +2003,11,11,13,30,85,916,-6,0.866,8.5,38.69,9,800,508 +2003,11,11,14,30,71,845,-5,0.866,7.9,42.43,8,800,372 +2003,11,11,15,30,53,682,-5,0.866,6.7,46.6,7,800,198 +2003,11,11,16,30,18,243,-4,0.866,5.2,56.63,5,800,28 +2003,11,11,17,30,0,0,-4,0.866,4.5,63.5,4,800,0 +2003,11,11,18,30,0,0,-4,0.866,4.4,67.83,3,800,0 +2003,11,11,19,30,0,0,-4,0.866,4.4,65.09,3,800,0 +2003,11,11,20,30,0,0,-5,0.866,4.6000000000000005,66.81,2,800,0 +2003,11,11,21,30,0,0,-5,0.866,4.9,64.4,2,800,0 +2003,11,11,22,30,0,0,-6,0.866,5,63.07,2,800,0 +2003,11,11,23,30,0,0,-6,0.866,4.9,62.480000000000004,2,800,0 +2003,11,12,0,30,0,0,-6,0.866,4.800000000000001,62.31,2,800,0 +2003,11,12,1,30,0,0,-6,0.866,4.5,62.33,1,800,0 +2003,11,12,2,30,0,0,-6,0.866,3.9000000000000004,62.5,1,800,0 +2003,11,12,3,30,0,0,-6,0.866,3.2,67,0,800,0 +2003,11,12,4,30,0,0,-6,0.866,2.3000000000000003,66.84,0,810,0 +2003,11,12,5,30,0,0,-6,0.866,1,77.41,0,810,0 +2003,11,12,6,30,0,0,-6,0.866,0.6000000000000001,77.47,-1,810,0 +2003,11,12,7,30,39,516,-6,0.866,1.2000000000000002,72.66,0,810,104 +2003,11,12,8,30,107,24,-6,0.866,1.3,63.6,1,810,114 +2003,11,12,9,30,100,653,-6,0.866,0.9,52.89,4,810,368 +2003,11,12,10,30,101,767,-7,0.866,1,42.61,6,810,480 +2003,11,12,11,30,83,873,-8,0.866,1.5,37.74,7,810,548 +2003,11,12,12,30,97,809,-8,0.866,2.2,34.52,8,810,517 +2003,11,12,13,30,116,661,-8,0.866,2.6,34.82,8,810,419 +2003,11,12,14,30,141,303,-8,0.866,2.9000000000000004,37.980000000000004,7,810,248 +2003,11,12,15,30,82,124,-7,0.866,2.6,45.230000000000004,5,810,108 +2003,11,12,16,30,14,0,-7,0.866,1.7000000000000002,55.01,2,810,14 +2003,11,12,17,30,0,0,-7,0.866,1.1,58.67,1,810,0 +2003,11,12,18,30,0,0,-7,0.866,0.7000000000000001,58.620000000000005,0,810,0 +2003,11,12,19,30,0,0,-7,0.866,0.5,62.89,0,810,0 +2003,11,12,20,30,0,0,-7,0.866,0.2,62.440000000000005,0,810,0 +2003,11,12,21,30,0,0,-7,0.866,0.2,61.5,0,810,0 +2003,11,12,22,30,0,0,-7,0.866,0.2,65.62,0,810,0 +2003,11,12,23,30,0,0,-7,0.866,0.4,65.33,0,810,0 +2003,11,13,0,30,0,0,-7,0.866,0.9,65.83,0,810,0 +2003,11,13,1,30,0,0,-7,0.866,0.9,65.79,0,810,0 +2003,11,13,2,30,0,0,-7,0.866,0.6000000000000001,59.81,0,810,0 +2003,11,13,3,30,0,0,-7,0.866,0.8,59.94,0,810,0 +2003,11,13,4,30,0,0,-7,0.866,0.6000000000000001,60.71,0,810,0 +2003,11,13,5,30,0,0,-7,0.866,0.5,62.43,0,810,0 +2003,11,13,6,30,0,0,-6,0.866,0.8,61.5,0,810,0 +2003,11,13,7,30,44,209,-5,0.866,1.4000000000000001,62.59,2,810,70 +2003,11,13,8,30,82,493,-3,0.866,3,63.07,5,810,221 +2003,11,13,9,30,64,816,0,0.866,4.5,57.06,9,810,395 +2003,11,13,10,30,81,911,0,0.866,5.1000000000000005,50.19,12,800,528 +2003,11,13,11,30,121,743,0,0.866,5.1000000000000005,44.4,14,800,513 +2003,11,13,12,30,133,688,0,0.866,5,40.47,15,800,487 +2003,11,13,13,30,80,887,0,0.866,4.9,37.17,16,800,484 +2003,11,13,14,30,67,818,0,0.866,4.4,40.36,15,800,353 +2003,11,13,15,30,49,656,0,0.866,3.1,51.96,12,800,185 +2003,11,13,16,30,15,212,1,0.866,1.9000000000000001,71.28,8,800,23 +2003,11,13,17,30,0,0,0,0.866,1.9000000000000001,79.39,6,800,0 +2003,11,13,18,30,0,0,0,0.866,2.2,87.43,4,800,0 +2003,11,13,19,30,0,0,0,0.866,1.9000000000000001,89.89,3,800,0 +2003,11,13,20,30,0,0,0,0.866,1.1,93.19,2,800,0 +2003,11,13,21,30,0,0,-1,0.866,0.6000000000000001,91.31,2,800,0 +2003,11,13,22,30,0,0,-1,0.866,0.5,90.45,1,800,0 +2003,11,13,23,30,0,0,-1,0.866,0.8,89.54,1,800,0 +2003,11,14,0,30,0,0,-1,0.866,1,88.03,1,800,0 +2003,11,14,1,30,0,0,-2,0.866,1,86.03,0,800,0 +2003,11,14,2,30,0,0,-2,0.866,1,90.04,0,800,0 +2003,11,14,3,30,0,0,-2,0.866,1,87.44,0,800,0 +2003,11,14,4,30,0,0,-3,0.866,1,85.10000000000001,0,800,0 +2003,11,14,5,30,0,0,-3,0.866,1.1,83.63,0,800,0 +2003,11,14,6,30,0,0,-3,0.866,1.2000000000000002,76.68,0,800,0 +2003,11,14,7,30,34,516,-3,0.866,1.5,70.97,2,800,95 +2003,11,14,8,30,57,665,-3,0.866,2.8000000000000003,63.76,5,800,241 +2003,11,14,9,30,68,902,-4,0.866,4.4,52.17,7,800,430 +2003,11,14,10,30,75,951,-5,0.866,5.300000000000001,44.32,8,800,538 +2003,11,14,11,30,77,972,-6,0.866,5.5,38.36,9,800,586 +2003,11,14,12,30,76,966,-6,0.866,5.5,34.76,10,800,571 +2003,11,14,13,30,71,937,-6,0.866,5.4,37.300000000000004,9,800,494 +2003,11,14,14,30,61,872,-6,0.866,5,40.58,8,800,363 +2003,11,14,15,30,45,718,-5,0.866,3.9000000000000004,45.17,7,800,191 +2003,11,14,16,30,15,275,-4,0.866,2.8000000000000003,60.660000000000004,4,800,24 +2003,11,14,17,30,0,0,-4,0.866,2.3000000000000003,66.28,3,800,0 +2003,11,14,18,30,0,0,-4,0.866,2.2,72.29,2,800,0 +2003,11,14,19,30,0,0,-4,0.866,2,71.75,2,800,0 +2003,11,14,20,30,0,0,-4,0.866,1.8,70.81,1,800,0 +2003,11,14,21,30,0,0,-4,0.866,1.8,69.88,1,800,0 +2003,11,14,22,30,0,0,-5,0.866,1.9000000000000001,68.91,0,800,0 +2003,11,14,23,30,0,0,-5,0.866,1.9000000000000001,73.25,0,800,0 +2003,11,15,0,30,0,0,-5,0.866,1.8,72.38,0,800,0 +2003,11,15,1,30,0,0,-5,0.866,1.7000000000000002,77.01,0,800,0 +2003,11,15,2,30,0,0,-5,0.866,1.8,76.21000000000001,0,800,0 +2003,11,15,3,30,0,0,-5,0.866,1.9000000000000001,75.52,0,800,0 +2003,11,15,4,30,0,0,-5,0.866,1.8,75.22,0,800,0 +2003,11,15,5,30,0,0,-5,0.866,1.7000000000000002,75.26,0,800,0 +2003,11,15,6,30,0,0,-5,0.866,1.7000000000000002,70.14,0,800,0 +2003,11,15,7,30,35,492,-5,0.866,2,66.04,1,800,92 +2003,11,15,8,30,52,690,-4,0.866,2.5,60.2,4,800,241 +2003,11,15,9,30,80,728,-5,0.866,2,46.68,7,800,370 +2003,11,15,10,30,96,772,-6,0.866,1.2000000000000002,41.17,8,800,469 +2003,11,15,11,30,161,596,-6,0.866,1,37.31,9,800,470 +2003,11,15,12,30,92,924,-6,0.866,1.2000000000000002,34.35,10,800,562 +2003,11,15,13,30,87,888,-6,0.866,1.6,36.480000000000004,10,800,484 +2003,11,15,14,30,73,816,-6,0.866,1.8,38.86,9,800,353 +2003,11,15,15,30,53,645,-6,0.866,1.3,43.32,7,800,183 +2003,11,15,16,30,15,186,-5,0.866,0.8,57.76,4,800,21 +2003,11,15,17,30,0,0,-5,0.866,0.8,66.15,2,800,0 +2003,11,15,18,30,0,0,-5,0.866,0.8,66.96000000000001,1,800,0 +2003,11,15,19,30,0,0,-5,0.866,0.8,67.19,0,800,0 +2003,11,15,20,30,0,0,-5,0.866,0.6000000000000001,70.94,0,800,0 +2003,11,15,21,30,0,0,-5,0.866,0.4,69.73,0,800,0 +2003,11,15,22,30,0,0,-6,0.866,0.5,73.85000000000001,0,800,0 +2003,11,15,23,30,0,0,-6,0.866,0.9,72.59,0,800,0 +2003,11,16,0,30,0,0,-6,0.866,1.2000000000000002,76.63,-1,800,0 +2003,11,16,1,30,0,0,-6,0.866,1.5,74.8,-1,800,0 +2003,11,16,2,30,0,0,-7,0.866,1.7000000000000002,78.54,-2,800,0 +2003,11,16,3,30,0,0,-7,0.866,1.9000000000000001,71.33,-1,800,0 +2003,11,16,4,30,0,0,-7,0.866,1.8,65.45,0,800,0 +2003,11,16,5,30,0,0,-7,0.866,1.5,64.57000000000001,0,800,0 +2003,11,16,6,30,0,0,-8,0.866,1.2000000000000002,58.82,0,800,0 +2003,11,16,7,30,40,278,-8,0.866,1.2000000000000002,54.03,1,800,71 +2003,11,16,8,30,109,79,-7,0.866,1.1,52.96,3,800,131 +2003,11,16,9,30,132,492,-7,0.866,0.6000000000000001,45.37,5,800,326 +2003,11,16,10,30,92,787,-7,0.866,0.30000000000000004,39.29,7,800,468 +2003,11,16,11,30,106,781,-8,0.866,0.5,35.84,8,800,509 +2003,11,16,12,30,101,786,-8,0.866,0.9,32.480000000000004,9,800,497 +2003,11,16,13,30,110,668,-8,0.866,1.3,31.85,9,800,407 +2003,11,16,14,30,73,677,-8,0.866,1.6,34.22,8,800,303 +2003,11,16,15,30,46,563,-8,0.866,1.5,41.08,6,800,157 +2003,11,16,16,30,14,178,-6,0.866,1.2000000000000002,52.36,4,800,19 +2003,11,16,17,30,0,0,-6,0.866,1.1,60.19,2,800,0 +2003,11,16,18,30,0,0,-6,0.866,1,61.730000000000004,1,800,0 +2003,11,16,19,30,0,0,-6,0.866,1,66.4,0,800,0 +2003,11,16,20,30,0,0,-6,0.866,1.1,66.35,0,800,0 +2003,11,16,21,30,0,0,-6,0.866,1.2000000000000002,67.08,0,800,0 +2003,11,16,22,30,0,0,-6,0.866,1.3,68.02,0,790,0 +2003,11,16,23,30,0,0,-5,0.866,1.4000000000000001,74.39,0,790,0 +2003,11,17,0,30,0,0,-5,0.866,1.4000000000000001,75.5,0,790,0 +2003,11,17,1,30,0,0,-5,0.866,1.5,76.31,0,790,0 +2003,11,17,2,30,0,0,-5,0.866,1.5,76.81,0,790,0 +2003,11,17,3,30,0,0,-5,0.866,1.6,71.57000000000001,0,790,0 +2003,11,17,4,30,0,0,-5,0.866,1.5,71.49,0,790,0 +2003,11,17,5,30,0,0,-5,0.866,1.4000000000000001,71.56,0,790,0 +2003,11,17,6,30,0,0,-5,0.866,1.3,70.7,0,790,0 +2003,11,17,7,30,38,252,-5,0.866,1.5,65.06,1,790,66 +2003,11,17,8,30,84,442,-5,0.866,2.5,62.59,4,790,201 +2003,11,17,9,30,68,889,-5,0.866,4.1000000000000005,50.26,6,790,415 +2003,11,17,10,30,76,939,-6,0.866,5,43.04,7,790,522 +2003,11,17,11,30,79,960,-7,0.866,5.1000000000000005,41.550000000000004,7,790,571 +2003,11,17,12,30,106,766,-7,0.866,5,40.88,7,790,490 +2003,11,17,13,30,106,684,-7,0.866,5.2,42.07,6,790,407 +2003,11,17,14,30,111,463,-8,0.866,5.6000000000000005,45.17,4,790,268 +2003,11,17,15,30,46,556,-9,0.866,5.7,47.82,2,790,155 +2003,11,17,16,30,20,0,-10,0.866,5.4,45.11,1,790,20 +2003,11,17,17,30,0,0,-10,0.866,5.300000000000001,48.94,0,790,0 +2003,11,17,18,30,0,0,-10,0.866,5.6000000000000005,53.15,0,790,0 +2003,11,17,19,30,0,0,-10,0.866,5.7,56.64,-1,800,0 +2003,11,17,20,30,0,0,-10,0.866,5.4,55.550000000000004,-1,800,0 +2003,11,17,21,30,0,0,-10,0.866,5.1000000000000005,54.17,-1,800,0 +2003,11,17,22,30,0,0,-11,0.866,4.800000000000001,57.02,-2,800,0 +2003,11,17,23,30,0,0,-11,0.866,4.7,55.9,-2,800,0 +2003,11,18,0,30,0,0,-11,0.866,4.7,55.01,-2,800,0 +2003,11,18,1,30,0,0,-11,0.866,4.3,58.95,-3,800,0 +2003,11,18,2,30,0,0,-11,0.866,3.6,59.13,-3,800,0 +2003,11,18,3,30,0,0,-11,0.866,3.1,63.93,-4,800,0 +2003,11,18,4,30,0,0,-11,0.866,3,63.82,-4,800,0 +2003,11,18,5,30,0,0,-11,0.866,3,63.85,-4,800,0 +2003,11,18,6,30,0,0,-11,0.866,3.1,59.26,-3,800,0 +2003,11,18,7,30,28,575,-11,0.866,4.1000000000000005,51.44,-1,800,87 +2003,11,18,8,30,46,833,-11,0.866,6.1000000000000005,45.43,0,800,264 +2003,11,18,9,30,55,931,-11,0.866,7.1000000000000005,39.03,2,800,415 +2003,11,18,10,30,61,973,-11,0.866,7,34.93,5,800,519 +2003,11,18,11,30,71,974,-9,0.866,7,35.6,6,800,567 +2003,11,18,12,30,74,959,-8,0.866,7.1000000000000005,37.76,7,800,551 +2003,11,18,13,30,69,927,-6,0.866,7.1000000000000005,41.74,7,800,474 +2003,11,18,14,30,58,860,-6,0.866,7,47.28,6,800,345 +2003,11,18,15,30,42,706,-5,0.866,6.5,52.26,5,800,178 +2003,11,18,16,30,12,253,-5,0.866,6.2,61.82,3,800,18 +2003,11,18,17,30,0,0,-5,0.866,6.5,66.28,2,810,0 +2003,11,18,18,30,0,0,-5,0.866,6.5,65.89,2,810,0 +2003,11,18,19,30,0,0,-5,0.866,6.2,64.98,2,810,0 +2003,11,18,20,30,0,0,-6,0.866,5.9,63.18,1,810,0 +2003,11,18,21,30,0,0,-6,0.866,5.6000000000000005,61.21,1,810,0 +2003,11,18,22,30,0,0,-6,0.866,5.4,59.31,1,810,0 +2003,11,18,23,30,0,0,-7,0.866,5.1000000000000005,57.76,1,810,0 +2003,11,19,0,30,0,0,-7,0.866,4.9,56.21,1,810,0 +2003,11,19,1,30,0,0,-8,0.866,4.800000000000001,54.7,1,810,0 +2003,11,19,2,30,0,0,-8,0.866,4.9,53.86,0,810,0 +2003,11,19,3,30,0,0,-8,0.866,4.9,57.24,0,810,0 +2003,11,19,4,30,0,0,-8,0.866,5,56,0,810,0 +2003,11,19,5,30,0,0,-9,0.866,4.9,53.38,0,810,0 +2003,11,19,6,30,0,0,-9,0.866,4.800000000000001,47.410000000000004,0,810,0 +2003,11,19,7,30,10,0,-10,0.866,4.9,43.08,2,810,10 +2003,11,19,8,30,102,204,-9,0.866,4.6000000000000005,36.03,6,810,155 +2003,11,19,9,30,65,778,-8,0.866,3.8000000000000003,29.27,10,810,363 +2003,11,19,10,30,77,830,-8,0.866,2.9000000000000004,24.3,13,810,465 +2003,11,19,11,30,87,834,-8,0.866,2.4000000000000004,22.17,14,810,508 +2003,11,19,12,30,72,991,-9,0.866,2.4000000000000004,20.17,15,810,562 +2003,11,19,13,30,76,798,-9,0.866,2.6,19.92,15,800,422 +2003,11,19,14,30,66,702,-8,0.866,2.3000000000000003,22.38,14,800,298 +2003,11,19,15,30,37,637,-7,0.866,1.5,31.52,11,800,158 +2003,11,19,16,30,12,271,-7,0.866,1.1,37.550000000000004,8,800,18 +2003,11,19,17,30,0,0,-7,0.866,1.5,41.51,6,800,0 +2003,11,19,18,30,0,0,-8,0.866,2.3000000000000003,43.97,5,800,0 +2003,11,19,19,30,0,0,-8,0.866,3,46.81,4,800,0 +2003,11,19,20,30,0,0,-8,0.866,3.2,45.51,4,800,0 +2003,11,19,21,30,0,0,-9,0.866,3.3000000000000003,43.49,4,800,0 +2003,11,19,22,30,0,0,-9,0.866,3.3000000000000003,42.13,4,800,0 +2003,11,19,23,30,0,0,-9,0.866,3.1,41.33,4,800,0 +2003,11,20,0,30,0,0,-10,0.866,2.8000000000000003,43.58,3,800,0 +2003,11,20,1,30,0,0,-9,0.866,2.5,43.96,3,800,0 +2003,11,20,2,30,0,0,-9,0.866,2.3000000000000003,46.31,3,800,0 +2003,11,20,3,30,0,0,-8,0.866,2.3000000000000003,48.27,3,800,0 +2003,11,20,4,30,0,0,-8,0.866,2.4000000000000004,48.83,3,800,0 +2003,11,20,5,30,0,0,-8,0.866,2.4000000000000004,47.730000000000004,3,800,0 +2003,11,20,6,30,0,0,-9,0.866,2.3000000000000003,46.19,3,800,0 +2003,11,20,7,30,32,313,-9,0.866,2.5,39.39,5,800,62 +2003,11,20,8,30,51,669,-7,0.866,2.9000000000000004,36.050000000000004,8,800,221 +2003,11,20,9,30,54,908,-7,0.866,3.3000000000000003,30.54,11,800,399 +2003,11,20,10,30,72,849,-8,0.866,3.5,24.87,13,800,466 +2003,11,20,11,30,97,797,-8,0.866,3.4000000000000004,22.89,14,800,497 +2003,11,20,12,30,108,743,-8,0.866,3,21.54,15,800,473 +2003,11,20,13,30,64,854,-8,0.866,2.5,23.73,15,800,432 +2003,11,20,14,30,59,875,-5,0.866,2,31.69,14,800,346 +2003,11,20,15,30,42,717,-5,0.866,1.2000000000000002,34.9,11,800,176 +2003,11,20,16,30,11,242,-6,0.866,0.9,44.62,7,800,16 +2003,11,20,17,30,0,0,-6,0.866,1,49.5,5,800,0 +2003,11,20,18,30,0,0,-6,0.866,1,54.63,4,800,0 +2003,11,20,19,30,0,0,-6,0.866,0.7000000000000001,59.120000000000005,3,800,0 +2003,11,20,20,30,0,0,-5,0.866,0.4,64.14,2,800,0 +2003,11,20,21,30,0,0,-5,0.866,0.4,64.5,2,800,0 +2003,11,20,22,30,0,0,-5,0.866,0.5,65.04,1,800,0 +2003,11,20,23,30,0,0,-5,0.866,0.5,70.63,0,800,0 +2003,11,21,0,30,0,0,-5,0.866,0.8,76.41,0,800,0 +2003,11,21,1,30,0,0,-5,0.866,1.3,76.31,0,800,0 +2003,11,21,2,30,0,0,-5,0.866,1.7000000000000002,81.4,-1,800,0 +2003,11,21,3,30,0,0,-5,0.866,2,81.06,-1,800,0 +2003,11,21,4,30,0,0,-5,0.866,2.2,81.15,-1,800,0 +2003,11,21,5,30,0,0,-5,0.866,2.2,86.89,-2,800,0 +2003,11,21,6,30,0,0,-6,0.866,2,85.95,-2,800,0 +2003,11,21,7,30,3,0,-6,0.866,1.7000000000000002,79.51,-1,800,3 +2003,11,21,8,30,50,0,-5,0.866,1,64.88,1,790,50 +2003,11,21,9,30,163,85,-5,0.866,0.5,55.99,4,790,195 +2003,11,21,10,30,195,343,-6,0.866,0.8,44.08,7,790,353 +2003,11,21,11,30,89,826,-6,0.866,1,40.39,8,790,500 +2003,11,21,12,30,109,739,-6,0.866,1.1,37.84,9,790,469 +2003,11,21,13,30,138,538,-6,0.866,1.2000000000000002,38.54,9,790,369 +2003,11,21,14,30,94,546,-5,0.866,1.2000000000000002,42.4,8,790,272 +2003,11,21,15,30,69,214,-5,0.866,0.6000000000000001,50.19,6,790,108 +2003,11,21,16,30,9,0,-5,0.866,0.8,63.86,2,790,9 +2003,11,21,17,30,0,0,-5,0.866,1.7000000000000002,68.45,0,790,0 +2003,11,21,18,30,0,0,-5,0.866,2.3000000000000003,79.14,-1,790,0 +2003,11,21,19,30,0,0,-5,0.866,2.6,91.12,-2,790,0 +2003,11,21,20,30,0,0,-5,0.866,2.8000000000000003,96,-2,790,0 +2003,11,21,21,30,0,0,-5,0.866,2.9000000000000004,92.98,-3,790,0 +2003,11,21,22,30,0,0,-6,0.866,2.8000000000000003,90.3,-3,790,0 +2003,11,21,23,30,0,0,-6,0.866,2.6,87.65,-3,790,0 +2003,11,22,0,30,0,0,-7,0.866,2.7,84.43,-3,790,0 +2003,11,22,1,30,0,0,-7,0.866,2.9000000000000004,81.42,-3,790,0 +2003,11,22,2,30,0,0,-8,0.866,3,79.14,-3,790,0 +2003,11,22,3,30,0,0,-8,0.866,3.1,77.71000000000001,-3,790,0 +2003,11,22,4,30,0,0,-8,0.866,3.3000000000000003,76.2,-3,790,0 +2003,11,22,5,30,0,0,-8,0.866,3.5,74.52,-3,790,0 +2003,11,22,6,30,0,0,-9,0.866,4.1000000000000005,73.23,-3,790,0 +2003,11,22,7,30,6,0,-9,0.866,4.9,72.87,-3,790,6 +2003,11,22,8,30,35,0,-8,0.866,5.5,73.67,-3,790,35 +2003,11,22,9,30,105,0,-8,0.866,5.6000000000000005,74.93,-3,790,105 +2003,11,22,10,30,197,55,-9,0.866,6,73.34,-3,790,222 +2003,11,22,11,30,164,9,-9,0.866,6.800000000000001,68.78,-3,790,169 +2003,11,22,12,30,160,8,-11,0.866,7.7,70.95,-5,790,164 +2003,11,22,13,30,148,10,-13,0.866,7.300000000000001,64.75,-6,790,152 +2003,11,22,14,30,115,9,-14,0.866,5.6000000000000005,62.17,-7,790,118 +2003,11,22,15,30,58,0,-15,0.866,4.3,59.76,-7,790,58 +2003,11,22,16,30,0,0,-15,0.866,3.8000000000000003,62.620000000000005,-8,790,0 +2003,11,22,17,30,0,0,-16,0.866,3.6,60.050000000000004,-8,790,0 +2003,11,22,18,30,0,0,-16,0.866,3.4000000000000004,57.69,-8,790,0 +2003,11,22,19,30,0,0,-17,0.866,3.1,58.6,-9,790,0 +2003,11,22,20,30,0,0,-18,0.866,2.8000000000000003,54.32,-9,800,0 +2003,11,22,21,30,0,0,-19,0.866,2.5,54.47,-10,800,0 +2003,11,22,22,30,0,0,-20,0.866,2.3000000000000003,51.24,-10,800,0 +2003,11,22,23,30,0,0,-20,0.866,2.2,49.33,-10,800,0 +2003,11,23,0,30,0,0,-20,0.866,2.2,47.81,-10,800,0 +2003,11,23,1,30,0,0,-21,0.866,2.3000000000000003,46.38,-10,800,0 +2003,11,23,2,30,0,0,-21,0.866,2.5,45.2,-10,800,0 +2003,11,23,3,30,0,0,-21,0.866,2.7,44.26,-10,800,0 +2003,11,23,4,30,0,0,-21,0.866,2.8000000000000003,43.230000000000004,-10,800,0 +2003,11,23,5,30,0,0,-22,0.866,2.7,45.11,-11,800,0 +2003,11,23,6,30,0,0,-22,0.866,2.8000000000000003,44.230000000000004,-11,800,0 +2003,11,23,7,30,28,497,-22,0.866,3.8000000000000003,39.77,-10,800,71 +2003,11,23,8,30,56,801,-23,0.866,5,36.39,-9,800,251 +2003,11,23,9,30,72,919,-22,0.866,5.6000000000000005,33.79,-8,800,410 +2003,11,23,10,30,80,974,-22,0.866,5.800000000000001,32.4,-7,800,522 +2003,11,23,11,30,84,993,-21,0.866,5.9,32.21,-6,800,572 +2003,11,23,12,30,82,988,-20,0.866,5.9,32.43,-5,800,557 +2003,11,23,13,30,75,954,-20,0.866,5.7,34.7,-5,800,479 +2003,11,23,14,30,64,875,-19,0.866,5.300000000000001,36.7,-5,800,344 +2003,11,23,15,30,44,706,-18,0.866,4.4,41.11,-6,800,172 +2003,11,23,16,30,0,0,-18,0.866,3.9000000000000004,45.83,-7,800,0 +2003,11,23,17,30,0,0,-18,0.866,4.1000000000000005,50.88,-8,800,0 +2003,11,23,18,30,0,0,-17,0.866,4.2,52.32,-8,800,0 +2003,11,23,19,30,0,0,-17,0.866,3.9000000000000004,52.99,-8,800,0 +2003,11,23,20,30,0,0,-17,0.866,3.6,53.81,-8,800,0 +2003,11,23,21,30,0,0,-17,0.866,3.8000000000000003,54.47,-8,800,0 +2003,11,23,22,30,0,0,-17,0.866,4.2,55.71,-7,800,0 +2003,11,23,23,30,0,0,-16,0.866,4.4,53.52,-7,800,0 +2003,11,24,0,30,0,0,-16,0.866,4.4,55.88,-7,800,0 +2003,11,24,1,30,0,0,-15,0.866,4.1000000000000005,54.160000000000004,-6,800,0 +2003,11,24,2,30,0,0,-15,0.866,3.9000000000000004,56.58,-6,800,0 +2003,11,24,3,30,0,0,-14,0.866,3.7,58.7,-6,800,0 +2003,11,24,4,30,0,0,-14,0.866,3.7,55.7,-5,800,0 +2003,11,24,5,30,0,0,-14,0.866,3.7,56.980000000000004,-5,800,0 +2003,11,24,6,30,0,0,-13,0.866,3.7,53.96,-4,800,0 +2003,11,24,7,30,29,37,-13,0.866,3.8000000000000003,47.78,-2,800,32 +2003,11,24,8,30,64,528,-12,0.866,3.5,42.11,0,800,191 +2003,11,24,9,30,66,909,-10,0.866,3.1,44.07,2,800,398 +2003,11,24,10,30,74,964,-10,0.866,3,40.6,4,800,507 +2003,11,24,11,30,97,783,-9,0.866,2.8000000000000003,38.71,5,790,480 +2003,11,24,12,30,153,560,-9,0.866,2.8000000000000003,37.18,6,790,422 +2003,11,24,13,30,114,620,-7,0.866,2.8000000000000003,41.46,6,790,375 +2003,11,24,14,30,60,858,-8,0.866,2.8000000000000003,43.83,5,790,333 +2003,11,24,15,30,42,693,-9,0.866,2.5,47.13,3,790,166 +2003,11,24,16,30,0,0,-9,0.866,2.4000000000000004,51.230000000000004,1,790,0 +2003,11,24,17,30,0,0,-10,0.866,2.7,51.84,0,790,0 +2003,11,24,18,30,0,0,-10,0.866,3.1,50.33,0,790,0 +2003,11,24,19,30,0,0,-11,0.866,3.5,52.24,-1,790,0 +2003,11,24,20,30,0,0,-11,0.866,3.7,50.160000000000004,-1,790,0 +2003,11,24,21,30,0,0,-12,0.866,3.6,48.27,-1,790,0 +2003,11,24,22,30,0,0,-12,0.866,3.4000000000000004,46.89,-1,790,0 +2003,11,24,23,30,0,0,-13,0.866,2.7,45.92,-1,790,0 +2003,11,25,0,30,0,0,-12,0.866,1.8,46.21,-1,790,0 +2003,11,25,1,30,0,0,-12,0.866,1,50.79,-2,790,0 +2003,11,25,2,30,0,0,-12,0.866,0.4,55.230000000000004,-3,790,0 +2003,11,25,3,30,0,0,-12,0.866,0.4,55.300000000000004,-3,790,0 +2003,11,25,4,30,0,0,-12,0.866,0.9,55.32,-3,790,0 +2003,11,25,5,30,0,0,-12,0.866,1.2000000000000002,59.78,-4,790,0 +2003,11,25,6,30,0,0,-12,0.866,1.4000000000000001,55.29,-3,790,0 +2003,11,25,7,30,27,408,-12,0.866,1.9000000000000001,51.65,-2,790,60 +2003,11,25,8,30,57,723,-11,0.866,2.4000000000000004,47.01,0,790,228 +2003,11,25,9,30,75,847,-11,0.866,2.5,42.86,1,790,381 +2003,11,25,10,30,84,907,-10,0.866,2,44.92,2,790,489 +2003,11,25,11,30,84,941,-10,0.866,1.4000000000000001,43,3,790,541 +2003,11,25,12,30,84,932,-10,0.866,1.5,40.28,4,790,528 +2003,11,25,13,30,79,893,-9,0.866,2.1,40.75,4,790,453 +2003,11,25,14,30,65,822,-8,0.866,2.2,47.63,3,790,325 +2003,11,25,15,30,47,639,-8,0.866,1.5,57.160000000000004,1,790,160 +2003,11,25,16,30,0,0,-9,0.866,0.9,61.6,-1,790,0 +2003,11,25,17,30,0,0,-9,0.866,0.8,64.34,-2,790,0 +2003,11,25,18,30,0,0,-9,0.866,0.7000000000000001,68.49,-3,790,0 +2003,11,25,19,30,0,0,-10,0.866,0.5,67,-3,790,0 +2003,11,25,20,30,0,0,-10,0.866,0.4,65.97,-3,790,0 +2003,11,25,21,30,0,0,-10,0.866,0.6000000000000001,65.13,-3,790,0 +2003,11,25,22,30,0,0,-10,0.866,0.8,64.24,-3,790,0 +2003,11,25,23,30,0,0,-10,0.866,1.1,63.190000000000005,-3,790,0 +2003,11,26,0,30,0,0,-11,0.866,1.4000000000000001,61.93,-3,790,0 +2003,11,26,1,30,0,0,-11,0.866,1.5,60.14,-3,790,0 +2003,11,26,2,30,0,0,-11,0.866,1.6,62.65,-3,790,0 +2003,11,26,3,30,0,0,-12,0.866,1.6,60.24,-4,790,0 +2003,11,26,4,30,0,0,-12,0.866,1.7000000000000002,58.13,-4,790,0 +2003,11,26,5,30,0,0,-13,0.866,1.7000000000000002,61.31,-5,790,0 +2003,11,26,6,30,0,0,-13,0.866,1.7000000000000002,60.47,-5,790,0 +2003,11,26,7,30,25,448,-13,0.866,2.2,56.53,-4,790,60 +2003,11,26,8,30,49,797,-12,0.866,3.5,51.230000000000004,-2,790,235 +2003,11,26,9,30,62,918,-12,0.866,4.4,43.39,0,790,391 +2003,11,26,10,30,70,972,-13,0.866,4.2,35.730000000000004,0,790,500 +2003,11,26,11,30,74,986,-13,0.866,3.7,34.43,1,790,550 +2003,11,26,12,30,76,970,-13,0.866,3.2,34.410000000000004,1,790,535 +2003,11,26,13,30,172,337,-13,0.866,2.9000000000000004,34.92,1,790,312 +2003,11,26,14,30,66,679,-13,0.866,2.4000000000000004,38.94,0,790,280 +2003,11,26,15,30,66,182,-12,0.866,1.7000000000000002,49.74,-1,790,98 +2003,11,26,16,30,0,0,-12,0.866,1.5,52.86,-2,790,0 +2003,11,26,17,30,0,0,-12,0.866,1.6,56.77,-3,800,0 +2003,11,26,18,30,0,0,-12,0.866,1.6,56.67,-3,800,0 +2003,11,26,19,30,0,0,-12,0.866,1.3,60.26,-4,800,0 +2003,11,26,20,30,0,0,-12,0.866,1,59.44,-4,800,0 +2003,11,26,21,30,0,0,-12,0.866,0.9,62.910000000000004,-5,800,0 +2003,11,26,22,30,0,0,-13,0.866,0.9,60.03,-5,800,0 +2003,11,26,23,30,0,0,-13,0.866,1,62.04,-6,800,0 +2003,11,27,0,30,0,0,-14,0.866,1.2000000000000002,64.21000000000001,-7,800,0 +2003,11,27,1,30,0,0,-14,0.866,1.4000000000000001,62.02,-7,800,0 +2003,11,27,2,30,0,0,-15,0.866,1.7000000000000002,66.19,-8,800,0 +2003,11,27,3,30,0,0,-15,0.866,2.1,66.03,-8,800,0 +2003,11,27,4,30,0,0,-15,0.866,2.7,61.230000000000004,-7,800,0 +2003,11,27,5,30,0,0,-15,0.866,2.9000000000000004,61.7,-7,810,0 +2003,11,27,6,30,0,0,-15,0.866,3,60.83,-7,810,0 +2003,11,27,7,30,23,479,-15,0.866,3.5,54.89,-6,810,59 +2003,11,27,8,30,47,811,-14,0.866,4.1000000000000005,49.160000000000004,-4,810,234 +2003,11,27,9,30,60,930,-15,0.866,4.6000000000000005,39.86,-2,810,390 +2003,11,27,10,30,68,982,-16,0.866,4.800000000000001,30.94,0,810,500 +2003,11,27,11,30,72,1000,-17,0.866,4.800000000000001,29.69,0,810,552 +2003,11,27,12,30,72,992,-17,0.866,4.800000000000001,29.38,0,810,539 +2003,11,27,13,30,67,960,-17,0.866,4.7,30.13,0,810,464 +2003,11,27,14,30,57,888,-16,0.866,4.3,31.400000000000002,0,810,335 +2003,11,27,15,30,40,727,-16,0.866,3.2,38.42,-2,810,167 +2003,11,27,16,30,0,0,-15,0.866,2.4000000000000004,46.2,-4,810,0 +2003,11,27,17,30,0,0,-15,0.866,2.3000000000000003,49.47,-5,810,0 +2003,11,27,18,30,0,0,-15,0.866,2.5,53.46,-6,810,0 +2003,11,27,19,30,0,0,-15,0.866,2.6,52.92,-6,810,0 +2003,11,27,20,30,0,0,-16,0.866,2.7,56.14,-7,810,0 +2003,11,27,21,30,0,0,-16,0.866,2.8000000000000003,55.02,-7,810,0 +2003,11,27,22,30,0,0,-16,0.866,3,53.730000000000004,-7,810,0 +2003,11,27,23,30,0,0,-16,0.866,3.3000000000000003,52.51,-7,810,0 +2003,11,28,0,30,0,0,-17,0.866,3.5,51.08,-7,810,0 +2003,11,28,1,30,0,0,-17,0.866,3.7,49.94,-7,810,0 +2003,11,28,2,30,0,0,-17,0.866,3.9000000000000004,48.69,-7,810,0 +2003,11,28,3,30,0,0,-18,0.866,4,47.59,-7,810,0 +2003,11,28,4,30,0,0,-18,0.866,4.1000000000000005,43.480000000000004,-6,810,0 +2003,11,28,5,30,0,0,-18,0.866,4.2,43.44,-6,810,0 +2003,11,28,6,30,0,0,-18,0.866,4.1000000000000005,40.81,-5,810,0 +2003,11,28,7,30,24,257,-17,0.866,4,37.15,-3,810,43 +2003,11,28,8,30,46,641,-15,0.866,3.9000000000000004,33.93,-1,810,192 +2003,11,28,9,30,69,718,-14,0.866,3.9000000000000004,32.64,2,810,322 +2003,11,28,10,30,73,814,-13,0.866,3.7,28.82,5,810,429 +2003,11,28,11,30,78,943,-11,0.866,3.5,28.42,7,810,527 +2003,11,28,12,30,10,0,-10,0.866,3.3000000000000003,29.52,8,810,10 +2003,11,28,13,30,123,569,-8,0.866,2.9000000000000004,36.11,7,810,357 +2003,11,28,14,30,71,644,-6,0.866,2.5,45.71,6,810,271 +2003,11,28,15,30,45,487,-7,0.866,2.3000000000000003,50.980000000000004,4,810,129 +2003,11,28,16,30,0,0,-7,0.866,2.7,55.92,1,810,0 +2003,11,28,17,30,0,0,-8,0.866,3.5,57.410000000000004,0,810,0 +2003,11,28,18,30,0,0,-9,0.866,4.2,53.89,0,810,0 +2003,11,28,19,30,0,0,-10,0.866,4.5,52.43,0,810,0 +2003,11,28,20,30,0,0,-11,0.866,4.5,43.45,0,810,0 +2003,11,28,21,30,0,0,-12,0.866,4.4,40.02,0,800,0 +2003,11,28,22,30,0,0,-13,0.866,4.3,38.03,0,800,0 +2003,11,28,23,30,0,0,-13,0.866,4.4,37.02,0,800,0 +2003,11,29,0,30,0,0,-14,0.866,4.6000000000000005,36.51,0,800,0 +2003,11,29,1,30,0,0,-14,0.866,4.7,33.64,0,800,0 +2003,11,29,2,30,0,0,-14,0.866,4.800000000000001,33.38,1,800,0 +2003,11,29,3,30,0,0,-14,0.866,4.9,33.18,1,800,0 +2003,11,29,4,30,0,0,-14,0.866,4.800000000000001,33.06,1,800,0 +2003,11,29,5,30,0,0,-14,0.866,4.800000000000001,33.160000000000004,1,800,0 +2003,11,29,6,30,0,0,-14,0.866,4.7,33.34,1,800,0 +2003,11,29,7,30,19,0,-13,0.866,4.5,34.1,2,800,19 +2003,11,29,8,30,81,9,-12,0.866,4.2,33.76,4,800,83 +2003,11,29,9,30,38,0,-9,0.866,4.3,33.54,7,800,38 +2003,11,29,10,30,62,937,-9,0.866,4.7,26.87,10,800,469 +2003,11,29,11,30,72,938,-8,0.866,4.6000000000000005,28.44,11,800,517 +2003,11,29,12,30,73,925,-6,0.866,4,30.96,12,800,504 +2003,11,29,13,30,131,1,-3,0.866,3.4000000000000004,42.38,11,800,132 +2003,11,29,14,30,72,0,-3,0.866,2.9000000000000004,43.69,10,800,72 +2003,11,29,15,30,12,0,-4,0.866,2.4000000000000004,46.24,8,800,12 +2003,11,29,16,30,0,0,-5,0.866,2.1,49.52,6,800,0 +2003,11,29,17,30,0,0,-6,0.866,2,54.230000000000004,4,800,0 +2003,11,29,18,30,0,0,-6,0.866,2.2,52.36,4,800,0 +2003,11,29,19,30,0,0,-7,0.866,2.4000000000000004,54.56,3,800,0 +2003,11,29,20,30,0,0,-7,0.866,2.6,53.33,3,800,0 +2003,11,29,21,30,0,0,-7,0.866,2.8000000000000003,53.34,3,800,0 +2003,11,29,22,30,0,0,-7,0.866,2.8000000000000003,54.42,3,800,0 +2003,11,29,23,30,0,0,-6,0.866,2.9000000000000004,55.36,3,800,0 +2003,11,30,0,30,0,0,-6,0.866,2.8000000000000003,56.01,3,800,0 +2003,11,30,1,30,0,0,-6,0.866,2.7,56.9,3,800,0 +2003,11,30,2,30,0,0,-5,0.866,2.5,59.6,4,800,0 +2003,11,30,3,30,0,0,-5,0.866,2.1,57.910000000000004,4,800,0 +2003,11,30,4,30,0,0,-4,0.866,1.9000000000000001,60.1,4,800,0 +2003,11,30,5,30,0,0,-4,0.866,1.7000000000000002,61.76,4,800,0 +2003,11,30,6,30,0,0,-4,0.866,1.7000000000000002,62.83,4,800,0 +2003,11,30,7,30,22,273,-4,0.866,1.6,59.45,5,800,39 +2003,11,30,8,30,54,560,-3,0.866,1.2000000000000002,53.99,7,810,177 +2003,11,30,9,30,88,616,-2,0.866,0.6000000000000001,55.13,9,810,301 +2003,11,30,10,30,95,715,-1,0.866,0.7000000000000001,56.160000000000004,10,810,403 +2003,11,30,11,30,90,0,0,0.866,1.4000000000000001,55.1,10,810,90 +2003,11,30,12,30,50,0,0,0.866,1.8,53.08,11,810,50 +2003,11,30,13,30,31,0,0,0.866,1.8,49.96,12,810,31 +2003,11,30,14,30,11,0,0,0.866,1.7000000000000002,53.36,11,810,11 +2003,11,30,15,30,65,108,0,0.866,1.7000000000000002,66.91,8,810,83 +2003,11,30,16,30,0,0,0,0.866,1.7000000000000002,80.19,5,810,0 +2003,11,30,17,30,0,0,0,0.866,1.5,88.94,3,810,0 +2003,11,30,18,30,0,0,-1,0.866,1.1,92.71000000000001,1,810,0 +2003,11,30,19,30,0,0,-1,0.866,0.6000000000000001,90.49,1,810,0 +2003,11,30,20,30,0,0,-1,0.866,0.4,89.92,1,810,0 +2003,11,30,21,30,0,0,-1,0.866,0.6000000000000001,90.27,1,810,0 +2003,11,30,22,30,0,0,-1,0.866,0.9,90.58,0,810,0 +2003,11,30,23,30,0,0,-1,0.866,1.3,96.61,0,810,0 +2003,12,1,0,30,0,0,-1,0.866,1.9000000000000001,93.78,0,810,0 +2003,12,1,1,30,0,0,-2,0.866,2.4000000000000004,95.58,0,810,0 +2003,12,1,2,30,0,0,-3,0.866,2.7,90.45,0,810,0 +2003,12,1,3,30,0,0,-3,0.866,2.5,86.78,0,810,0 +2003,12,1,4,30,0,0,-4,0.866,1.8,89.89,-1,810,0 +2003,12,1,5,30,0,0,-5,0.866,1.2000000000000002,91.33,-2,810,0 +2003,12,1,6,30,0,0,-6,0.866,1.1,78.7,-1,810,0 +2003,12,1,7,30,22,131,-7,0.866,1.2000000000000002,67.3,0,810,30 +2003,12,1,8,30,86,150,-7,0.866,1.5,56.2,1,810,119 +2003,12,1,9,30,97,567,-7,0.866,1.4000000000000001,49.18,4,810,291 +2003,12,1,10,30,68,830,-8,0.866,0.7000000000000001,37.26,7,810,424 +2003,12,1,11,30,84,807,-9,0.866,0.4,29.900000000000002,10,810,463 +2003,12,1,12,30,125,638,-9,0.866,1,27.2,11,810,419 +2003,12,1,13,30,94,679,-9,0.866,1.5,27.64,10,810,369 +2003,12,1,14,30,112,354,-8,0.866,1.5,31.19,9,810,221 +2003,12,1,15,30,36,598,-6,0.866,1,44.92,6,810,137 +2003,12,1,16,30,0,0,-7,0.866,0.30000000000000004,54.47,2,810,0 +2003,12,1,17,30,0,0,-7,0.147,0.30000000000000004,55.660000000000004,1,810,0 +2003,12,1,18,30,0,0,-8,0.147,0.7000000000000001,52.49,1,810,0 +2003,12,1,19,30,0,0,-9,0.147,1.1,48.22,1,810,0 +2003,12,1,20,30,0,0,-10,0.147,1.5,43.730000000000004,1,810,0 +2003,12,1,21,30,0,0,-11,0.147,1.8,40.37,2,810,0 +2003,12,1,22,30,0,0,-12,0.147,2,38.77,2,810,0 +2003,12,1,23,30,0,0,-12,0.147,2.1,39.39,2,810,0 +2003,12,2,0,30,0,0,-11,0.147,2.3000000000000003,41.26,2,810,0 +2003,12,2,1,30,0,0,-10,0.147,2.3000000000000003,40.980000000000004,3,800,0 +2003,12,2,2,30,0,0,-10,0.147,2,43.56,3,800,0 +2003,12,2,3,30,0,0,-9,0.147,1.8,45.31,3,800,0 +2003,12,2,4,30,0,0,-9,0.147,1.7000000000000002,46.39,3,800,0 +2003,12,2,5,30,0,0,-9,0.147,1.7000000000000002,46.82,3,800,0 +2003,12,2,6,30,0,0,-9,0.147,1.7000000000000002,46.44,3,800,0 +2003,12,2,7,30,19,388,-9,0.147,1.6,43.04,4,800,41 +2003,12,2,8,30,42,733,-8,0.147,1.7000000000000002,41.17,6,800,200 +2003,12,2,9,30,55,854,-6,0.147,2.2,36.5,9,800,346 +2003,12,2,10,30,64,904,-6,0.147,2.9000000000000004,34.24,10,800,449 +2003,12,2,11,30,22,0,-7,0.147,3.5,32.18,10,800,22 +2003,12,2,12,30,186,387,-7,0.147,4.1000000000000005,31.810000000000002,10,800,364 +2003,12,2,13,30,179,245,-8,0.147,4.800000000000001,33.32,9,800,277 +2003,12,2,14,30,53,829,-9,0.147,5.2,32.8,8,800,305 +2003,12,2,15,30,37,666,-9,0.147,4.2,36.13,6,800,149 +2003,12,2,16,30,0,0,-8,0.147,2.8000000000000003,48.1,3,810,0 +2003,12,2,17,30,0,0,-7,0.145,2.6,55.18,1,810,0 +2003,12,2,18,30,0,0,-7,0.145,2.8000000000000003,57.730000000000004,1,810,0 +2003,12,2,19,30,0,0,-7,0.145,2.7,61.31,0,810,0 +2003,12,2,20,30,0,0,-8,0.145,2.5,57.92,0,810,0 +2003,12,2,21,30,0,0,-9,0.145,2.3000000000000003,58.120000000000005,0,810,0 +2003,12,2,22,30,0,0,-9,0.145,2.3000000000000003,55.53,0,810,0 +2003,12,2,23,30,0,0,-9,0.145,2.6,58.78,-1,810,0 +2003,12,3,0,30,0,0,-9,0.145,3,60.36,-1,810,0 +2003,12,3,1,30,0,0,-8,0.145,3.2,64.28,-1,810,0 +2003,12,3,2,30,0,0,-8,0.145,3.3000000000000003,67.63,-1,810,0 +2003,12,3,3,30,0,0,-7,0.145,3.3000000000000003,74.58,-2,810,0 +2003,12,3,4,30,0,0,-7,0.145,3.3000000000000003,74.59,-2,810,0 +2003,12,3,5,30,0,0,-7,0.145,3.2,73.74,-2,810,0 +2003,12,3,6,30,0,0,-8,0.145,3,67.53,-1,810,0 +2003,12,3,7,30,12,0,-8,0.145,3,57.42,0,810,12 +2003,12,3,8,30,18,0,-8,0.145,2.9000000000000004,50.9,2,810,18 +2003,12,3,9,30,125,15,-8,0.145,2.3000000000000003,43.550000000000004,5,810,130 +2003,12,3,10,30,89,0,-8,0.145,1.3,34.12,8,800,89 +2003,12,3,11,30,146,4,-9,0.145,0.5,30.66,9,800,148 +2003,12,3,12,30,22,0,-9,0.145,0.30000000000000004,28.28,10,800,22 +2003,12,3,13,30,101,0,-9,0.145,0.7000000000000001,30.59,9,800,101 +2003,12,3,14,30,102,429,-8,0.145,0.9,34.15,8,800,232 +2003,12,3,15,30,58,262,-7,0.145,0.5,47.78,5,800,102 +2003,12,3,16,30,0,0,-6,0.145,0.1,56.51,3,800,0 +2003,12,3,17,30,0,0,-6,0.145,0.1,59.54,2,800,0 +2003,12,3,18,30,0,0,-7,0.145,0.4,58.31,1,800,0 +2003,12,3,19,30,0,0,-7,0.145,0.8,56.63,1,800,0 +2003,12,3,20,30,0,0,-7,0.145,1.1,55.61,0,800,0 +2003,12,3,21,30,0,0,-7,0.145,1.2000000000000002,59.5,0,800,0 +2003,12,3,22,30,0,0,-7,0.145,1.2000000000000002,59.45,0,800,0 +2003,12,3,23,30,0,0,-7,0.145,1.5,63.72,0,800,0 +2003,12,4,0,30,0,0,-7,0.145,2.1,63.63,0,800,0 +2003,12,4,1,30,0,0,-8,0.145,2.4000000000000004,68.4,0,800,0 +2003,12,4,2,30,0,0,-8,0.145,2.3000000000000003,68.23,-1,800,0 +2003,12,4,3,30,0,0,-8,0.145,2.1,68.37,-1,800,0 +2003,12,4,4,30,0,0,-7,0.145,1.8,69.18,-1,800,0 +2003,12,4,5,30,0,0,-7,0.145,1.3,70.51,-1,810,0 +2003,12,4,6,30,0,0,-7,0.145,1.1,77.51,-2,810,0 +2003,12,4,7,30,19,338,-7,0.145,1.8,68.1,-1,810,37 +2003,12,4,8,30,47,692,-6,0.145,3.4000000000000004,61.01,0,810,191 +2003,12,4,9,30,62,823,-6,0.145,4.1000000000000005,61.72,1,810,337 +2003,12,4,10,30,82,0,-7,0.145,3.8000000000000003,58.65,2,810,82 +2003,12,4,11,30,73,0,-7,0.145,3.2,52.120000000000005,3,810,73 +2003,12,4,12,30,125,0,-8,0.145,2.9000000000000004,46.71,4,810,125 +2003,12,4,13,30,95,0,-8,0.145,2.9000000000000004,45.39,4,810,95 +2003,12,4,14,30,87,0,-8,0.145,2.9000000000000004,47.96,3,810,87 +2003,12,4,15,30,43,0,-8,0.145,2.4000000000000004,51.31,1,810,43 +2003,12,4,16,30,0,0,-8,0.145,1.7000000000000002,64.09,-1,810,0 +2003,12,4,17,30,0,0,-8,0.145,1.2000000000000002,69.24,-2,810,0 +2003,12,4,18,30,0,0,-8,0.145,0.7000000000000001,75.24,-3,810,0 +2003,12,4,19,30,0,0,-8,0.145,0.5,81.13,-4,810,0 +2003,12,4,20,30,0,0,-8,0.145,0.5,80.29,-4,810,0 +2003,12,4,21,30,0,0,-9,0.145,0.5,85.12,-4,810,0 +2003,12,4,22,30,0,0,-9,0.145,0.5,83.32000000000001,-5,810,0 +2003,12,4,23,30,0,0,-9,0.145,0.7000000000000001,81.26,-5,810,0 +2003,12,5,0,30,0,0,-10,0.145,1,78.88,-5,810,0 +2003,12,5,1,30,0,0,-10,0.145,1.1,75.81,-5,810,0 +2003,12,5,2,30,0,0,-11,0.145,1,71.85000000000001,-5,810,0 +2003,12,5,3,30,0,0,-12,0.145,0.9,67.21000000000001,-5,810,0 +2003,12,5,4,30,0,0,-12,0.145,0.8,62.84,-5,810,0 +2003,12,5,5,30,0,0,-13,0.145,0.7000000000000001,58.65,-5,810,0 +2003,12,5,6,30,0,0,-14,0.145,0.8,54.86,-5,810,0 +2003,12,5,7,30,20,0,-15,0.145,1.1,44.4,-3,810,20 +2003,12,5,8,30,81,119,-15,0.145,1.5,31.2,0,810,106 +2003,12,5,9,30,127,344,-18,0.145,2.1,22.61,2,810,241 +2003,12,5,10,30,162,403,-19,0.145,2.7,17.650000000000002,5,810,330 +2003,12,5,11,30,172,462,-19,0.145,3,16.4,6,810,384 +2003,12,5,12,30,173,439,-19,0.145,3.3000000000000003,15.370000000000001,7,810,372 +2003,12,5,13,30,160,349,-18,0.145,3.4000000000000004,15.82,7,810,300 +2003,12,5,14,30,49,850,-17,0.145,2.9000000000000004,19.81,5,810,305 +2003,12,5,15,30,51,380,-13,0.145,1.9000000000000001,34.47,2,810,114 +2003,12,5,16,30,0,0,-14,0.145,1.1,35.74,0,810,0 +2003,12,5,17,30,0,0,-14,0.145,0.7000000000000001,39.29,0,810,0 +2003,12,5,18,30,0,0,-13,0.145,0.5,41.64,0,810,0 +2003,12,5,19,30,0,0,-12,0.145,0.5,39.78,0,810,0 +2003,12,5,20,30,0,0,-12,0.145,0.7000000000000001,41.71,0,810,0 +2003,12,5,21,30,0,0,-11,0.145,1,42.34,1,800,0 +2003,12,5,22,30,0,0,-9,0.145,1.1,47.22,0,800,0 +2003,12,5,23,30,0,0,-9,0.145,1.1,54.17,0,800,0 +2003,12,6,0,30,0,0,-8,0.145,1.1,54.74,0,800,0 +2003,12,6,1,30,0,0,-8,0.145,1.2000000000000002,55.03,0,800,0 +2003,12,6,2,30,0,0,-8,0.145,1.1,51.71,0,800,0 +2003,12,6,3,30,0,0,-8,0.145,0.9,51.56,1,800,0 +2003,12,6,4,30,0,0,-8,0.145,0.9,51.38,1,800,0 +2003,12,6,5,30,0,0,-8,0.145,1.2000000000000002,50.85,2,800,0 +2003,12,6,6,30,0,0,-9,0.145,1.9000000000000001,49.96,2,800,0 +2003,12,6,7,30,20,0,-9,0.145,2.5,45.52,3,800,20 +2003,12,6,8,30,78,196,-9,0.145,2.6,40.87,5,800,118 +2003,12,6,9,30,135,260,-7,0.145,2.4000000000000004,39.5,7,800,221 +2003,12,6,10,30,169,358,-5,0.145,2,38.82,10,800,318 +2003,12,6,11,30,208,87,-2,0.145,1.5,43.85,11,800,248 +2003,12,6,12,30,210,154,-1,0.145,1.1,43.79,12,800,279 +2003,12,6,13,30,175,84,0,0.145,1.1,49.63,11,800,209 +2003,12,6,14,30,127,143,0,0.145,0.9,53.84,10,800,170 +2003,12,6,15,30,55,305,-1,0.145,0.6000000000000001,63.65,7,800,106 +2003,12,6,16,30,0,0,-2,0.145,0.7000000000000001,66.54,5,800,0 +2003,12,6,17,30,0,0,-3,0.145,0.8,67.01,4,800,0 +2003,12,6,18,30,0,0,-3,0.145,1,64.62,4,800,0 +2003,12,6,19,30,0,0,-4,0.145,1.4000000000000001,67.5,3,800,0 +2003,12,6,20,30,0,0,-4,0.145,1.6,70.56,2,800,0 +2003,12,6,21,30,0,0,-5,0.145,1.6,68.01,2,800,0 +2003,12,6,22,30,0,0,-5,0.145,1.5,65.58,2,800,0 +2003,12,6,23,30,0,0,-6,0.145,1.4000000000000001,63.96,2,800,0 +2003,12,7,0,30,0,0,-6,0.145,1.3,62.870000000000005,2,800,0 +2003,12,7,1,30,0,0,-6,0.145,1.3,62.08,1,800,0 +2003,12,7,2,30,0,0,-6,0.145,1.3,62.15,1,800,0 +2003,12,7,3,30,0,0,-6,0.145,1.4000000000000001,62.85,1,800,0 +2003,12,7,4,30,0,0,-5,0.145,1.4000000000000001,64.02,1,800,0 +2003,12,7,5,30,0,0,-5,0.145,1.4000000000000001,65.22,1,800,0 +2003,12,7,6,30,0,0,-5,0.145,1.4000000000000001,66.27,1,800,0 +2003,12,7,7,30,29,0,-5,0.145,1.3,63.1,2,800,29 +2003,12,7,8,30,42,681,-4,0.145,1.7000000000000002,58.26,5,800,179 +2003,12,7,9,30,54,829,-3,0.145,2.7,51.1,8,800,325 +2003,12,7,10,30,60,894,-3,0.145,3.2,45.12,10,790,430 +2003,12,7,11,30,62,923,-3,0.145,3.2,41.25,11,790,483 +2003,12,7,12,30,64,917,-3,0.145,3,38.6,12,790,476 +2003,12,7,13,30,61,884,-3,0.145,2.9000000000000004,41.5,11,790,411 +2003,12,7,14,30,51,817,-2,0.145,2.5,45.980000000000004,10,790,296 +2003,12,7,15,30,37,645,-3,0.145,1.9000000000000001,52.26,8,790,143 +2003,12,7,16,30,0,0,-3,0.145,1.5,61.76,5,790,0 +2003,12,7,17,30,0,0,-3,0.145,1.6,70.8,3,790,0 +2003,12,7,18,30,0,0,-3,0.145,1.6,76.36,2,790,0 +2003,12,7,19,30,0,0,-3,0.145,1.5,76.11,2,790,0 +2003,12,7,20,30,0,0,-3,0.145,1.3,75.36,2,790,0 +2003,12,7,21,30,0,0,-4,0.145,1,74.27,1,790,0 +2003,12,7,22,30,0,0,-4,0.145,0.8,74.11,1,790,0 +2003,12,7,23,30,0,0,-3,0.145,0.7000000000000001,75.55,1,790,0 +2003,12,8,0,30,0,0,-3,0.145,0.5,77.32000000000001,1,790,0 +2003,12,8,1,30,0,0,-3,0.145,0.8,79.19,1,790,0 +2003,12,8,2,30,0,0,-2,0.145,1.1,82.4,0,790,0 +2003,12,8,3,30,0,0,-1,0.145,1.1,92.98,0,790,0 +2003,12,8,4,30,0,0,-1,0.145,1.2000000000000002,95.61,0,790,0 +2003,12,8,5,30,0,0,-2,0.145,1.7000000000000002,100,0,790,0 +2003,12,8,6,30,0,0,-2,0.145,2,100,0,790,0 +2003,12,8,7,30,0,0,-2,0.145,2.4000000000000004,91.99,0,790,0 +2003,12,8,8,30,4,0,-2,0.145,3.2,91.31,0,790,4 +2003,12,8,9,30,31,0,-2,0.145,3.9000000000000004,89.48,0,790,31 +2003,12,8,10,30,8,0,-3,0.145,4.3,85.62,0,790,8 +2003,12,8,11,30,118,0,-3,0.145,4.1000000000000005,81.76,0,790,118 +2003,12,8,12,30,22,0,-4,0.145,4.1000000000000005,78.8,0,790,22 +2003,12,8,13,30,121,0,-4,0.145,4.1000000000000005,82.43,0,790,121 +2003,12,8,14,30,79,0,-4,0.145,4,80.29,0,790,79 +2003,12,8,15,30,13,0,-5,0.145,3.8000000000000003,84.13,-1,790,13 +2003,12,8,16,30,0,0,-5,0.145,3.7,87.53,-2,790,0 +2003,12,8,17,30,0,0,-6,0.866,3.8000000000000003,89.68,-3,800,0 +2003,12,8,18,30,0,0,-7,0.866,4.1000000000000005,84.2,-3,800,0 +2003,12,8,19,30,0,0,-7,0.866,4.2,85.86,-4,800,0 +2003,12,8,20,30,0,0,-8,0.866,4.2,82.09,-4,800,0 +2003,12,8,21,30,0,0,-9,0.866,4.1000000000000005,85.36,-4,800,0 +2003,12,8,22,30,0,0,-9,0.866,4,82.86,-5,800,0 +2003,12,8,23,30,0,0,-9,0.866,3.7,80.67,-5,800,0 +2003,12,9,0,30,0,0,-10,0.866,3.3000000000000003,77.89,-5,800,0 +2003,12,9,1,30,0,0,-10,0.866,2.8000000000000003,74.4,-5,800,0 +2003,12,9,2,30,0,0,-11,0.866,2,76.63,-6,800,0 +2003,12,9,3,30,0,0,-11,0.866,1.3,73.12,-6,800,0 +2003,12,9,4,30,0,0,-12,0.866,1,75.17,-7,800,0 +2003,12,9,5,30,0,0,-13,0.866,1.1,71.4,-7,800,0 +2003,12,9,6,30,0,0,-13,0.866,1.4000000000000001,68.03,-7,800,0 +2003,12,9,7,30,29,0,-14,0.866,2.1,60.81,-6,800,29 +2003,12,9,8,30,47,723,-13,0.866,2.8000000000000003,52.72,-3,800,189 +2003,12,9,9,30,63,873,-11,0.866,3.3000000000000003,50.65,-1,800,345 +2003,12,9,10,30,71,946,-11,0.866,3.6,44.54,0,800,459 +2003,12,9,11,30,73,978,-11,0.866,3.7,44.99,0,800,516 +2003,12,9,12,30,72,979,-11,0.866,3.8000000000000003,44.39,0,800,509 +2003,12,9,13,30,66,951,-11,0.866,3.6,43.94,0,800,441 +2003,12,9,14,30,54,887,-11,0.866,3,47.31,0,800,318 +2003,12,9,15,30,38,726,-11,0.866,1.8,54.96,-2,800,157 +2003,12,9,16,30,0,0,-12,0.866,1,63.24,-5,800,0 +2003,12,9,17,30,0,0,-13,0.866,0.7000000000000001,63.980000000000004,-6,800,0 +2003,12,9,18,30,0,0,-13,0.866,0.7000000000000001,67.73,-7,800,0 +2003,12,9,19,30,0,0,-14,0.866,1,66.23,-7,800,0 +2003,12,9,20,30,0,0,-14,0.866,1.5,64.5,-7,800,0 +2003,12,9,21,30,0,0,-14,0.866,1.7000000000000002,62.4,-7,800,0 +2003,12,9,22,30,0,0,-15,0.866,1.9000000000000001,59.96,-7,800,0 +2003,12,9,23,30,0,0,-15,0.866,2,57.42,-7,800,0 +2003,12,10,0,30,0,0,-16,0.866,2,55.67,-7,800,0 +2003,12,10,1,30,0,0,-16,0.866,1.8,50.61,-6,800,0 +2003,12,10,2,30,0,0,-16,0.866,1.7000000000000002,47.2,-5,800,0 +2003,12,10,3,30,0,0,-16,0.866,1.6,45.11,-4,800,0 +2003,12,10,4,30,0,0,-15,0.866,1.5,47.2,-4,800,0 +2003,12,10,5,30,0,0,-15,0.866,1.4000000000000001,47.68,-4,800,0 +2003,12,10,6,30,0,0,-16,0.866,1.5,48.24,-5,800,0 +2003,12,10,7,30,27,0,-17,0.866,1.9000000000000001,40.480000000000004,-4,800,27 +2003,12,10,8,30,43,730,-16,0.866,1.9000000000000001,33.74,-1,800,185 +2003,12,10,9,30,59,876,-15,0.866,1.5,33.660000000000004,1,800,339 +2003,12,10,10,30,68,940,-13,0.866,1.3,35.33,2,800,452 +2003,12,10,11,30,73,966,-13,0.866,1.4000000000000001,34.230000000000004,3,800,508 +2003,12,10,12,30,72,963,-12,0.866,1.6,32.38,4,790,502 +2003,12,10,13,30,68,931,-12,0.866,1.9000000000000001,35.82,3,790,434 +2003,12,10,14,30,59,844,-11,0.866,2.2,40.54,2,790,310 +2003,12,10,15,30,62,116,-10,0.866,1.9000000000000001,51.300000000000004,0,790,82 +2003,12,10,16,30,0,0,-11,0.866,1.4000000000000001,61.120000000000005,-3,800,0 +2003,12,10,17,30,0,0,-11,0.866,1.1,64.84,-4,800,0 +2003,12,10,18,30,0,0,-11,0.866,1,66.3,-4,800,0 +2003,12,10,19,30,0,0,-11,0.866,1.2000000000000002,72.32000000000001,-5,800,0 +2003,12,10,20,30,0,0,-11,0.866,1.4000000000000001,66.68,-4,800,0 +2003,12,10,21,30,0,0,-11,0.866,1.6,66.06,-4,800,0 +2003,12,10,22,30,0,0,-11,0.866,1.9000000000000001,65.47,-4,800,0 +2003,12,10,23,30,0,0,-11,0.866,2.1,64.93,-4,790,0 +2003,12,11,0,30,0,0,-11,0.866,2.2,64.31,-4,790,0 +2003,12,11,1,30,0,0,-11,0.866,2.2,63.71,-4,790,0 +2003,12,11,2,30,0,0,-11,0.866,2.1,63.38,-4,790,0 +2003,12,11,3,30,0,0,-11,0.866,2,63.230000000000004,-4,790,0 +2003,12,11,4,30,0,0,-11,0.866,1.8,62.85,-4,790,0 +2003,12,11,5,30,0,0,-12,0.866,1.6,62.33,-4,790,0 +2003,12,11,6,30,0,0,-12,0.866,1.1,61.870000000000005,-4,790,0 +2003,12,11,7,30,26,0,-12,0.866,0.9,57.230000000000004,-3,800,26 +2003,12,11,8,30,42,737,-11,0.866,1,52.660000000000004,-1,800,183 +2003,12,11,9,30,58,871,-10,0.866,1,48.33,0,800,335 +2003,12,11,10,30,81,744,-9,0.866,0.8,47.03,1,800,384 +2003,12,11,11,30,166,472,-9,0.866,0.7000000000000001,47.77,2,790,378 +2003,12,11,12,30,206,172,-9,0.866,0.8,47,2,790,283 +2003,12,11,13,30,176,191,-10,0.866,1,46.85,1,790,251 +2003,12,11,14,30,120,254,-9,0.866,1,48.21,0,800,195 +2003,12,11,15,30,56,0,-8,0.866,0.8,61.1,0,800,56 +2003,12,11,16,30,0,0,-8,0.866,0.5,68.26,-2,800,0 +2003,12,11,17,30,0,0,-9,0.866,0.30000000000000004,70.36,-3,800,0 +2003,12,11,18,30,0,0,-9,0.866,0.5,75.14,-4,800,0 +2003,12,11,19,30,0,0,-9,0.866,0.8,73.85000000000001,-4,800,0 +2003,12,11,20,30,0,0,-10,0.866,0.9,72.31,-4,800,0 +2003,12,11,21,30,0,0,-10,0.866,1.1,76.36,-5,800,0 +2003,12,11,22,30,0,0,-10,0.866,1.2000000000000002,73.74,-5,800,0 +2003,12,11,23,30,0,0,-11,0.866,1.4000000000000001,71.23,-5,800,0 +2003,12,12,0,30,0,0,-11,0.866,1.5,74.51,-6,800,0 +2003,12,12,1,30,0,0,-12,0.866,1.5,72.01,-6,800,0 +2003,12,12,2,30,0,0,-12,0.866,1.5,70.23,-6,800,0 +2003,12,12,3,30,0,0,-12,0.866,1.5,69.09,-6,800,0 +2003,12,12,4,30,0,0,-12,0.866,1.5,73.52,-7,800,0 +2003,12,12,5,30,0,0,-13,0.866,1.6,72.59,-7,800,0 +2003,12,12,6,30,0,0,-13,0.866,1.7000000000000002,71.77,-7,800,0 +2003,12,12,7,30,14,309,-13,0.866,2.2,61.18,-5,800,24 +2003,12,12,8,30,42,737,-12,0.866,2.1,51.4,-2,800,181 +2003,12,12,9,30,57,881,-11,0.866,1.1,48.44,0,800,336 +2003,12,12,10,30,67,942,-11,0.866,0.6000000000000001,41.78,0,800,448 +2003,12,12,11,30,73,962,-11,0.866,0.5,42.26,1,800,504 +2003,12,12,12,30,74,956,-11,0.866,0.6000000000000001,42.29,1,800,499 +2003,12,12,13,30,70,922,-11,0.866,0.7000000000000001,42.14,1,800,432 +2003,12,12,14,30,62,832,-11,0.866,0.5,45.79,0,800,309 +2003,12,12,15,30,43,659,-9,0.866,0.2,58.97,-1,800,151 +2003,12,12,16,30,0,0,-10,0.866,0.30000000000000004,63.190000000000005,-3,800,0 +2003,12,12,17,30,0,0,-11,0.866,0.7000000000000001,64.25,-4,800,0 +2003,12,12,18,30,0,0,-11,0.866,1.3,63.49,-4,800,0 +2003,12,12,19,30,0,0,-11,0.866,2,63.9,-4,800,0 +2003,12,12,20,30,0,0,-11,0.866,2.5,63.01,-4,800,0 +2003,12,12,21,30,0,0,-12,0.866,2.9000000000000004,61.38,-4,800,0 +2003,12,12,22,30,0,0,-12,0.866,3.1,60.51,-4,800,0 +2003,12,12,23,30,0,0,-12,0.866,3.4000000000000004,59.95,-4,800,0 +2003,12,13,0,30,0,0,-12,0.866,3.5,59.64,-4,800,0 +2003,12,13,1,30,0,0,-12,0.866,3.6,59.57,-4,800,0 +2003,12,13,2,30,0,0,-12,0.866,3.6,59.67,-4,800,0 +2003,12,13,3,30,0,0,-12,0.866,3.7,60.01,-4,800,0 +2003,12,13,4,30,0,0,-12,0.866,3.8000000000000003,56.38,-3,800,0 +2003,12,13,5,30,0,0,-12,0.866,3.9000000000000004,57.410000000000004,-3,800,0 +2003,12,13,6,30,0,0,-11,0.866,3.9000000000000004,58.42,-3,800,0 +2003,12,13,7,30,17,0,-11,0.866,3.7,54.85,-2,800,17 +2003,12,13,8,30,58,396,-10,0.866,3.7,51.88,0,800,132 +2003,12,13,9,30,102,468,-8,0.866,3.7,50.86,1,800,249 +2003,12,13,10,30,90,701,-7,0.866,3.7,55.45,2,800,372 +2003,12,13,11,30,98,729,-7,0.866,3.9000000000000004,55.01,3,800,424 +2003,12,13,12,30,174,415,-6,0.866,4.2,51.52,4,800,358 +2003,12,13,13,30,82,719,-6,0.866,3.9000000000000004,54.230000000000004,4,800,364 +2003,12,13,14,30,78,581,-4,0.866,3.2,64.42,3,800,250 +2003,12,13,15,30,39,659,-5,0.866,2.5,67.85,2,800,148 +2003,12,13,16,30,0,0,-5,0.866,2.3000000000000003,65.48,0,800,0 +2003,12,13,17,30,0,0,-5,0.866,2.8000000000000003,69.25,0,800,0 +2003,12,13,18,30,0,0,-6,0.866,3.1,68.1,0,800,0 +2003,12,13,19,30,0,0,-6,0.866,3.3000000000000003,72.10000000000001,0,800,0 +2003,12,13,20,30,0,0,-6,0.866,3.3000000000000003,70.98,0,800,0 +2003,12,13,21,30,0,0,-6,0.866,3.4000000000000004,70.71000000000001,0,800,0 +2003,12,13,22,30,0,0,-6,0.866,3.6,66.33,0,800,0 +2003,12,13,23,30,0,0,-6,0.866,3.7,67.69,0,800,0 +2003,12,14,0,30,0,0,-5,0.866,3.8000000000000003,69.01,0,800,0 +2003,12,14,1,30,0,0,-5,0.866,3.9000000000000004,65.24,0,800,0 +2003,12,14,2,30,0,0,-5,0.866,3.9000000000000004,66.48,1,800,0 +2003,12,14,3,30,0,0,-5,0.866,3.9000000000000004,67.33,1,800,0 +2003,12,14,4,30,0,0,-5,0.866,3.8000000000000003,67.76,1,800,0 +2003,12,14,5,30,0,0,-5,0.866,3.7,68.24,1,800,0 +2003,12,14,6,30,0,0,-5,0.866,3.6,68.8,1,800,0 +2003,12,14,7,30,21,0,-4,0.866,3.5,69.22,2,800,21 +2003,12,14,8,30,41,718,-4,0.866,3.5,62.61,4,800,174 +2003,12,14,9,30,55,867,-3,0.866,3.5,59.03,6,790,326 +2003,12,14,10,30,80,746,-3,0.866,3.2,51.6,8,790,379 +2003,12,14,11,30,68,951,-3,0.866,2.7,47.13,9,790,492 +2003,12,14,12,30,76,816,-3,0.866,2.1,46.67,9,790,437 +2003,12,14,13,30,70,781,-2,0.866,1.8,52.93,8,790,375 +2003,12,14,14,30,51,863,-2,0.866,1.9000000000000001,57.25,7,790,307 +2003,12,14,15,30,35,715,-3,0.866,2.2,66.36,4,790,152 +2003,12,14,16,30,0,0,-5,0.866,2.5,68.48,1,790,0 +2003,12,14,17,30,0,0,-5,0.866,3.2,64.99,1,790,0 +2003,12,14,18,30,0,0,-6,0.866,3.8000000000000003,62.54,1,790,0 +2003,12,14,19,30,0,0,-6,0.866,3.9000000000000004,59.9,0,790,0 +2003,12,14,20,30,0,0,-7,0.866,3.4000000000000004,62.51,0,790,0 +2003,12,14,21,30,0,0,-7,0.866,2.8000000000000003,65.49,0,790,0 +2003,12,14,22,30,0,0,-7,0.866,2.3000000000000003,64.27,0,790,0 +2003,12,14,23,30,0,0,-7,0.866,1.9000000000000001,64.67,0,790,0 +2003,12,15,0,30,0,0,-7,0.866,1.7000000000000002,66.36,0,790,0 +2003,12,15,1,30,0,0,-7,0.866,1.5,68.03,0,780,0 +2003,12,15,2,30,0,0,-6,0.866,1.4000000000000001,69.62,0,780,0 +2003,12,15,3,30,0,0,-6,0.866,2.7,70.42,0,780,0 +2003,12,15,4,30,0,0,-6,0.866,5.6000000000000005,78.87,-1,790,0 +2003,12,15,5,30,0,0,-6,0.866,7.9,84.85000000000001,-2,790,0 +2003,12,15,6,30,0,0,-8,0.866,8.8,75.19,-3,790,0 +2003,12,15,7,30,7,0,-11,0.866,8.8,67.52,-4,790,7 +2003,12,15,8,30,66,10,-12,0.866,8.3,60.43,-4,790,68 +2003,12,15,9,30,118,21,-12,0.866,8.200000000000001,53.81,-3,790,125 +2003,12,15,10,30,179,107,-13,0.866,8.200000000000001,48.52,-2,790,222 +2003,12,15,11,30,186,353,-13,0.866,8.3,47.75,-2,790,343 +2003,12,15,12,30,176,401,-13,0.866,8.200000000000001,44,-1,800,353 +2003,12,15,13,30,78,741,-13,0.866,8,42.77,-1,800,368 +2003,12,15,14,30,66,653,-14,0.866,7.300000000000001,41.21,-1,800,260 +2003,12,15,15,30,62,56,-14,0.866,6.1000000000000005,46.74,-3,800,72 +2003,12,15,16,30,0,0,-14,0.866,5,49.74,-4,800,0 +2003,12,15,17,30,0,0,-14,0.866,4.6000000000000005,52.92,-5,800,0 +2003,12,15,18,30,0,0,-15,0.866,4.6000000000000005,51.160000000000004,-5,800,0 +2003,12,15,19,30,0,0,-15,0.866,4.5,52.730000000000004,-6,800,0 +2003,12,15,20,30,0,0,-16,0.866,4.4,50.81,-6,800,0 +2003,12,15,21,30,0,0,-16,0.866,4.5,49.57,-6,800,0 +2003,12,15,22,30,0,0,-17,0.866,4.5,51.82,-7,800,0 +2003,12,15,23,30,0,0,-17,0.866,4.3,49.96,-7,800,0 +2003,12,16,0,30,0,0,-17,0.866,4.4,48.35,-7,810,0 +2003,12,16,1,30,0,0,-18,0.866,4.6000000000000005,51.09,-8,810,0 +2003,12,16,2,30,0,0,-18,0.866,4.9,50.42,-8,810,0 +2003,12,16,3,30,0,0,-18,0.866,5,50.01,-8,810,0 +2003,12,16,4,30,0,0,-18,0.866,5,50.01,-8,810,0 +2003,12,16,5,30,0,0,-18,0.866,4.800000000000001,50.410000000000004,-8,810,0 +2003,12,16,6,30,0,0,-18,0.866,4.4,50.86,-8,810,0 +2003,12,16,7,30,11,360,-18,0.866,4.800000000000001,51.38,-7,810,20 +2003,12,16,8,30,36,791,-17,0.866,5.7,41.39,-5,810,179 +2003,12,16,9,30,49,926,-17,0.866,6.1000000000000005,37.67,-3,810,335 +2003,12,16,10,30,57,983,-17,0.866,5.7,32.5,-1,810,449 +2003,12,16,11,30,65,994,-16,0.866,5.300000000000001,28.66,0,810,506 +2003,12,16,12,30,64,985,-16,0.866,5.2,29.27,0,810,499 +2003,12,16,13,30,60,950,-16,0.866,5.2,31.04,0,810,432 +2003,12,16,14,30,50,878,-14,0.866,5,34.35,0,810,311 +2003,12,16,15,30,56,300,-13,0.866,4.9,45.01,-1,810,106 +2003,12,16,16,30,0,0,-13,0.866,5,50.39,-3,810,0 +2003,12,16,17,30,0,0,-14,0.866,5.300000000000001,53.160000000000004,-4,810,0 +2003,12,16,18,30,0,0,-14,0.866,5.6000000000000005,51.88,-4,810,0 +2003,12,16,19,30,0,0,-14,0.866,5.9,50.02,-3,810,0 +2003,12,16,20,30,0,0,-15,0.866,6.1000000000000005,44.43,-3,810,0 +2003,12,16,21,30,0,0,-15,0.866,6.2,43.19,-3,810,0 +2003,12,16,22,30,0,0,-15,0.866,6.2,42.52,-3,810,0 +2003,12,16,23,30,0,0,-15,0.866,6.1000000000000005,42.230000000000004,-3,810,0 +2003,12,17,0,30,0,0,-15,0.866,5.9,39.22,-2,810,0 +2003,12,17,1,30,0,0,-15,0.866,5.6000000000000005,40.27,-2,810,0 +2003,12,17,2,30,0,0,-14,0.866,5.5,42.17,-2,810,0 +2003,12,17,3,30,0,0,-14,0.866,5.6000000000000005,40.54,-1,810,0 +2003,12,17,4,30,0,0,-14,0.866,5.800000000000001,41.1,-1,810,0 +2003,12,17,5,30,0,0,-14,0.866,5.9,39.13,0,810,0 +2003,12,17,6,30,0,0,-13,0.866,5.9,40.24,0,810,0 +2003,12,17,7,30,15,0,-13,0.866,6,37.87,0,810,15 +2003,12,17,8,30,42,560,-12,0.866,6.2,36.95,1,810,142 +2003,12,17,9,30,59,716,-11,0.866,6.300000000000001,34.79,4,810,279 +2003,12,17,10,30,73,769,-11,0.866,6.1000000000000005,34.230000000000004,5,810,379 +2003,12,17,11,30,69,847,-10,0.866,5.800000000000001,33.82,6,810,444 +2003,12,17,12,30,61,970,-9,0.866,5.300000000000001,33.76,7,810,488 +2003,12,17,13,30,57,942,-8,0.866,4.4,39.01,6,810,426 +2003,12,17,14,30,51,869,-7,0.866,3,48.410000000000004,4,810,310 +2003,12,17,15,30,35,718,-7,0.866,1.8,58.1,1,810,155 +2003,12,17,16,30,0,0,-8,0.866,1.2000000000000002,63.03,0,810,0 +2003,12,17,17,30,0,0,-8,0.866,0.7000000000000001,64.94,-1,810,0 +2003,12,17,18,30,0,0,-8,0.866,0.4,69.38,-2,810,0 +2003,12,17,19,30,0,0,-8,0.866,0.4,68.68,-2,810,0 +2003,12,17,20,30,0,0,-9,0.866,0.6000000000000001,67.68,-2,810,0 +2003,12,17,21,30,0,0,-9,0.866,1,66.72,-2,810,0 +2003,12,17,22,30,0,0,-9,0.866,1.2000000000000002,65.89,-2,810,0 +2003,12,17,23,30,0,0,-9,0.866,1.1,69.14,-3,810,0 +2003,12,18,0,30,0,0,-10,0.866,1.2000000000000002,71.09,-4,810,0 +2003,12,18,1,30,0,0,-10,0.866,1.7000000000000002,63.85,-3,810,0 +2003,12,18,2,30,0,0,-11,0.866,2.2,62.77,-3,810,0 +2003,12,18,3,30,0,0,-10,0.866,2.2,62.89,-3,810,0 +2003,12,18,4,30,0,0,-10,0.866,2.1,63,-3,810,0 +2003,12,18,5,30,0,0,-11,0.866,2.3000000000000003,62.660000000000004,-3,810,0 +2003,12,18,6,30,0,0,-11,0.866,2.4000000000000004,61.72,-3,810,0 +2003,12,18,7,30,10,304,-11,0.866,2.5,56.21,-2,810,17 +2003,12,18,8,30,38,734,-10,0.866,2.2,51.02,0,810,168 +2003,12,18,9,30,93,502,-10,0.866,1.7000000000000002,46.29,1,810,247 +2003,12,18,10,30,9,0,-9,0.866,1.5,42.31,4,810,9 +2003,12,18,11,30,66,964,-9,0.866,1.8,39.93,5,810,492 +2003,12,18,12,30,65,964,-9,0.866,2.2,37.32,6,810,490 +2003,12,18,13,30,60,938,-9,0.866,2.1,40.14,5,810,427 +2003,12,18,14,30,54,858,-8,0.866,1.4000000000000001,44.4,4,810,310 +2003,12,18,15,30,37,702,-7,0.866,0.9,54.9,1,810,155 +2003,12,18,16,30,0,0,-9,0.866,0.9,60.03,-1,810,0 +2003,12,18,17,30,0,0,-10,0.14200000000000002,1,61.660000000000004,-2,810,0 +2003,12,18,18,30,0,0,-10,0.14200000000000002,1.5,61.370000000000005,-2,810,0 +2003,12,18,19,30,0,0,-10,0.14200000000000002,2.2,55.94,-1,810,0 +2003,12,18,20,30,0,0,-10,0.14200000000000002,2.6,54.620000000000005,-1,810,0 +2003,12,18,21,30,0,0,-11,0.14200000000000002,2.7,53.24,-1,810,0 +2003,12,18,22,30,0,0,-11,0.14200000000000002,2.7,51.69,-1,810,0 +2003,12,18,23,30,0,0,-11,0.14200000000000002,2.7,50.11,-1,810,0 +2003,12,19,0,30,0,0,-12,0.14200000000000002,2.7,48.74,-1,810,0 +2003,12,19,1,30,0,0,-12,0.14200000000000002,2.8000000000000003,47.660000000000004,-1,810,0 +2003,12,19,2,30,0,0,-12,0.14200000000000002,2.8000000000000003,46.78,-1,810,0 +2003,12,19,3,30,0,0,-12,0.14200000000000002,2.8000000000000003,42.95,0,810,0 +2003,12,19,4,30,0,0,-13,0.14200000000000002,2.9000000000000004,42.74,0,810,0 +2003,12,19,5,30,0,0,-13,0.14200000000000002,3.1,42.7,0,810,0 +2003,12,19,6,30,0,0,-12,0.14200000000000002,3.3000000000000003,43.03,0,810,0 +2003,12,19,7,30,10,299,-12,0.14200000000000002,3.4000000000000004,40.660000000000004,1,810,15 +2003,12,19,8,30,31,749,-11,0.14200000000000002,3.4000000000000004,40.28,3,810,163 +2003,12,19,9,30,40,893,-9,0.14200000000000002,3,37.93,6,810,313 +2003,12,19,10,30,45,956,-7,0.14200000000000002,2.3000000000000003,34.300000000000004,9,810,423 +2003,12,19,11,30,48,979,-6,0.14200000000000002,1.5,34.89,10,810,481 +2003,12,19,12,30,49,975,-6,0.14200000000000002,0.9,33.160000000000004,11,810,479 +2003,12,19,13,30,48,943,-5,0.14200000000000002,0.4,38.69,10,810,418 +2003,12,19,14,30,46,862,-2,0.14200000000000002,0.4,54.95,8,810,303 +2003,12,19,15,30,35,695,-5,0.14200000000000002,0.7000000000000001,55.2,5,810,151 +2003,12,19,16,30,0,0,-7,0.14200000000000002,1,57.27,2,810,0 +2003,12,19,17,30,0,0,-8,0.14200000000000002,1.3,53.4,1,810,0 +2003,12,19,18,30,0,0,-8,0.14200000000000002,2,52.33,0,810,0 +2003,12,19,19,30,0,0,-8,0.14200000000000002,2.5,55.54,0,810,0 +2003,12,19,20,30,0,0,-9,0.14200000000000002,3,54.43,0,810,0 +2003,12,19,21,30,0,0,-9,0.14200000000000002,3.3000000000000003,48.89,0,810,0 +2003,12,19,22,30,0,0,-9,0.14200000000000002,3.5,46.94,1,810,0 +2003,12,19,23,30,0,0,-10,0.14200000000000002,3.8000000000000003,45.300000000000004,1,800,0 +2003,12,20,0,30,0,0,-10,0.14200000000000002,4.1000000000000005,44.44,1,800,0 +2003,12,20,1,30,0,0,-10,0.14200000000000002,4.3,44.43,1,800,0 +2003,12,20,2,30,0,0,-10,0.14200000000000002,4.4,45.300000000000004,1,800,0 +2003,12,20,3,30,0,0,-10,0.14200000000000002,4.4,45.83,1,800,0 +2003,12,20,4,30,0,0,-10,0.14200000000000002,4.4,45.07,1,800,0 +2003,12,20,5,30,0,0,-11,0.14200000000000002,4.6000000000000005,42.96,1,800,0 +2003,12,20,6,30,0,0,-11,0.14200000000000002,4.800000000000001,41,2,800,0 +2003,12,20,7,30,0,0,-12,0.14200000000000002,5,37.03,3,800,0 +2003,12,20,8,30,10,0,-11,0.14200000000000002,4.800000000000001,34.07,5,800,10 +2003,12,20,9,30,28,0,-9,0.14200000000000002,4.2,31.59,8,800,28 +2003,12,20,10,30,56,0,-7,0.14200000000000002,3.8000000000000003,31.43,10,800,56 +2003,12,20,11,30,104,0,-7,0.14200000000000002,3.6,30.57,11,800,104 +2003,12,20,12,30,204,153,-6,0.14200000000000002,3.5,30.91,12,800,271 +2003,12,20,13,30,141,449,-5,0.14200000000000002,3.2,33.57,12,800,317 +2003,12,20,14,30,110,358,-5,0.14200000000000002,2.6,34.24,11,800,217 +2003,12,20,15,30,60,256,-6,0.14200000000000002,1.9000000000000001,40.19,8,800,103 +2003,12,20,16,30,0,0,-7,0.14200000000000002,1.5,47.82,5,800,0 +2003,12,20,17,30,0,0,-7,0.14200000000000002,1.2000000000000002,52.88,3,800,0 +2003,12,20,18,30,0,0,-7,0.14200000000000002,1.1,51.54,3,800,0 +2003,12,20,19,30,0,0,-8,0.14200000000000002,1.1,49.71,3,800,0 +2003,12,20,20,30,0,0,-8,0.14200000000000002,1.2000000000000002,52.050000000000004,2,800,0 +2003,12,20,21,30,0,0,-9,0.14200000000000002,1.4000000000000001,50.27,2,800,0 +2003,12,20,22,30,0,0,-9,0.14200000000000002,1.7000000000000002,48.02,1,800,0 +2003,12,20,23,30,0,0,-10,0.14200000000000002,1.9000000000000001,46.13,1,800,0 +2003,12,21,0,30,0,0,-10,0.14200000000000002,2,45.15,1,800,0 +2003,12,21,1,30,0,0,-10,0.14200000000000002,2,45.29,1,800,0 +2003,12,21,2,30,0,0,-9,0.14200000000000002,1.9000000000000001,47.99,1,800,0 +2003,12,21,3,30,0,0,-9,0.14200000000000002,1.7000000000000002,49.79,2,800,0 +2003,12,21,4,30,0,0,-9,0.14200000000000002,1.5,50.21,2,800,0 +2003,12,21,5,30,0,0,-9,0.14200000000000002,1.2000000000000002,49.2,2,800,0 +2003,12,21,6,30,0,0,-9,0.14200000000000002,1,49.39,2,800,0 +2003,12,21,7,30,0,0,-8,0.14200000000000002,0.9,51.15,2,800,0 +2003,12,21,8,30,56,347,-7,0.14200000000000002,0.8,51.1,4,800,117 +2003,12,21,9,30,128,165,-4,0.14200000000000002,0.8,52.480000000000004,6,800,179 +2003,12,21,10,30,111,597,-3,0.14200000000000002,0.7000000000000001,52.94,7,800,346 +2003,12,21,11,30,111,672,-3,0.14200000000000002,0.6000000000000001,49.45,8,800,407 +2003,12,21,12,30,115,651,-3,0.14200000000000002,0.9,45.52,9,800,402 +2003,12,21,13,30,56,896,-4,0.14200000000000002,1.4000000000000001,44.15,9,800,408 +2003,12,21,14,30,30,0,-4,0.14200000000000002,1.7000000000000002,46.03,8,800,30 +2003,12,21,15,30,36,664,-4,0.14200000000000002,1.8,59.39,5,800,149 +2003,12,21,16,30,0,0,-5,0.14200000000000002,1.4000000000000001,68.60000000000001,2,800,0 +2003,12,21,17,30,0,0,-5,0.14200000000000002,0.6000000000000001,65.93,0,800,0 +2003,12,21,18,30,0,0,-5,0.14200000000000002,0.2,71.05,0,800,0 +2003,12,21,19,30,0,0,-5,0.14200000000000002,0.1,76.84,0,800,0 +2003,12,21,20,30,0,0,-5,0.14200000000000002,0.1,77.5,0,800,0 +2003,12,21,21,30,0,0,-5,0.14200000000000002,0.4,79.54,0,800,0 +2003,12,21,22,30,0,0,-4,0.14200000000000002,1.1,82.09,0,800,0 +2003,12,21,23,30,0,0,-4,0.14200000000000002,1.9000000000000001,84.48,0,800,0 +2003,12,22,0,30,0,0,-3,0.14200000000000002,2.4000000000000004,93.69,0,800,0 +2003,12,22,1,30,0,0,-3,0.14200000000000002,2.7,95.79,-1,800,0 +2003,12,22,2,30,0,0,-3,0.14200000000000002,2.9000000000000004,95.10000000000001,-1,800,0 +2003,12,22,3,30,0,0,-4,0.14200000000000002,3,98,-2,800,0 +2003,12,22,4,30,0,0,-5,0.14200000000000002,2.6,99.28,-3,800,0 +2003,12,22,5,30,0,0,-5,0.14200000000000002,1.8,94.29,-3,800,0 +2003,12,22,6,30,0,0,-6,0.14200000000000002,1.5,97.02,-4,800,0 +2003,12,22,7,30,0,0,-6,0.14200000000000002,2.3000000000000003,85.88,-2,810,0 +2003,12,22,8,30,41,644,-7,0.14200000000000002,3.6,72.36,0,810,152 +2003,12,22,9,30,52,832,-7,0.14200000000000002,4.3,60.43,0,810,303 +2003,12,22,10,30,56,916,-8,0.14200000000000002,4.5,53.28,1,810,417 +2003,12,22,11,30,58,952,-8,0.14200000000000002,4.4,51.39,2,810,478 +2003,12,22,12,30,57,961,-9,0.14200000000000002,4.2,46.99,3,810,480 +2003,12,22,13,30,52,942,-9,0.14200000000000002,3.8000000000000003,45.77,3,810,422 +2003,12,22,14,30,44,884,-9,0.14200000000000002,2.7,47.5,2,810,311 +2003,12,22,15,30,33,737,-9,0.14200000000000002,1.4000000000000001,52.2,0,810,159 +2003,12,22,16,30,0,0,-10,0.14200000000000002,0.5,60.21,-2,810,0 +2003,12,22,17,30,0,0,-11,0.14200000000000002,0.30000000000000004,62.370000000000005,-3,810,0 +2003,12,22,18,30,0,0,-10,0.14200000000000002,0.9,68.09,-4,810,0 +2003,12,22,19,30,0,0,-10,0.14200000000000002,1.7000000000000002,68.5,-4,810,0 +2003,12,22,20,30,0,0,-10,0.14200000000000002,2.6,67.98,-4,810,0 +2003,12,22,21,30,0,0,-11,0.14200000000000002,3.2,67.36,-4,810,0 +2003,12,22,22,30,0,0,-11,0.14200000000000002,3.6,65.68,-4,810,0 +2003,12,22,23,30,0,0,-11,0.14200000000000002,3.9000000000000004,63.52,-4,810,0 +2003,12,23,0,30,0,0,-12,0.14200000000000002,4.2,61.86,-4,810,0 +2003,12,23,1,30,0,0,-12,0.14200000000000002,4.5,60.97,-4,810,0 +2003,12,23,2,30,0,0,-12,0.14200000000000002,4.6000000000000005,60.15,-3,810,0 +2003,12,23,3,30,0,0,-12,0.14200000000000002,4.7,54.1,-3,810,0 +2003,12,23,4,30,0,0,-13,0.14200000000000002,4.7,51.5,-3,810,0 +2003,12,23,5,30,0,0,-14,0.14200000000000002,4.6000000000000005,48.24,-3,810,0 +2003,12,23,6,30,0,0,-15,0.14200000000000002,4.6000000000000005,45.17,-3,810,0 +2003,12,23,7,30,0,0,-15,0.14200000000000002,5,36.69,-1,810,0 +2003,12,23,8,30,32,739,-15,0.14200000000000002,5,32.01,1,810,159 +2003,12,23,9,30,42,893,-14,0.14200000000000002,4,28.67,4,810,311 +2003,12,23,10,30,47,961,-12,0.14200000000000002,2.7,26.16,7,800,425 +2003,12,23,11,30,50,988,-12,0.14200000000000002,1.8,25.51,8,800,485 +2003,12,23,12,30,51,988,-11,0.14200000000000002,1.3,24.87,9,800,486 +2003,12,23,13,30,50,959,-10,0.14200000000000002,1,28.67,8,800,427 +2003,12,23,14,30,1,0,-8,0.14200000000000002,0.4,40.31,6,800,1 +2003,12,23,15,30,59,294,-7,0.14200000000000002,0,52.95,3,800,110 +2003,12,23,16,30,0,0,-10,0.14200000000000002,0.1,49.620000000000005,0,800,0 +2003,12,23,17,30,0,0,-11,0.14200000000000002,0.6000000000000001,48.61,0,800,0 +2003,12,23,18,30,0,0,-11,0.14200000000000002,1.7000000000000002,46.56,0,800,0 +2003,12,23,19,30,0,0,-12,0.14200000000000002,2.8000000000000003,44,0,800,0 +2003,12,23,20,30,0,0,-13,0.14200000000000002,3,44.68,-1,800,0 +2003,12,23,21,30,0,0,-14,0.14200000000000002,2.5,41.39,-1,800,0 +2003,12,23,22,30,0,0,-15,0.14200000000000002,2,40.910000000000004,-2,800,0 +2003,12,23,23,30,0,0,-16,0.14200000000000002,1.7000000000000002,37.660000000000004,-2,800,0 +2003,12,24,0,30,0,0,-17,0.14200000000000002,1.4000000000000001,32.65,-1,800,0 +2003,12,24,1,30,0,0,-17,0.14200000000000002,1.1,30.62,-1,800,0 +2003,12,24,2,30,0,0,-18,0.14200000000000002,0.7000000000000001,29.05,-1,800,0 +2003,12,24,3,30,0,0,-18,0.14200000000000002,0.6000000000000001,30.3,-2,800,0 +2003,12,24,4,30,0,0,-19,0.14200000000000002,0.8,28.77,-2,800,0 +2003,12,24,5,30,0,0,-20,0.14200000000000002,1.2000000000000002,27.22,-2,800,0 +2003,12,24,6,30,0,0,-20,0.14200000000000002,1.8,24.69,-1,800,0 +2003,12,24,7,30,0,0,-19,0.14200000000000002,2.4000000000000004,22.59,0,800,0 +2003,12,24,8,30,60,262,-16,0.14200000000000002,2.9000000000000004,25.01,2,800,105 +2003,12,24,9,30,121,255,-15,0.14200000000000002,2.7,25.19,5,800,198 +2003,12,24,10,30,124,542,-13,0.14200000000000002,1.9000000000000001,24.150000000000002,7,800,337 +2003,12,24,11,30,149,526,-12,0.14200000000000002,1.5,24.22,8,800,381 +2003,12,24,12,30,159,489,-12,0.14200000000000002,1.5,23.740000000000002,9,800,375 +2003,12,24,13,30,124,547,-11,0.14200000000000002,1.3,27.67,8,800,339 +2003,12,24,14,30,118,304,-9,0.14200000000000002,0.8,37.300000000000004,6,800,210 +2003,12,24,15,30,60,285,-7,0.14200000000000002,0.4,51.44,3,800,110 +2003,12,24,16,30,0,0,-9,0.14200000000000002,0.30000000000000004,47.86,1,800,0 +2003,12,24,17,30,0,0,-9,0.14200000000000002,0.5,47.18,1,800,0 +2003,12,24,18,30,0,0,-9,0.14200000000000002,1.4000000000000001,48.11,1,800,0 +2003,12,24,19,30,0,0,-9,0.14200000000000002,2.2,49.11,1,800,0 +2003,12,24,20,30,0,0,-9,0.14200000000000002,2.5,49.2,0,800,0 +2003,12,24,21,30,0,0,-10,0.14200000000000002,2.6,50.43,0,800,0 +2003,12,24,22,30,0,0,-11,0.14200000000000002,3,49.870000000000005,0,800,0 +2003,12,24,23,30,0,0,-12,0.14200000000000002,3.4000000000000004,44.36,0,800,0 +2003,12,25,0,30,0,0,-13,0.14200000000000002,3.5,41.61,0,800,0 +2003,12,25,1,30,0,0,-13,0.14200000000000002,3.6,41.76,0,790,0 +2003,12,25,2,30,0,0,-12,0.14200000000000002,3.6,43,0,790,0 +2003,12,25,3,30,0,0,-12,0.14200000000000002,3.6,44.38,0,790,0 +2003,12,25,4,30,0,0,-12,0.14200000000000002,3.6,46.19,0,790,0 +2003,12,25,5,30,0,0,-11,0.14200000000000002,3.4000000000000004,49.04,0,790,0 +2003,12,25,6,30,0,0,-10,0.14200000000000002,3.1,49.54,0,790,0 +2003,12,25,7,30,0,0,-9,0.14200000000000002,3,50.04,1,790,0 +2003,12,25,8,30,16,0,-7,0.14200000000000002,2.9000000000000004,57.76,2,800,16 +2003,12,25,9,30,95,476,-5,0.14200000000000002,2.5,62.54,3,800,238 +2003,12,25,10,30,23,0,-4,0.14200000000000002,2.2,60.92,4,790,23 +2003,12,25,11,30,203,203,-3,0.14200000000000002,1.9000000000000001,56.9,6,790,293 +2003,12,25,12,30,202,222,-3,0.14200000000000002,1.5,53.24,7,790,301 +2003,12,25,13,30,171,268,-3,0.14200000000000002,1.1,49.93,8,790,277 +2003,12,25,14,30,110,380,-3,0.14200000000000002,0.8,53.39,7,790,226 +2003,12,25,15,30,33,712,-3,0.14200000000000002,0.6000000000000001,65.96000000000001,4,800,158 +2003,12,25,16,30,0,0,-4,0.14200000000000002,0.8,70.71000000000001,1,800,0 +2003,12,25,17,30,0,0,-5,0.14200000000000002,1.1,72.38,0,800,0 +2003,12,25,18,30,0,0,-5,0.14200000000000002,1.2000000000000002,75.21000000000001,0,800,0 +2003,12,25,19,30,0,0,-6,0.14200000000000002,1.4000000000000001,79.7,-1,800,0 +2003,12,25,20,30,0,0,-6,0.14200000000000002,1.5,79.55,-1,800,0 +2003,12,25,21,30,0,0,-5,0.14200000000000002,1.5,74.73,0,800,0 +2003,12,25,22,30,0,0,-5,0.14200000000000002,1.4000000000000001,75.06,0,800,0 +2003,12,25,23,30,0,0,-5,0.14200000000000002,1.2000000000000002,80.18,-1,800,0 +2003,12,26,0,30,0,0,-6,0.14200000000000002,1.1,79.5,-1,800,0 +2003,12,26,1,30,0,0,-6,0.14200000000000002,1.1,84.93,-2,790,0 +2003,12,26,2,30,0,0,-6,0.14200000000000002,1.1,83.87,-2,790,0 +2003,12,26,3,30,0,0,-6,0.14200000000000002,1.1,76.53,-1,790,0 +2003,12,26,4,30,0,0,-6,0.14200000000000002,1.4000000000000001,75.79,-1,790,0 +2003,12,26,5,30,0,0,-6,0.14200000000000002,1.6,74.21000000000001,-1,790,0 +2003,12,26,6,30,0,0,-7,0.14200000000000002,1.7000000000000002,72.22,-1,790,0 +2003,12,26,7,30,0,0,-7,0.14200000000000002,1.9000000000000001,66.17,-1,790,0 +2003,12,26,8,30,32,716,-6,0.14200000000000002,1.6,60.15,1,790,153 +2003,12,26,9,30,43,874,-5,0.14200000000000002,1.7000000000000002,55.550000000000004,4,790,304 +2003,12,26,10,30,140,465,-5,0.14200000000000002,3,47.550000000000004,7,790,322 +2003,12,26,11,30,71,840,-4,0.14200000000000002,4.1000000000000005,42.65,9,790,442 +2003,12,26,12,30,88,773,-4,0.14200000000000002,4.4,44.18,9,790,430 +2003,12,26,13,30,169,57,-3,0.14200000000000002,4.2,49.08,8,790,192 +2003,12,26,14,30,123,43,-4,0.14200000000000002,4.1000000000000005,51.82,7,790,136 +2003,12,26,15,30,38,702,-6,0.14200000000000002,4.800000000000001,52.11,4,790,162 +2003,12,26,16,30,16,0,-10,0.14200000000000002,5.6000000000000005,44.79,1,790,16 +2003,12,26,17,30,0,0,-12,0.14300000000000002,5.1000000000000005,45.12,0,790,0 +2003,12,26,18,30,0,0,-12,0.14300000000000002,4.3,48.99,-1,790,0 +2003,12,26,19,30,0,0,-11,0.14300000000000002,4.3,51.5,-1,790,0 +2003,12,26,20,30,0,0,-11,0.14300000000000002,4.4,56.89,-1,790,0 +2003,12,26,21,30,0,0,-11,0.14300000000000002,4.5,57.07,-2,790,0 +2003,12,26,22,30,0,0,-11,0.14300000000000002,4.5,56.11,-2,790,0 +2003,12,26,23,30,0,0,-11,0.14300000000000002,4.4,54.25,-2,790,0 +2003,12,27,0,30,0,0,-12,0.14300000000000002,4.2,55.230000000000004,-3,790,0 +2003,12,27,1,30,0,0,-13,0.14300000000000002,3.9000000000000004,56.14,-3,790,0 +2003,12,27,2,30,0,0,-13,0.14300000000000002,3.6,54.34,-4,790,0 +2003,12,27,3,30,0,0,-13,0.14300000000000002,3.4000000000000004,53.24,-4,790,0 +2003,12,27,4,30,0,0,-14,0.14300000000000002,3.3000000000000003,56.120000000000005,-5,790,0 +2003,12,27,5,30,0,0,-14,0.14300000000000002,3.2,54.77,-5,790,0 +2003,12,27,6,30,0,0,-14,0.14300000000000002,3.2,53.47,-5,790,0 +2003,12,27,7,30,0,0,-15,0.14300000000000002,3.5,48.72,-4,790,0 +2003,12,27,8,30,35,737,-15,0.14300000000000002,4.4,44.97,-3,790,159 +2003,12,27,9,30,47,895,-16,0.14300000000000002,5.2,35.11,-1,790,314 +2003,12,27,10,30,53,961,-17,0.14300000000000002,5.5,32.77,-1,790,430 +2003,12,27,11,30,56,990,-17,0.14300000000000002,5.6000000000000005,31.28,-1,790,493 +2003,12,27,12,30,57,989,-18,0.14300000000000002,5.6000000000000005,30.38,-1,790,495 +2003,12,27,13,30,55,961,-18,0.14300000000000002,5.7,29.59,-1,790,437 +2003,12,27,14,30,49,895,-18,0.14300000000000002,5.5,31.54,-1,790,324 +2003,12,27,15,30,37,744,-18,0.14300000000000002,4.800000000000001,34.87,-3,790,170 +2003,12,27,16,30,17,0,-17,0.14300000000000002,4.3,40.230000000000004,-4,790,17 +2003,12,27,17,30,0,0,-16,0.14300000000000002,4.7,45.03,-5,790,0 +2003,12,27,18,30,0,0,-17,0.14300000000000002,5.4,47.480000000000004,-6,790,0 +2003,12,27,19,30,0,0,-17,0.14300000000000002,6,44.82,-6,790,0 +2003,12,27,20,30,0,0,-18,0.14300000000000002,6.7,45.49,-7,790,0 +2003,12,27,21,30,0,0,-19,0.14300000000000002,7.300000000000001,43.01,-7,790,0 +2003,12,27,22,30,0,0,-19,0.14300000000000002,7.6000000000000005,41.59,-7,790,0 +2003,12,27,23,30,0,0,-19,0.14300000000000002,7.800000000000001,40.62,-7,790,0 +2003,12,28,0,30,0,0,-20,0.14300000000000002,7.7,40.03,-7,790,0 +2003,12,28,1,30,0,0,-20,0.14300000000000002,7.5,39.97,-7,790,0 +2003,12,28,2,30,0,0,-20,0.14300000000000002,7.2,40.44,-7,800,0 +2003,12,28,3,30,0,0,-19,0.14300000000000002,6.800000000000001,41.230000000000004,-7,800,0 +2003,12,28,4,30,0,0,-19,0.14300000000000002,6.5,42.07,-7,800,0 +2003,12,28,5,30,0,0,-19,0.14300000000000002,6,43.09,-7,800,0 +2003,12,28,6,30,0,0,-19,0.14300000000000002,5.5,40.85,-6,800,0 +2003,12,28,7,30,0,0,-18,0.14300000000000002,5.5,41.52,-6,800,0 +2003,12,28,8,30,42,0,-18,0.14300000000000002,5.800000000000001,38.75,-5,800,42 +2003,12,28,9,30,74,614,-18,0.14300000000000002,6.1000000000000005,35.67,-4,800,257 +2003,12,28,10,30,169,273,-18,0.14300000000000002,6.300000000000001,33.31,-3,800,276 +2003,12,28,11,30,172,426,-18,0.14300000000000002,6.300000000000001,33.08,-3,800,360 +2003,12,28,12,30,152,521,-18,0.14300000000000002,6.2,32.55,-3,800,383 +2003,12,28,13,30,148,436,-19,0.14300000000000002,6.2,32.01,-3,800,322 +2003,12,28,14,30,132,112,-19,0.14300000000000002,5.9,31.8,-3,800,167 +2003,12,28,15,30,63,295,-19,0.14300000000000002,5.1000000000000005,34.79,-4,800,116 +2003,12,28,16,30,12,0,-18,0.14300000000000002,4.3,39.94,-5,800,12 +2003,12,28,17,30,0,0,-17,0.14300000000000002,3.9000000000000004,45.480000000000004,-6,800,0 +2003,12,28,18,30,0,0,-17,0.14300000000000002,3.7,50.67,-7,800,0 +2003,12,28,19,30,0,0,-17,0.14300000000000002,3.6,51.53,-7,800,0 +2003,12,28,20,30,0,0,-17,0.14300000000000002,3.7,51.56,-7,800,0 +2003,12,28,21,30,0,0,-17,0.14300000000000002,4.1000000000000005,54.94,-8,800,0 +2003,12,28,22,30,0,0,-17,0.14300000000000002,4.4,53.67,-8,800,0 +2003,12,28,23,30,0,0,-17,0.14300000000000002,4.6000000000000005,52.36,-8,800,0 +2003,12,29,0,30,0,0,-18,0.14300000000000002,4.7,51.39,-8,800,0 +2003,12,29,1,30,0,0,-18,0.14300000000000002,4.6000000000000005,51.2,-8,800,0 +2003,12,29,2,30,0,0,-18,0.14300000000000002,4.3,51.800000000000004,-8,800,0 +2003,12,29,3,30,0,0,-17,0.14300000000000002,4,52.95,-8,800,0 +2003,12,29,4,30,0,0,-17,0.14300000000000002,3.8000000000000003,54.04,-8,800,0 +2003,12,29,5,30,0,0,-17,0.14300000000000002,3.6,54.980000000000004,-8,800,0 +2003,12,29,6,30,0,0,-17,0.14300000000000002,3.3000000000000003,55.6,-8,800,0 +2003,12,29,7,30,0,0,-17,0.14300000000000002,3.4000000000000004,51.910000000000004,-7,800,0 +2003,12,29,8,30,51,0,-17,0.14300000000000002,3.7,41.300000000000004,-4,800,51 +2003,12,29,9,30,80,573,-16,0.14300000000000002,3.8000000000000003,37.07,-2,800,251 +2003,12,29,10,30,92,0,-16,0.14300000000000002,3.6,33.33,0,800,92 +2003,12,29,11,30,154,512,-15,0.14300000000000002,3.3000000000000003,32.5,0,790,380 +2003,12,29,12,30,180,33,-14,0.14300000000000002,3,34.92,0,790,195 +2003,12,29,13,30,139,7,-12,0.14300000000000002,3,40.37,0,790,142 +2003,12,29,14,30,47,868,-12,0.14300000000000002,2.9000000000000004,43.31,0,790,317 +2003,12,29,15,30,67,240,-12,0.14300000000000002,2.6,46.050000000000004,-1,790,111 +2003,12,29,16,30,12,288,-13,0.14300000000000002,2.7,49.04,-2,790,19 +2003,12,29,17,30,0,0,-13,0.14300000000000002,3,49.43,-2,790,0 +2003,12,29,18,30,0,0,-12,0.14300000000000002,3.2,54.19,-3,790,0 +2003,12,29,19,30,0,0,-12,0.14300000000000002,3.1,55,-3,790,0 +2003,12,29,20,30,0,0,-12,0.14300000000000002,2.9000000000000004,56,-3,790,0 +2003,12,29,21,30,0,0,-12,0.14300000000000002,3,57.01,-3,790,0 +2003,12,29,22,30,0,0,-12,0.14300000000000002,3.2,57.81,-3,790,0 +2003,12,29,23,30,0,0,-11,0.14300000000000002,3.3000000000000003,59.1,-2,790,0 +2003,12,30,0,30,0,0,-11,0.14300000000000002,3.5,56.550000000000004,-2,790,0 +2003,12,30,1,30,0,0,-11,0.14300000000000002,3.7,57.89,-2,790,0 +2003,12,30,2,30,0,0,-10,0.14300000000000002,3.8000000000000003,58.4,-1,790,0 +2003,12,30,3,30,0,0,-10,0.14300000000000002,3.8000000000000003,54.230000000000004,-1,790,0 +2003,12,30,4,30,0,0,-10,0.14300000000000002,3.9000000000000004,54.2,-1,790,0 +2003,12,30,5,30,0,0,-10,0.14300000000000002,4.2,54.25,-1,790,0 +2003,12,30,6,30,0,0,-10,0.14300000000000002,4.4,54.86,-1,790,0 +2003,12,30,7,30,0,0,-10,0.14300000000000002,4.3,52.050000000000004,0,790,0 +2003,12,30,8,30,33,695,-9,0.14300000000000002,4.2,47.93,1,790,149 +2003,12,30,9,30,45,853,-8,0.14300000000000002,4.2,50.52,3,790,300 +2003,12,30,10,30,162,330,-7,0.14300000000000002,4.1000000000000005,48.63,4,790,292 +2003,12,30,11,30,62,924,-7,0.14300000000000002,3.8000000000000003,47.6,5,790,472 +2003,12,30,12,30,65,917,-6,0.14300000000000002,3.6,49.81,5,790,474 +2003,12,30,13,30,158,386,-5,0.14300000000000002,3.3000000000000003,59.54,4,790,313 +2003,12,30,14,30,122,317,-5,0.14300000000000002,2.9000000000000004,60.92,3,790,221 +2003,12,30,15,30,37,699,-6,0.14300000000000002,2.1,63.17,2,800,167 +2003,12,30,16,30,12,278,-6,0.14300000000000002,1.3,65.04,0,800,20 +2003,12,30,17,30,0,0,-7,0.14300000000000002,0.9,67.07000000000001,0,800,0 +2003,12,30,18,30,0,0,-7,0.14300000000000002,0.7000000000000001,65.5,0,800,0 +2003,12,30,19,30,0,0,-7,0.14300000000000002,0.8,69.28,-1,800,0 +2003,12,30,20,30,0,0,-8,0.14300000000000002,1,73.60000000000001,-2,800,0 +2003,12,30,21,30,0,0,-8,0.14300000000000002,1.3,72.65,-2,800,0 +2003,12,30,22,30,0,0,-8,0.14300000000000002,1.7000000000000002,71.77,-2,800,0 +2003,12,30,23,30,0,0,-8,0.14300000000000002,1.9000000000000001,71.03,-2,800,0 +2003,12,31,0,30,0,0,-8,0.14300000000000002,1.8,70.12,-2,800,0 +2003,12,31,1,30,0,0,-8,0.14300000000000002,1.6,69.25,-2,800,0 +2003,12,31,2,30,0,0,-8,0.14300000000000002,1.4000000000000001,68.72,-2,800,0 +2003,12,31,3,30,0,0,-8,0.14300000000000002,1.3,68.59,-2,800,0 +2003,12,31,4,30,0,0,-9,0.14300000000000002,1.3,67.99,-2,800,0 +2003,12,31,5,30,0,0,-9,0.14300000000000002,1.3,66.86,-2,800,0 +2003,12,31,6,30,0,0,-9,0.14300000000000002,1.5,64.67,-2,800,0 +2003,12,31,7,30,0,0,-10,0.14300000000000002,1.7000000000000002,57.230000000000004,-1,800,0 +2003,12,31,8,30,63,168,-10,0.14300000000000002,1.8,49.97,0,800,91 +2003,12,31,9,30,48,869,-10,0.14300000000000002,1.8,42.980000000000004,2,800,308 +2003,12,31,10,30,54,945,-10,0.14300000000000002,1.6,36.38,5,800,426 +2003,12,31,11,30,57,972,-11,0.14300000000000002,1.3,31.830000000000002,6,800,489 +2003,12,31,12,30,58,969,-11,0.14300000000000002,0.9,30.45,7,800,492 +2003,12,31,13,30,139,495,-11,0.14300000000000002,0.6000000000000001,34.12,6,800,338 +2003,12,31,14,30,134,101,-8,0.14300000000000002,0.5,45.24,4,800,166 +2003,12,31,15,30,73,120,-9,0.14300000000000002,0.7000000000000001,49.480000000000004,1,800,95 +2003,12,31,16,30,12,317,-11,0.14300000000000002,0.9,46.09,0,800,22 +2003,12,31,17,30,0,0,-5,0.133,0.2,74.33,0,790,0 +2003,12,31,18,30,0,0,-6,0.133,0.4,78.26,-1,790,0 +2003,12,31,19,30,0,0,-6,0.133,0.6000000000000001,77.33,-1,790,0 +2003,12,31,20,30,0,0,-6,0.133,0.6000000000000001,82.83,-2,790,0 +2003,12,31,21,30,0,0,-6,0.133,0.6000000000000001,81.57000000000001,-2,790,0 +2003,12,31,22,30,0,0,-6,0.133,0.6000000000000001,75.41,-1,790,0 +2003,12,31,23,30,0,0,-6,0.133,1,74.52,-1,790,0 diff --git a/dragg/data/waterdraw_profiles.csv b/dragg/data/waterdraw_profiles.csv deleted file mode 100644 index 74d1688..0000000 --- a/dragg/data/waterdraw_profiles.csv +++ /dev/null @@ -1,10081 +0,0 @@ -,Flow_99140-167,Flow_99102-302,Flow_99102-685,Flow_99155-687,Flow_99088-728,Flow_99065-852,Flow_99084-798,Flow_99094-105,Flow_99087-346,Flow_99096-712 -2020-01-01 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:07:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-01 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-01 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-01 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 04:54:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-01 04:55:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 04:56:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 04:57:00,0.0,0.0,0.0,0.0,3.78,7.56,0.0,0.0,0.0,0.0 -2020-01-01 04:58:00,0.0,0.0,0.0,0.0,7.56,0.0,3.78,0.0,0.0,0.0 -2020-01-01 04:59:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:00:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:01:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:02:00,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0 -2020-01-01 05:03:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:04:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:05:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:06:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:09:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:10:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:11:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:12:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:17:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-01 05:18:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:19:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:20:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:22:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:23:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:26:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:27:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:28:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:29:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:45:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:57:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:58:00,0.0,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 05:59:00,0.0,7.56,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:00:00,0.0,3.78,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:01:00,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:02:00,0.0,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:03:00,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:04:00,0.0,0.0,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:05:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:06:00,0.0,0.0,3.78,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:07:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:10:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:16:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:17:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:18:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:19:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:40:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:43:00,3.78,3.78,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:44:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:45:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:46:00,3.78,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:47:00,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:48:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:49:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:50:00,3.78,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:51:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:52:00,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:53:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:54:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:58:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 07:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:13:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:14:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:15:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:20:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:21:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:22:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:23:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:28:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:29:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:30:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:31:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:32:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:34:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 07:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:50:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 07:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:02:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 08:03:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 08:04:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 08:05:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:06:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:07:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:09:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:10:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:11:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:13:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 08:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:55:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 08:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:32:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:37:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:38:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 09:39:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:40:00,0.0,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:41:00,0.0,0.0,11.34,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:42:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 09:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 09:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 09:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:00:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:01:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 10:02:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 10:03:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:04:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:05:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:07:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 10:10:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:21:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 10:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 10:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 10:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 10:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-01 10:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 10:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-01 10:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 10:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-01 10:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:49:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78 -2020-01-01 10:50:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78,0.0,3.78 -2020-01-01 10:51:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-01 10:52:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,3.78 -2020-01-01 10:53:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 10:54:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-01 10:55:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78 -2020-01-01 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:09:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 11:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 12:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56 -2020-01-01 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-01 12:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-01 12:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:36:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 12:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:45:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 12:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 13:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 13:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 13:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:03:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 14:04:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 14:05:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 14:06:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-01 14:07:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 14:08:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 14:09:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-01 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 16:06:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,15.12,0.0,0.0 -2020-01-01 16:07:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,15.12,0.0,0.0 -2020-01-01 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,0.0 -2020-01-01 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0 -2020-01-01 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0 -2020-01-01 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:30:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:36:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:42:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:53:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:54:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:04:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:12:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 17:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-01 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 17:29:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:32:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 17:33:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:34:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 17:40:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:41:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:55:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:58:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:05:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 18:09:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0 -2020-01-01 18:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:26:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:27:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-01 18:29:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,3.78,3.78,0.0 -2020-01-01 18:30:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0,0.0 -2020-01-01 18:31:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0,0.0 -2020-01-01 18:32:00,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0,0.0 -2020-01-01 18:33:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0,0.0 -2020-01-01 18:34:00,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0,0.0 -2020-01-01 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-01 18:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-01 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 18:55:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 18:56:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 18:57:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 18:59:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:09:00,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 19:10:00,0.0,0.0,3.78,0.0,0.0,7.56,0.0,3.78,0.0,0.0 -2020-01-01 19:11:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:13:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-01 19:16:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 19:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:20:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 19:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:25:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:31:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:32:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 19:34:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,11.34,0.0,0.0 -2020-01-01 19:35:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-01 19:36:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-01 19:37:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-01 19:38:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,7.56,7.56,0.0 -2020-01-01 19:39:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,3.78,7.56,0.0 -2020-01-01 19:40:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-01 19:41:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,3.78,7.56,0.0 -2020-01-01 19:42:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,7.56,0.0 -2020-01-01 19:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-01 19:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-01 19:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:53:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:54:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:01:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:02:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:09:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:13:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-01 20:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 20:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:24:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:28:00,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:29:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:47:00,0.0,0.0,0.0,7.56,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-01 20:48:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 20:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 20:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:54:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:55:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:56:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:57:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:58:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 20:59:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:01:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:09:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:11:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:23:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-01 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:30:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:31:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:33:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:45:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:46:00,0.0,0.0,11.34,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:47:00,0.0,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:48:00,0.0,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:58:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 21:59:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:00:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:01:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:02:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:03:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:04:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:05:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:19:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-01 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-01 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:54:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-02 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:58:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-02 04:59:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:00:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:01:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:02:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:03:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:04:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:05:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:06:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:07:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:09:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:10:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:11:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-02 05:12:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-02 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:16:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:19:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:20:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:22:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:23:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 05:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:39:00,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:49:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:50:00,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 05:51:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:52:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:53:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:54:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:56:00,3.78,7.56,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:57:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:58:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 05:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:00:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:04:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:05:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:06:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:07:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:09:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:10:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:11:00,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:13:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:14:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:17:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:18:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:19:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:20:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:21:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:32:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:33:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:34:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 06:35:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 06:36:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 06:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 06:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 06:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 06:40:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 06:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 06:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-02 06:43:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:45:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:46:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:47:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:48:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 06:53:00,0.0,7.56,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 06:54:00,0.0,7.56,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-02 06:55:00,0.0,7.56,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-02 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,0.0,0.0 -2020-01-02 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 06:58:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,3.78 -2020-01-02 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-02 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-02 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,3.78,0.0 -2020-01-02 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,7.56,0.0 -2020-01-02 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-02 07:07:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56,7.56,0.0 -2020-01-02 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,7.56,3.78 -2020-01-02 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-02 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-02 07:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,7.56 -2020-01-02 07:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 07:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 07:14:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-02 07:15:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-02 07:16:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-02 07:17:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,3.78 -2020-01-02 07:18:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78 -2020-01-02 07:19:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,7.56 -2020-01-02 07:20:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 07:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 07:22:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:23:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:24:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:25:00,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 07:26:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:27:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:28:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:29:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:30:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:31:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:35:00,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 07:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0 -2020-01-02 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0 -2020-01-02 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:51:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0 -2020-01-02 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,0.0,0.0 -2020-01-02 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:40:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:44:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 08:45:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-02 08:46:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-02 08:47:00,0.0,0.0,0.0,0.0,0.0,7.56,7.56,0.0,0.0,0.0 -2020-01-02 08:48:00,0.0,0.0,11.34,0.0,0.0,7.56,3.78,0.0,0.0,0.0 -2020-01-02 08:49:00,0.0,0.0,15.12,0.0,0.0,11.34,3.78,0.0,0.0,0.0 -2020-01-02 08:50:00,0.0,0.0,11.34,0.0,0.0,7.56,3.78,0.0,0.0,0.0 -2020-01-02 08:51:00,0.0,0.0,11.34,0.0,0.0,7.56,3.78,0.0,0.0,0.0 -2020-01-02 08:52:00,0.0,0.0,15.12,0.0,0.0,7.56,3.78,0.0,0.0,3.78 -2020-01-02 08:53:00,0.0,0.0,11.34,0.0,0.0,11.34,3.78,0.0,0.0,0.0 -2020-01-02 08:54:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 09:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 09:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:38:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 09:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 09:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-02 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-02 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-02 11:57:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 11:58:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 11:59:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:00:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:10:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:11:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:15:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:18:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:19:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:21:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:22:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:23:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:33:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:34:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:52:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 12:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:24:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:44:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:40:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:45:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 16:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:48:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:49:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:50:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:51:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:52:00,0.0,11.34,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:53:00,0.0,15.12,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:54:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:56:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:57:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:58:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:06:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:07:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 17:09:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:10:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:15:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 17:16:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:17:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:23:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:29:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-02 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:46:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:47:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:52:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:55:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:56:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:05:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:06:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 18:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 18:12:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 18:13:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:15:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:16:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-02 18:17:00,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0 -2020-01-02 18:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:19:00,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0 -2020-01-02 18:20:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:22:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:25:00,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:28:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:29:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:30:00,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:36:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:53:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0 -2020-01-02 18:55:00,0.0,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0 -2020-01-02 18:56:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0 -2020-01-02 18:57:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0 -2020-01-02 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 18:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:01:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-02 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:17:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-02 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 19:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:36:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:37:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 19:38:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 19:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:40:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:42:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:43:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-02 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-02 19:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 19:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:04:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:45:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:48:00,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 20:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-02 20:56:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:09:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:11:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:13:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:18:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:19:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:21:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:22:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:23:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:33:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:39:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 21:59:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 22:00:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 22:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:02:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:23:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 22:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-02 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-02 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-02 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0,0.0 -2020-01-03 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,7.56,0.0,0.0 -2020-01-03 04:57:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,3.78,0.0,0.0 -2020-01-03 04:58:00,0.0,0.0,0.0,0.0,7.56,0.0,3.78,7.56,0.0,0.0 -2020-01-03 04:59:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,3.78,0.0,0.0 -2020-01-03 05:00:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,7.56,0.0,0.0 -2020-01-03 05:01:00,0.0,0.0,0.0,0.0,7.56,0.0,3.78,3.78,0.0,0.0 -2020-01-03 05:02:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-03 05:03:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-03 05:04:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:05:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:06:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:09:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:10:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:11:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:12:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:13:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 05:20:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:23:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 05:24:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:25:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:26:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-03 05:27:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-03 05:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:45:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:58:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 05:59:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:00:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:02:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:03:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:04:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:05:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:06:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:07:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:10:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:11:00,0.0,3.78,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:12:00,0.0,3.78,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:13:00,0.0,7.56,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:18:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:23:00,0.0,7.56,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:24:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:25:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:26:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:27:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:28:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:29:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:30:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:32:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:34:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:35:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:36:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:39:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:40:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:43:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:46:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:47:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:48:00,0.0,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:49:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:50:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:51:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:52:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:53:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:54:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:55:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 06:57:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 06:58:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 06:59:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 07:00:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 07:01:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 07:02:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 07:03:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,11.34,0.0,0.0 -2020-01-03 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,3.78 -2020-01-03 07:07:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56,0.0,3.78 -2020-01-03 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-03 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-03 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 07:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-03 07:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0,3.78 -2020-01-03 07:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-03 07:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-03 07:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-03 07:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-03 07:17:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:18:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-03 07:19:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:20:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-03 07:21:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78 -2020-01-03 07:22:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:23:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:24:00,7.56,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:25:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:26:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:27:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:28:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 07:29:00,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-03 07:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:32:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:36:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:37:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78 -2020-01-03 07:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:51:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 07:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:08:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 08:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:13:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:15:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 08:16:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 08:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:27:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78 -2020-01-03 08:28:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78 -2020-01-03 08:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 08:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:53:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:56:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 08:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 09:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 09:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:39:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 09:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:48:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 09:49:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 09:50:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 09:51:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 09:52:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 09:53:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 09:54:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 09:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:05:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 10:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:45:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 12:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:10:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:11:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:12:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:13:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:16:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:17:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:18:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:21:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:22:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:25:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:27:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:29:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-03 13:30:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-03 13:31:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12 -2020-01-03 13:32:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-03 13:33:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:34:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:35:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:36:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:39:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:40:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 14:32:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0 -2020-01-03 14:33:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 14:34:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 14:35:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 14:36:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 14:37:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 14:38:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-03 14:39:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 14:40:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-03 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 14:59:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:55:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:05:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0 -2020-01-03 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:57:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 16:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:10:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:13:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:16:00,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 17:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:20:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 17:21:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:27:00,0.0,3.78,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:28:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:29:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:30:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:31:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:32:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 17:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 17:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:43:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:49:00,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 17:50:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:00:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:04:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 18:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 18:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:09:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 18:10:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 18:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:33:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:35:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:51:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:52:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:53:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:57:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:58:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 18:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:00:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-03 19:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-03 19:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-03 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0 -2020-01-03 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0 -2020-01-03 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-03 19:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-03 19:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 19:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:44:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:50:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:51:00,0.0,3.78,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-03 19:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:54:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:01:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:04:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:09:00,0.0,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:14:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:15:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:16:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:18:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:19:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:27:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-03 20:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 20:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 20:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 21:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-03 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:05:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:06:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 21:07:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 21:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:09:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:10:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:11:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:13:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-03 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-03 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:39:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 21:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:26:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:30:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:31:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:39:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-03 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:25:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:32:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-04 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-04 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-04 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-04 04:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 04:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 04:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:14:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:15:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:16:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 05:18:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:44:00,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:45:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:46:00,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 05:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:02:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:03:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:04:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:05:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:06:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:07:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:08:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:13:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 06:14:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 06:15:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 06:16:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 06:17:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 06:18:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 06:19:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 06:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:22:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 06:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:37:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 06:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:55:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:11:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:12:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:13:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:14:00,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78 -2020-01-04 07:15:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:16:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:17:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:18:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:19:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-04 07:20:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:21:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:22:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,3.78,3.78 -2020-01-04 07:23:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,7.56,3.78 -2020-01-04 07:24:00,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0,3.78,3.78 -2020-01-04 07:25:00,3.78,0.0,3.78,0.0,0.0,7.56,0.0,0.0,3.78,3.78 -2020-01-04 07:26:00,0.0,0.0,7.56,0.0,0.0,11.34,0.0,0.0,3.78,3.78 -2020-01-04 07:27:00,0.0,0.0,3.78,0.0,0.0,0.0,7.56,0.0,3.78,3.78 -2020-01-04 07:28:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78 -2020-01-04 07:29:00,0.0,0.0,7.56,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-04 07:30:00,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 07:31:00,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 07:32:00,0.0,0.0,7.56,0.0,0.0,7.56,3.78,0.0,0.0,0.0 -2020-01-04 07:33:00,0.0,0.0,0.0,0.0,0.0,7.56,7.56,0.0,0.0,0.0 -2020-01-04 07:34:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 07:35:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 07:36:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 07:37:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 07:38:00,0.0,0.0,0.0,0.0,0.0,7.56,3.78,0.0,3.78,0.0 -2020-01-04 07:39:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 07:40:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 07:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:47:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:48:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:49:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 07:50:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78 -2020-01-04 07:51:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:52:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:53:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:54:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:57:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:58:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 07:59:00,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 08:00:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:01:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:02:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:03:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:04:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:05:00,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 08:06:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:07:00,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:08:00,0.0,11.34,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:09:00,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:10:00,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:11:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:12:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:13:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:14:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:15:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:16:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:17:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:18:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:19:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:27:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:29:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:30:00,0.0,3.78,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:31:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:35:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 08:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:56:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:57:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:58:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 08:59:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:00:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:01:00,0.0,0.0,15.12,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 09:02:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:03:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:04:00,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:09:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:14:00,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 09:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:37:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:38:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:39:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:40:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:41:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:43:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:44:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:45:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:46:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:47:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:48:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:49:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:50:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:51:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:52:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:53:00,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 09:54:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:55:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:56:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:57:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:58:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 09:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:00:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:05:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:10:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:11:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:12:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:13:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:20:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 10:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:40:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:41:00,0.0,7.56,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:43:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:46:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:47:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:48:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:49:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:03:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 11:04:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:11:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 11:12:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 11:13:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 11:14:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 11:15:00,0.0,0.0,0.0,3.78,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-04 11:16:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 11:17:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,7.56 -2020-01-04 11:18:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,11.34 -2020-01-04 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-04 11:20:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,7.56 -2020-01-04 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 11:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 11:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:09:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:11:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:13:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:14:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:15:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 12:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 12:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:22:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-04 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 13:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 14:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:48:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:56:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:57:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:04:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:05:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-04 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 15:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:30:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:34:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:35:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:17:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:38:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:41:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-04 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 16:43:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 16:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 17:02:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-04 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:33:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:40:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:50:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:51:00,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:58:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:11:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:12:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:18:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:19:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:27:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:29:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:30:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:31:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:32:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 18:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 18:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:42:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 18:43:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:49:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:51:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:52:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:53:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:56:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 18:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 18:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:01:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0 -2020-01-04 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0 -2020-01-04 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0 -2020-01-04 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0 -2020-01-04 19:06:00,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-04 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:42:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:43:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 19:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 19:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:52:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:53:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 19:54:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 19:57:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0 -2020-01-04 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0 -2020-01-04 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0 -2020-01-04 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 20:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:05:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:15:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:16:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:18:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:19:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:20:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:21:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:22:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:25:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:26:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:28:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 20:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:36:00,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-04 20:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0 -2020-01-04 20:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,18.9,0.0 -2020-01-04 20:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0 -2020-01-04 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-04 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 21:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-04 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:21:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:22:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:24:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:26:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 21:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-04 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:37:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-04 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:04:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:05:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 04:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-05 04:58:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0 -2020-01-05 04:59:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:00:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0 -2020-01-05 05:01:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:02:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-05 05:04:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0 -2020-01-05 05:05:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-05 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:48:00,7.56,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:49:00,11.34,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:50:00,11.34,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:51:00,11.34,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:52:00,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:53:00,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:54:00,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:55:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 05:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:00:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 06:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:03:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:15:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:16:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:17:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:18:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:19:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:20:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:21:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:28:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 06:29:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 06:30:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 06:31:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-05 06:32:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:34:00,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0 -2020-01-05 06:35:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,3.78 -2020-01-05 06:36:00,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0,3.78 -2020-01-05 06:37:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,3.78 -2020-01-05 06:38:00,3.78,0.0,3.78,0.0,0.0,0.0,7.56,7.56,0.0,3.78 -2020-01-05 06:39:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,3.78 -2020-01-05 06:40:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0,3.78 -2020-01-05 06:41:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,3.78 -2020-01-05 06:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-05 06:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-05 06:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-05 06:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-05 06:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-05 06:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,7.56 -2020-01-05 06:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 06:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 06:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:05:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:06:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 07:07:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-05 07:08:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,7.56 -2020-01-05 07:09:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0,7.56 -2020-01-05 07:10:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56 -2020-01-05 07:11:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56 -2020-01-05 07:12:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-05 07:13:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-05 07:14:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:15:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 07:16:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 07:17:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 07:18:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:19:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:20:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-05 07:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:30:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 07:31:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 07:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 07:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:42:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:44:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0 -2020-01-05 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 07:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 08:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:11:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 08:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:24:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:35:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:36:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:37:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-05 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:56:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:57:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:02:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:03:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:27:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:32:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:39:00,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:44:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 09:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 09:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:03:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:04:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-05 10:05:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:06:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-05 10:07:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:08:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:09:00,0.0,0.0,0.0,7.56,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-05 10:10:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:11:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-05 10:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:25:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:27:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:29:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:30:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:31:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:32:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:33:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:34:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:35:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:36:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:39:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:40:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:43:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:46:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:47:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:49:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-05 10:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-05 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34 -2020-01-05 10:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:09:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:10:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:11:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:12:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:15:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:16:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:17:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:31:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:32:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:33:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:34:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:35:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:36:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:37:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:08:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:22:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:23:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:26:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:29:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:30:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:31:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:32:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 12:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:46:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 15:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0 -2020-01-05 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:52:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-05 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:26:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:30:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:39:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:40:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:41:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:45:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 16:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 16:54:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:02:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 17:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:48:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:49:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:50:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:51:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:55:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-05 18:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:20:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 18:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 18:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 19:07:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:18:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:21:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:22:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:23:00,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-05 19:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:25:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:26:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:27:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:29:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:30:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:31:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:32:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 19:33:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:34:00,0.0,7.56,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:35:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 19:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:51:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:57:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:00:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:01:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:02:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:03:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:05:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:15:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:16:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:17:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:18:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:19:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:20:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:23:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:33:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:37:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:50:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 21:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 21:23:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 21:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-05 21:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 21:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 22:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-05 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:28:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:31:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:33:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:34:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-05 22:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:48:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:53:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:54:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:55:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 23:13:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-05 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:37:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:39:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-05 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:13:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 04:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 05:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 05:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:16:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 05:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 05:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 05:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:53:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:54:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:56:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:57:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:58:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 05:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:00:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:01:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:06:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:10:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 06:11:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 06:12:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 06:13:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:16:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:18:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:19:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:20:00,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:21:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:22:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:23:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:24:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:25:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:32:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-06 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:34:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:35:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-06 06:36:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:37:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:38:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:39:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:40:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:41:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 06:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 06:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 06:44:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-06 06:45:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 06:46:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-06 06:47:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 06:48:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-06 06:49:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-06 06:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 06:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 06:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 06:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 06:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 06:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.34,0.0 -2020-01-06 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 06:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 07:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:14:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 07:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:16:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:17:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:18:00,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 07:19:00,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 07:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:21:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 07:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:24:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-06 07:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:29:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 07:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-06 07:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:35:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 07:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 07:42:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 08:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:16:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 08:17:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:28:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 08:31:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:50:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:01:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 09:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-06 09:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-06 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-06 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:20:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:21:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:22:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:23:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:24:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:25:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:27:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:28:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:29:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:30:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 09:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 09:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:48:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:49:00,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:50:00,7.56,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:51:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 09:57:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-06 09:58:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 09:59:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 10:00:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 10:01:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-06 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 10:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:07:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:09:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-06 10:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:18:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:27:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:28:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:29:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:30:00,0.0,0.0,7.56,7.56,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:31:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:32:00,0.0,0.0,7.56,3.78,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 10:33:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:34:00,0.0,0.0,7.56,3.78,0.0,0.0,3.78,3.78,0.0,3.78 -2020-01-06 10:35:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-06 10:36:00,0.0,0.0,7.56,3.78,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-06 10:37:00,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 10:38:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 10:39:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:40:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:41:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:46:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:47:00,7.56,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:48:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 10:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:53:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-06 10:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:55:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 11:07:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:15:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 11:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:19:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:25:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:26:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 11:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 11:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78 -2020-01-06 11:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:57:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:58:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:03:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:06:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:13:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:17:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:23:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 12:24:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:25:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:26:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:27:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:28:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:29:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 12:30:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:32:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:35:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 12:36:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:38:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:39:00,0.0,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:40:00,0.0,0.0,11.34,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 12:41:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-06 12:47:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 12:50:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:51:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:52:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 12:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 12:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:00:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:19:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:22:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 13:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,3.78 -2020-01-06 13:41:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:42:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:51:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 13:54:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:55:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:06:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-06 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-06 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:27:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:29:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78 -2020-01-06 14:30:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56 -2020-01-06 14:31:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,15.12 -2020-01-06 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-06 14:33:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:34:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:35:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:37:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:38:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:40:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:41:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:42:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:44:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:45:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:47:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:49:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 14:52:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:53:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78 -2020-01-06 14:54:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:55:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:56:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:17:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 15:18:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-06 15:19:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 15:20:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-06 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 16:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:37:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:38:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:40:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 16:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 16:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 17:05:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-06 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:12:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0 -2020-01-06 17:13:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:14:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 17:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:25:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:26:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:35:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 17:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 17:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-06 17:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-06 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 17:58:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-06 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:09:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 18:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 18:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 18:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:41:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:50:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 18:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 19:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:31:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:35:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:38:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:42:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:43:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:44:00,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:45:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:46:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:47:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 19:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 19:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:55:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 19:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:12:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:14:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 20:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 20:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 20:21:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:22:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:23:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:25:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:27:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:28:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:29:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 20:30:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:31:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:32:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:33:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:34:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:35:00,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:36:00,0.0,7.56,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:37:00,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:38:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:40:00,0.0,7.56,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:41:00,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:43:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:44:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:45:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:47:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:52:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:54:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 21:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 21:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 21:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-06 21:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-06 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 21:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-06 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-06 22:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:39:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:42:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:43:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:51:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:05:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:09:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:10:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:11:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:12:00,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:16:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:17:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:21:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:22:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:23:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:24:00,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:25:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:26:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:28:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:29:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:30:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-06 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 00:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 01:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 02:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 02:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 03:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 03:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 03:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:08:00,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-07 04:09:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 04:10:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 04:11:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 04:12:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 04:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 04:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:18:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:19:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:20:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:21:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:22:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:23:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:24:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:25:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:28:00,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0 -2020-01-07 05:29:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:30:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:31:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:32:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:40:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:57:00,3.78,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:58:00,3.78,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 05:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:00:00,7.56,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:01:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:02:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:03:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:04:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:05:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:09:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 06:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:12:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:13:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:14:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:15:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:16:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:17:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:18:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:19:00,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 06:20:00,0.0,3.78,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 06:21:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:22:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:23:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:24:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:25:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:27:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 06:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:46:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 06:49:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 06:50:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 06:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 06:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 06:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 06:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:18:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:25:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:26:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:27:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:28:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:36:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:37:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:38:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:39:00,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:40:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:41:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:42:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 07:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 07:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 07:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 07:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:58:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 07:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:00:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:01:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:02:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:03:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:04:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:06:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:07:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:09:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 08:10:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 08:11:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 08:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 08:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 08:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 08:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 08:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 08:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 08:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 08:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 08:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.12,0.0,0.0 -2020-01-07 09:00:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0,0.0 -2020-01-07 09:01:00,0.0,0.0,0.0,11.34,0.0,0.0,7.56,7.56,0.0,0.0 -2020-01-07 09:02:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-07 09:03:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:04:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:05:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,3.78,0.0 -2020-01-07 09:06:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:07:00,0.0,0.0,0.0,7.56,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:08:00,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:09:00,0.0,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0,0.0 -2020-01-07 09:10:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0,0.0 -2020-01-07 09:11:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,7.56,0.0,0.0 -2020-01-07 09:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 09:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 09:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 09:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 09:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,3.78,0.0 -2020-01-07 09:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-07 09:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 09:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:26:00,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 09:27:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 09:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:29:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 09:30:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:34:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 09:35:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:36:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:38:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 09:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:41:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-07 09:42:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0,0.0 -2020-01-07 09:43:00,0.0,0.0,0.0,0.0,0.0,18.9,0.0,0.0,0.0,0.0 -2020-01-07 09:44:00,0.0,0.0,0.0,0.0,0.0,15.12,3.78,0.0,0.0,0.0 -2020-01-07 09:45:00,0.0,0.0,0.0,0.0,0.0,15.12,0.0,0.0,0.0,0.0 -2020-01-07 09:46:00,0.0,0.0,0.0,0.0,0.0,22.68,0.0,0.0,0.0,0.0 -2020-01-07 09:47:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0 -2020-01-07 09:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 09:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-07 09:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 09:54:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-07 09:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 09:56:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-07 09:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 09:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 09:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:08:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0 -2020-01-07 10:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:12:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,7.56,0.0,0.0 -2020-01-07 10:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 10:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 10:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 10:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:40:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 10:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:44:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:45:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:52:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:53:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:54:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:56:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 10:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:05:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 11:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:09:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 11:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 11:14:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:15:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0,0.0 -2020-01-07 11:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:18:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 11:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 11:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 11:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 11:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 11:23:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0 -2020-01-07 11:24:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,3.78,0.0,0.0 -2020-01-07 11:25:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-07 11:26:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,3.78,0.0 -2020-01-07 11:27:00,0.0,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-07 11:28:00,3.78,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-07 11:29:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 11:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:31:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 11:32:00,3.78,0.0,0.0,0.0,0.0,11.34,0.0,0.0,0.0,0.0 -2020-01-07 11:33:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-07 11:34:00,0.0,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0 -2020-01-07 11:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 11:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:39:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 11:40:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 11:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 11:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:49:00,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0 -2020-01-07 11:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:53:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0 -2020-01-07 11:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 11:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:01:00,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:05:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 12:06:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,3.78,0.0 -2020-01-07 12:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 12:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 12:38:00,0.0,0.0,0.0,3.78,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 12:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 12:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 12:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:50:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:51:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:52:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:53:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:54:00,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:55:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:56:00,0.0,0.0,7.56,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:57:00,0.0,0.0,3.78,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 12:58:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,3.78,0.0 -2020-01-07 12:59:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:00:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,3.78,0.0,0.0 -2020-01-07 13:01:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:02:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:12:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:13:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 13:16:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:43:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 13:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:55:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-07 13:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 13:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 14:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 14:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:04:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 15:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 15:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:44:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 15:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:04:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:43:00,0.0,11.34,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:44:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:45:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:46:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:47:00,0.0,15.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:48:00,0.0,11.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:49:00,0.0,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:58:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 16:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:02:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:06:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:19:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:20:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:21:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:37:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 17:38:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0 -2020-01-07 17:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-07 17:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:54:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 17:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:02:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:03:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:04:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:05:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:06:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:08:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:09:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:10:00,7.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:12:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:13:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:18:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:21:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:37:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:42:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:51:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:54:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:55:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:56:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 18:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 18:59:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:00:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:24:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:35:00,0.0,0.0,0.0,0.0,0.0,3.78,0.0,7.56,0.0,0.0 -2020-01-07 19:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 19:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:45:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 19:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:51:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:52:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 19:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 19:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 20:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:11:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:25:00,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:27:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:34:00,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 20:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 20:36:00,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 20:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0 -2020-01-07 20:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56,0.0 -2020-01-07 20:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 20:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-07 20:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 20:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.56 -2020-01-07 20:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 20:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 20:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78,0.0,0.0 -2020-01-07 21:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:07:00,3.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:08:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:26:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:27:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:32:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:33:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:34:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:36:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:37:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:38:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:39:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:40:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:41:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:50:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:51:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:52:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:53:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:54:00,0.0,0.0,0.0,0.0,7.56,0.0,0.0,0.0,0.0,3.78 -2020-01-07 21:55:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 21:57:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78 -2020-01-07 21:58:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0 -2020-01-07 21:59:00,0.0,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,3.78 -2020-01-07 22:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:16:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:48:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:49:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:50:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:51:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:52:00,0.0,0.0,0.0,3.78,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 22:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:00:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.78 -2020-01-07 23:01:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:02:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:03:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:04:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:05:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:06:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:07:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:08:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:09:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:10:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:11:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:12:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:13:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:14:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:15:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:16:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:17:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:18:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:19:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:20:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:21:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:22:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:23:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:24:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:25:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:26:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:27:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:28:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:29:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:30:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:31:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:32:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:33:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:34:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:35:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:36:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:37:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:38:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:39:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:40:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:41:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:42:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:43:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:44:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:45:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:46:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:47:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:48:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:49:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:50:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:51:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:52:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:53:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:54:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:55:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:56:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:57:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:58:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2020-01-07 23:59:00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/dragg/devices/__init__.py b/dragg/devices/__init__.py new file mode 100644 index 0000000..944da13 --- /dev/null +++ b/dragg/devices/__init__.py @@ -0,0 +1,5 @@ +from .hvac import * +from .electric_vehicle import * +from .water_heater import * +from .pv import * +from .battery import * \ No newline at end of file diff --git a/dragg/devices/battery.py b/dragg/devices/battery.py new file mode 100644 index 0000000..1e67c48 --- /dev/null +++ b/dragg/devices/battery.py @@ -0,0 +1,50 @@ +import os +import numpy as np +import cvxpy as cp + +class Battery: + """ + A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model + to determine the indoor air temperature of the home. + + Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document + """ + def __init__(self, hems): + self.hems = hems + # Define constants + self.batt_max_rate = cp.Constant(float(self.home["battery"]["max_rate"])) + self.batt_cap_total = cp.Constant(float(self.home["battery"]["capacity"])) + self.batt_cap_min = cp.Constant(float(self.home["battery"]["capacity_lower"]) * self.batt_cap_total.value) + self.batt_cap_max = cp.Constant(float(self.home["battery"]["capacity_upper"]) * self.batt_cap_total.value) + self.batt_ch_eff = cp.Constant(float(self.home["battery"]["ch_eff"])) + self.batt_disch_eff = cp.Constant(float(self.home["battery"]["disch_eff"])) + + # Define battery optimization variables + self.p_batt_ch = cp.Variable(self.horizon) + self.p_batt_disch = cp.Variable(self.horizon) + self.p_elec = cp.Variable(self.horizon) + self.e_batt = cp.Variable(self.h_plus) + + self.opt_keys = {'p_batt_ch', 'p_batt_disch', 'e_batt_opt'} + + def add_constraints(self): + cons = [ + # Battery constraints + self.e_batt[1:] == self.e_batt[:-1] + + (self.batt_ch_eff * self.p_batt_ch + + self.p_batt_disch / self.batt_disch_eff) / self.hems.dt, + self.e_batt[0] == self.hems.e_batt_init, + self.p_batt_ch <= self.batt_max_rate, + -self.p_batt_disch <= self.batt_max_rate, + self.p_batt_ch >= 0, + self.p_batt_disch <= 0, + self.p_elec == self.p_batt_ch - self.p_batt_disch, + self.e_batt[1:] <= self.batt_cap_max, + self.e_batt[1:] >= self.batt_cap_min] + return cons + + def resolve(self): + cons = self.add_constraints() + obj = cp.Minimize(cp.sum(self.p_batt_ch)) + prob = cp.Problem(obj, cons) + prob.solve() \ No newline at end of file diff --git a/dragg/devices/electric_vehicle.py b/dragg/devices/electric_vehicle.py new file mode 100644 index 0000000..3aceec4 --- /dev/null +++ b/dragg/devices/electric_vehicle.py @@ -0,0 +1,118 @@ +import os +import numpy as np +import cvxpy as cp + +class EV: + def __init__(self, hems): + # set centralized hems for sensor values and occ schedule + self.hems = hems + + # create minimum MPC horizon for EV due to long "away" periods + # (EV should be able to forsee the entirety of its trip away and back + duration) + self.min_horizon = int(24 * self.hems.dt) + self.horizon = max(self.hems.horizon, self.min_horizon) + self.h_plus = self.horizon + 1 + + # Define constants + self.ev_max_rate = 5 # kWh + self.ev_cap_total = 16 # kWh + self.ev_cap_min = 0.4*self.ev_cap_total + self.ev_cap_max = self.ev_cap_total + self.ev_ch_eff = cp.Constant(0.95) + self.ev_disch_eff = cp.Constant(0.97) + self.e_ev_init = cp.Constant(16) + self.p_ev_disch = cp.Constant(np.zeros(self.horizon)) # uncontrolled discharge while driving + + # Define battery optimization variables + self.p_ev_ch = cp.Variable(self.horizon) # charge + self.p_v2g = cp.Variable(self.horizon) # v2g discharge + self.p_elec = cp.Variable(self.horizon) + self.e_ev = cp.Variable(self.h_plus) + self.ev_preference = cp.Constant(np.random.uniform(0.5,0.7)) + self.p_preference = cp.Constant(self.ev_max_rate * 0.3) + # self.charge_penalty = cp.Variable(1) + + # track these values + self.opt_keys = {'p_ev_ch', 'p_ev_disch', 'p_v2g', 'e_ev_opt', 'returning_horizon', 'leaving_horizon'} + + def add_constraints(self, enforce_bounds=True, zero_v2g=True): + """ + Creates constraints that make the battery act as an EV with charge/discharge constraints + based on occupancy and travel distance. + + :return: None + """ + trip_mi = 41 # round trip avg (home to work) + full_charge = 150 # low end for nissan leaf + min_daily_soc = 41/150 + ev_batt_cap = 16 # kWh + e_disch_trip = min_daily_soc * ev_batt_cap + p_disch_trip = -1 * e_disch_trip * self.hems.dt + + self.p_ev_disch = cp.Constant([p_disch_trip/2 if i in [self.hems.today_leaving, self.hems.today_returning, self.hems.tomorrow_leaving, self.hems.tomorrow_returning] else 0 for i in self.hems.subhour_of_day_current[:self.horizon]]) + self.v2g_max = -1 * np.multiply(self.ev_max_rate, self.hems.occ_current[:self.horizon]) + self.p_ch_max = np.minimum(self.p_preference.value * np.ones(self.horizon), np.multiply(self.ev_max_rate, self.hems.occ_current[:self.horizon])) + + cons = [ + self.p_v2g <= 0, + self.p_v2g >= self.v2g_max, + self.e_ev[1:] == self.e_ev[:-1] + + (self.ev_ch_eff * self.p_ev_ch + + self.p_ev_disch / self.ev_disch_eff + + self.p_v2g / self.ev_disch_eff) / self.hems.dt, + self.e_ev[0] == self.hems.e_ev_init, + self.p_ev_ch <= self.p_ch_max, + self.p_ev_ch >= 0, + self.e_ev >= 0, + self.e_ev <= self.ev_cap_total, + self.p_elec == self.p_ev_ch - self.p_v2g, + ] + + if zero_v2g: + cons += [self.p_v2g==0] + + if enforce_bounds: + cons += [ + self.p_ev_ch <= self.p_preference, # preferred max charge rate + self.e_ev[1:] <= self.ev_cap_max, # preferred min SOC + self.e_ev[1:] >= self.ev_cap_min, + ] + + return cons + + def resolve(self): + cons = self.add_constraints() + obj = cp.Minimize(cp.sum(self.p_elec)) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + + if not prob.status == "optimal": + cons = self.add_constraints(enforce_bounds=False) + obj = cp.Minimize(1) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + + def override_charge(self, cmd): + self.obj = cp.Variable(1) + if cmd >= 0: + cons = [ + self.obj == cmd * self.ev_max_rate - self.p_ev_ch[0], + self.obj >= 0, + self.p_v2g[0] == 0 + ] + obj_m = cp.Minimize(self.obj) + else: + cons = [ + self.obj == cmd * self.ev_max_rate - self.p_v2g[0], + self.p_v2g[0] >= cmd * self.ev_max_rate, + self.p_ev_ch[0] == 0] + obj_m = cp.Maximize(self.obj) + + prob = cp.Problem(obj_m, cons + self.add_constraints(enforce_bounds=False, zero_v2g=False)) + prob.solve(solver=self.hems.solver) + + if not prob.status == 'optimal': + self.resolve() + + return cons + diff --git a/dragg/devices/hvac.py b/dragg/devices/hvac.py new file mode 100644 index 0000000..202e00e --- /dev/null +++ b/dragg/devices/hvac.py @@ -0,0 +1,190 @@ +import os +import numpy as np +import cvxpy as cp + +class HVAC: + """ + A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model + to determine the indoor air temperature of the home. + + Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document + """ + def __init__(self, hems): + # set the centralized hems + self.hems = hems + + # set hvac cooling and heating parameters, random dist from aggregator + self.p_c = cp.Constant(float(self.hems.home["hvac"]["p_c"])) # thermal power (kW) + self.p_h = cp.Constant((float(self.hems.home["hvac"]["p_h"]))) + self.cop_c = 0.293 * cp.Constant(float(self.hems.home["hvac"]["hvac_seer"])) # seer = thermal power / electrical power (kBtu/kW) + self.cop_h = 0.293 * cp.Constant(float(self.hems.home["hvac"]["hvac_hspf"])) + + # coefficient matrix + self.b = [1/(self.hems.r.value*self.hems.c.value), self.hems.window_eq.value/self.hems.c.value, 1/self.hems.c.value] + + # optimization variables + self.p_elec = cp.Variable(self.hems.horizon) + self.temp_in_ev = cp.Variable(self.hems.h_plus) + self.temp_in = cp.Variable(1) + self.cool_on = cp.Variable(self.hems.horizon, integer=True) # integer represents duty cycle + self.heat_on = cp.Variable(self.hems.horizon, integer=True) + + # Home temperature constraints + # create temp bounds based on occ schedule, array should be one week long + self.occ_t_in_min = float(self.hems.home["hvac"]["temp_in_min"]) + self.unocc_t_in_min = float(self.hems.home["hvac"]["temp_in_min"]) - float(self.hems.home["hvac"]["temp_setback_delta"]) + self.occ_t_in_max = float(self.hems.home["hvac"]["temp_in_max"]) + self.unocc_t_in_max = float(self.hems.home["hvac"]["temp_in_max"]) + float(self.hems.home["hvac"]["temp_setback_delta"]) + self.t_deadband = self.occ_t_in_max - self.occ_t_in_min + + self.opt_keys = {"temp_in_opt","hvac_cool_on_opt", "hvac_heat_on_opt","t_in_min", "t_in_max", "occupancy_status"} + + def add_constraints(self, enforce_bounds=[True, True]): + """ + :parameter enforce_bounds: boolean determines whether comfort bounds are strictly enforced + :return: cons, a list of CVXPY constraints + + A method to introduce physical constraints to the HVAC equipment. The A/C and heat are + alternately disabled by "season" to reduce on/off cycling and/or simaultaneous heating + and cooling when the electricity price is negative. + """ + + self.t_in_min_current = cp.Constant([self.occ_t_in_min if i else self.unocc_t_in_min for i in self.hems.occ_current[:self.hems.h_plus]]) + self.t_in_max_current = cp.Constant([self.occ_t_in_max if i else self.unocc_t_in_max for i in self.hems.occ_current[:self.hems.h_plus]]) + + self.cool_min = 0 + self.heat_min = 0 + self.heat_max = self.hems.sub_subhourly_steps + self.cool_max = self.hems.sub_subhourly_steps + + cons = [ + # Physical indoor air temperature constraints + # self.temp_in_ev = indoor air temperature expected value (prediction) + self.temp_in_ev[0] == self.hems.temp_in_init, + self.temp_in_ev[1:] == self.temp_in_ev[:-1] + + (self.b[0] * (self.hems.oat_current[1:] - self.temp_in_ev[:-1]) + + self.b[1] * self.hems.ghi_current[1:] + - self.b[2] * self.cool_on * self.p_c * 1000 + + self.b[2] * self.heat_on * self.p_h * 1000) * 3600 * self.hems.dt_frac, + + # electric power as a function of thermal power + # note: hems.dt_frac = fraction of an hour that corresponds to minimum duty cycle runtime + self.p_elec == ((self.cool_on * self.p_c / self.cop_c) + (self.heat_on * self.p_h / self.cop_h)) / self.hems.sub_subhourly_steps, + + # temperature at the next timestep (actual value) + self.temp_in == self.hems.temp_in_init + + (self.b[0] * (self.hems.oat_current[1] - self.hems.temp_in_init) + + self.b[1] * self.hems.ghi_current[1] + - self.b[2] * self.cool_on[0] * self.p_c * 1000 + + self.b[2] * self.heat_on[0] * self.p_h * 1000) * 3600 * self.hems.dt_frac, + + # constrain cooling on/off to be integer (duty cycle) + self.cool_on <= self.cool_max, + self.cool_on >= self.cool_min, + self.heat_on <= self.heat_max, + self.heat_on >= self.heat_min, + ] + + if enforce_bounds[0]: + # Enforces comfort constraints, which are sometimes impossible to adhere to + cons += [ + self.temp_in <= self.t_in_max_current[0], + self.temp_in >= self.t_in_min_current[0], + self.temp_in_ev[1:] >= self.t_in_min_current[:self.hems.horizon], + self.temp_in_ev[1:] <= self.t_in_max_current[:self.hems.horizon], + ] + + if enforce_bounds[1]: + # safety bounds for temperature -- always obeyed + self.temp_in_ev >= self.unocc_t_in_min, + self.temp_in_ev <= self.unocc_t_in_max, + + return cons + + def resolve(self): + """ + :return: none + + Re-solves only the HVAC portion of the MPC scheduling problem, since sometimes the comfort + constraints are impossible to adhere to the comfort bounds are not enforced but the difference + in the observed temp and the desired temp is minimized. + """ + # add physical constraints, attempt to obey thermal preference + cons = self.add_constraints() + + # not the ideal solution to resolve heat and cooling at the same time + if self.hems.temp_in_init.value <= self.t_in_max_current[0].value: + cons += [self.cool_on == 0] + if self.hems.temp_in_init.value >= self.t_in_min_current[0].value: + cons += [self.heat_on == 0] + + obj = cp.Minimize(self.p_elec[0]) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + + if not prob.status == 'optimal': + # if thermal preferences are infeasible resolve within safety bounds + cons = self.add_constraints(enforce_bounds=[False, True]) + + # not the ideal solution to resolve heat and cooling at the same time + if self.hems.temp_in_init.value <= self.t_in_max_current[0].value: + cons += [self.cool_on == 0] + if self.hems.temp_in_init.value >= self.t_in_min_current[0].value: + cons += [self.heat_on == 0] + + obj = cp.Minimize(cp.sum(cp.abs(self.temp_in_ev - (self.t_in_min_current + 0.5 * self.t_deadband)))) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + # print(prob.status) + + if not prob.status == 'optimal': + # if thermal preferences are infeasible resolve within safety bounds + cons = self.add_constraints(enforce_bounds=[False, False]) + + # not the ideal solution to resolve heat and cooling at the same time + if self.hems.temp_in_init.value <= self.t_in_max_current[0].value: + cons += [self.cool_on == 0] + if self.hems.temp_in_init.value >= self.t_in_min_current[0].value: + cons += [self.heat_on == 0] + + obj = cp.Minimize(cp.sum(cp.abs(self.temp_in_ev - (self.t_in_min_current + 0.5 * self.t_deadband)))) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + # print(prob.status) + + def override_t_in(self, cmd): + """ + :parameter cmd: float between [-1,1] + :return: none + + A method for manually setting the temperature setpoint in the home. + The result will set the thermal setpoint between the min and max safety bounds (unoccupied + temperatures) as dictated by the normalized command. + """ + t_sp = cmd * self.t_deadband + self.occ_t_in_min + self.obj = cp.Variable(1) + if self.hems.temp_in_init.value > t_sp: + cons = [ + self.obj == self.temp_in - t_sp, + self.obj >= -1 ] + else: + cons = [ + self.obj == t_sp - self.temp_in, + self.obj >= -1 + ] + + if self.hems.oat_current.value[0] <= self.t_in_min_current.value[0]: + cons += [self.cool_on == 0] + + elif self.hems.oat_current.value[0] >= self.t_in_max_current.value[0]: + cons += [self.heat_on == 0] + + prob = cp.Problem(cp.Minimize(self.obj), cons + self.add_constraints()) + prob.solve(solver=self.hems.solver) + print(prob.status, self.obj.value) + if not prob.status == 'optimal': + self.resolve() + + return cons + + diff --git a/dragg/devices/pv.py b/dragg/devices/pv.py new file mode 100644 index 0000000..5a2acac --- /dev/null +++ b/dragg/devices/pv.py @@ -0,0 +1,37 @@ +import os +import numpy as np +import cvxpy as cp + +class PV: + """ + A class for the HVAC device in a smart home. This model uses a linear R1-C1 thermal model + to determine the indoor air temperature of the home. + + Source of linear model: https://hal.archives-ouvertes.fr/hal-01739625/document + """ + def __init__(self, hems): + self.hems = hems + # Define constants + self.area = cp.Constant(float(self.hems.home["pv"]["area"])) + self.eff = cp.Constant(float(self.hems.home["pv"]["eff"])) + + # Define PV Optimization variables + self.p_elec = cp.Variable(self.hems.horizon) + self.u = cp.Variable(self.hems.horizon) + + self.opt_keys = {'p_pv_opt', 'u_pv_curt_opt'} + + def add_constraints(self): + cons = [ + # PV constraints. GHI provided in W/m2 - convert to kWh + self.p_elec == self.area * self.eff * cp.multiply(self.hems.ghi_current[1:], (1 - self.u)) / 1000, + self.u >= 0, + self.u <= 1 + ] + return cons + + def resolve(self): + cons = self.add_constraints() + obj = cp.Maximize(cp.sum(self.p_elec)) + prob = cp.Problem(obj, cons) + prob.solve() \ No newline at end of file diff --git a/dragg/devices/water_heater.py b/dragg/devices/water_heater.py new file mode 100644 index 0000000..004fc0d --- /dev/null +++ b/dragg/devices/water_heater.py @@ -0,0 +1,199 @@ +import os +import numpy as np +import cvxpy as cp + +class WH: + """ + A class for the water heater device in a smart home. This model uses a linear R1-C1 model + of the water heater tank with electric resistance heating (efficiency ~=100%) + """ + def __init__(self, hems): + # set the centralized hems for current sensor values + self.hems = hems + + # optimization variables + self.temp_wh_ev = cp.Variable(self.hems.h_plus) + self.temp_wh = cp.Variable(1) + self.temp_wh0 = cp.Variable(1) + self.heat_on = cp.Variable(self.hems.horizon, integer=True) + self.p_elec = cp.Variable(self.hems.horizon) + self.temp_delta = cp.Variable(self.hems.horizon) + + # Water heater temperature constants + self.r = cp.Constant(float(self.hems.home["wh"]["r"]) * 1000) + self.p = cp.Constant(float(self.hems.home["wh"]["p"])) + self.temp_wh_min = cp.Constant(float(self.hems.home["wh"]["temp_wh_min"])) + self.temp_wh_max = cp.Constant(float(self.hems.home["wh"]["temp_wh_max"])) + self.temp_wh_sp = cp.Constant(float(self.hems.home["wh"]["temp_wh_sp"])) + self.wh_size = float(self.hems.home["wh"]["tank_size"]) # in liters + self.tap_temp = 15 # assumed cold tap water is about 55 deg F + wh_capacitance = self.wh_size * 4.2 # kJ/deg C + self.c = cp.Constant(wh_capacitance) + self.wh_heat_max = self.hems.sub_subhourly_steps # integer represents duty cycle + self.wh_heat_min = 0 + + # initilize water draws + self._get_water_draws() + self.opt_keys = {"waterdraws", "temp_wh_opt", "wh_heat_on_opt"} + + def _get_water_draws(self): + """ + :input: None + :return: None + + A method to determine the current hot water consumption. Data based on NREL database (to cite) + """ + daily_draw_sizes = 2 * self.hems.home["wh"]["draw_sizes"] # repeat list for 2 weeks + + current_ts = [i % (24 * 7 * self.hems.dt) for i in range(self.hems.timestep, self.hems.timestep + self.hems.dt)] + current_draw_size_actual = [daily_draw_sizes[i] for i in current_ts] + future_ts = [i % (24 * 7 * self.hems.dt) for i in range(self.hems.timestep + self.hems.dt, self.hems.timestep + self.hems.h_plus)] + future_draw_size_ev = [np.average(daily_draw_sizes[i-self.hems.dt:i+self.hems.dt]) for i in future_ts] + + self.draw_size = current_draw_size_actual + future_draw_size_ev + df = np.divide(self.draw_size, self.wh_size) + self.draw_frac = cp.Constant(df) + self.remainder_frac = cp.Constant(1-df) + return + + def add_constraints(self, enforce_bounds=True): + """ + :parameter enforce_bounds: boolean determines whether comfort bounds are strictly enforced + :return: cons, a list of CVXPY constraints + + A method to introduce physical constraints to the water heater. + """ + self._get_water_draws() + + cons = [ + # thermal constraints, expected value after approx waterdraws + self.temp_wh_ev[0] == self.hems.temp_wh_init, + self.temp_wh_ev[1:] == (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:-1]) + + self.draw_frac[1:]*self.tap_temp) + self.temp_delta, + + self.temp_delta == (3600 * self.hems.dt_frac) * ((((self.hems.hvac.temp_in_ev[1:] + - (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:-1]) + + self.draw_frac[1:]*self.tap_temp)) / self.r)) + + self.heat_on * self.p) / (self.c), + + # actual value of temperature of tank at time t="-0.5", before any water draw occurs + self.temp_wh0 == self.hems.temp_wh_init + + (3600 * self.hems.dt_frac) * (((self.hems.hvac.temp_in - self.hems.temp_wh_init) / self.r) + + self.heat_on[0] * self.p) / (self.c), + + # actual value of temperature of tank at time t=0, after any water draw occurs, before heating + # self.temp_wh == ((self.temp_wh0 * self.remainder_frac[0]) + (self.tap_temp * self.draw_frac[0])), #/ self.wh_size, + self.temp_wh == self.temp_wh_ev[1], + + # electrical power as a function of thermal power + self.heat_on <= self.wh_heat_max, + self.heat_on >= self.wh_heat_min, + self.p_elec == (self.heat_on * self.p) / self.hems.sub_subhourly_steps # kW + ] + + if enforce_bounds: + # optional comfort constraints + cons += [ + self.temp_wh >= self.temp_wh_min, + self.temp_wh <= self.temp_wh_max, + self.temp_wh_ev >= self.temp_wh_min, + self.temp_wh_ev <= self.temp_wh_max, + ] + + return cons + + def resolve(self): + """ + :input: None + :return: None + + A method for re-solving the constraints specific to the hot water heater in the event + that the whole house HEMS cannot satisfy all constraints -- first attempts to minimize the + device-specific electricity consumption while satisfying comfort bounds, second attempt + minimizes the deviation of the new temperature and the desired setpoint. + """ + self.copy_hvac = self.hems.hvac.temp_in_ev[1:].value + cons = self.add_override_cons() + obj = cp.Minimize(cp.abs(self.temp_wh - self.temp_wh_min)) + # obj = cp.Maximize(self.temp_wh) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver) + if not prob.status == 'optimal': + cons = self.add_override_cons(enforce_bounds=False) + obj = cp.Minimize(self.temp_wh_min - self.temp_wh) + prob = cp.Problem(obj, cons) + prob.solve(solver=self.hems.solver, verbose=False) + + def add_override_cons(self, enforce_bounds=True): + """ + :parameter enforce_bounds: boolean determines whether comfort bounds are strictly enforced + :return: cons, a list of CVXPY constraints + + A method to introduce physical constraints to the water heater. + """ + self._get_water_draws() + + cons = [ + # thermal constraints, expected value after approx waterdraws + self.temp_wh_ev[0] == self.hems.temp_wh_init, + self.temp_wh_ev[1:] == (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:-1]) + + self.draw_frac[1:]*self.tap_temp) + self.temp_delta, + + self.temp_delta == (3600 * self.hems.dt_frac) * ((((self.copy_hvac + - (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:-1]) + + self.draw_frac[1:]*self.tap_temp)) / self.r)) + + self.heat_on * self.p) / (self.c), + + # actual value of temperature of tank at time t="-0.5", before any water draw occurs + self.temp_wh0 == self.hems.temp_wh_init + + (3600 * self.hems.dt_frac) * (((self.copy_hvac[0] - self.hems.temp_wh_init) / self.r) + + self.heat_on[0] * self.p) / (self.c), + + # actual value of temperature of tank at time t=0, after any water draw occurs, before heating + # self.temp_wh == ((self.temp_wh0 * self.remainder_frac[0]) + (self.tap_temp * self.draw_frac[0])), #/ self.wh_size, + self.temp_wh == self.temp_wh_ev[1], + + # electrical power as a function of thermal power + self.heat_on <= self.wh_heat_max, + self.heat_on >= self.wh_heat_min, + self.p_elec == (self.heat_on * self.p) / self.hems.sub_subhourly_steps, + ] # kW + + if enforce_bounds: + cons += [ + self.temp_wh >= self.temp_wh_min, + self.temp_wh <= self.temp_wh_max, + self.temp_wh_ev >= self.temp_wh_min, + self.temp_wh_ev <= self.temp_wh_max, + ] + + return cons + + def override_p_wh(self, cmd): + """ + :parameter cmd: float in [-1,1] + :return: None + + A method to override the current on/off status of the hot water heater. Directly controls + the power consumed with a conservative check that the resulting water temperature will not + exceed bounds in either direction. + """ + self.obj = cp.Variable(1) + self.copy_hvac = self.hems.hvac.temp_in_ev[1:].value + cons = self.add_override_cons() + + cmd = (0.5 * cmd + 0.5) + obj_cons = [self.obj == (cmd - (self.heat_on[0] / self.wh_heat_max)), self.obj >= 0] + obj = cp.Minimize(self.obj) + prob = cp.Problem(obj, cons + obj_cons) + prob.solve(solver=self.hems.solver) + + if not prob.status == 'optimal': + obj_cons = [self.obj == (self.heat_on[0] / self.wh_heat_max) - (0.5 * cmd + 0.5)] + prob = cp.Problem(obj, cons + obj_cons) + prob.solve(solver=self.hems.solver) + + if not prob.status == 'optimal': + self.resolve() + + return obj_cons \ No newline at end of file diff --git a/dragg/main.py b/dragg/main.py index 56bc7b5..1044c75 100644 --- a/dragg/main.py +++ b/dragg/main.py @@ -1,19 +1,14 @@ from dragg.aggregator import Aggregator -from dragg.reformat import Reformat +import argparse + +REDIS_URL = 'redis://localhost' if __name__ == "__main__": - a = Aggregator() - a.run() + parser = argparse.ArgumentParser() + parser.add_argument("-r", "--redis", help="Redis host URL", default=REDIS_URL) - # agg_params = {"alpha": [0.0625], "beta":[1.0], "epsilon":[0.05, 0.025], "rl_horizon":[], "mpc_disutility":[]} # set parameters from earlier runs - # mpc_params = {"mpc_hourly_steps": [4], "mpc_prediction_horizons": [1], "mpc_discomfort":[]} - # # date_ranges = {"end_datetime": "2015-01-08 00"} - # date_ranges = {} - # include_runs = {} - # add_outputs = {} + args = parser.parse_args() - # r = Reformat(mpc_params={"mpc_discomfort":[]}) - # r.main() # use main to plot a suite of graphs - # r.save_images() # saves the images - # r.rl2baseline() # specific plots available through named methods + a = Aggregator(redis_url=args.redis) + a.run() \ No newline at end of file diff --git a/dragg/mpc_calc.py b/dragg/mpc_calc.py index 2514dd9..5cd5d46 100644 --- a/dragg/mpc_calc.py +++ b/dragg/mpc_calc.py @@ -1,17 +1,20 @@ import os import numpy as np import cvxpy as cp -from redis import StrictRedis import redis -import scipy.stats import logging import pathos from collections import defaultdict import json from copy import deepcopy -from dragg.redis_client import RedisClient +import dragg.redis_client as rc # from dragg.redis_client import connection#RedisClient from dragg.logger import Logger +from dragg.devices import * + +import faulthandler; faulthandler.enable() + +REDIS_URL = "redis://localhost" def manage_home(home): """ @@ -22,61 +25,37 @@ def manage_home(home): return class MPCCalc: - def __init__(self, home): + def __init__(self, home, redis_url=REDIS_URL): """ - params - home: Dictionary with keys for HVAC, WH, and optionally PV, battery parameters + :paremeter home: dictionary with keys for HVAC, WH, and optionally PV, battery parameters + :redis_url: optional override of the Redis host URL (must align with MPCCalc REDIS_URL) """ + self.redis_url = redis_url self.home = home # reset every time home retrieved from Queue self.name = home['name'] self.type = self.home['type'] # reset every time home retrieved from Queue + self.devices = ['hvac', 'wh', 'ev'] + if 'batt' in self.type: + self.devices += ['battery'] + if 'pv' in self.type: + self.devices += ['pv'] self.start_hour_index = None # set once upon thread init self.current_values = None # set once upon thread init self.all_ghi = None # list, all values in the GHI list, set once upon thread init self.all_oat = None # list, all values in the OAT list, set once upon thread init self.all_spp = None # list, all values in the SPP list, set once upon thread init - self.home_r = None - self.home_c = None - self.hvac_p_c = None - self.hvac_p_h = None - self.wh_r = None - self.wh_c = None - self.wh_p = None - self.temp_in_init = None - self.temp_wh_init = None self.p_load = None self.plug_load = None - self.temp_in_ev = None - self.temp_wh_ev = None self.p_grid = None - self.hvac_cool_on = None - self.hvac_heat_on = None - self.wh_heat_on = None self.spp = None - self.oat_forecast = None - self.ghi_forecast = None - self.temp_wh_min = None - self.temp_wh_max = None - self.temp_in_min = None - self.temp_in_max = None - self.optimal_vals = {} - self.stored_optimal_vals = { - "p_grid_opt": None, - "forecast_p_grid_opt": None, - "p_load_opt": None, - "temp_in_opt": None, - "temp_wh_ev_opt": None, - "hvac_cool_on_opt": None, - "hvac_heat_on_opt": None, - "wh_heat_on_opt": None, - "cost_opt": None - } + self.counter = 0 self.iteration = None self.assumed_wh_draw = None self.prev_optimal_vals = None # set after timestep > 0, set_vals_for_current_run - self.timestep = 0 self.p_grid_opt = None + self.timestep = 0 + self.start_index = None # setup cvxpy verbose solver self.verbose_flag = os.environ.get('VERBOSE','False') @@ -88,23 +67,46 @@ def __init__(self, home): # calls redis and gets all the environmental variables from beginning of simulation to end self.initialize_environmental_variables() - # setup the base variables of HVAC and water heater self.setup_base_problem() - if 'battery' in self.type: - # setup the battery variables - self.setup_battery_problem() - if 'pv' in self.type: - # setup the pv variables - self.setup_pv_problem() + self.optimal_vals = {k:0 for k in self.opt_keys} + + self.ev_override_profile = None + + offset = -3 if self.home['hems']['schedule_group'] == 'early_birds' else 3 if self.home['hems']['schedule_group'] == 'night_owls' else 0 + # self.typ_leave = np.random.randint(8,10) + offset + # self.typ_return = np.random.randint(18,20) + offset + + self.tomorrow_leaving = self.typ_leave + (24*self.dt) + self.tomorrow_returning = self.typ_return + (24*self.dt) + self.today_leaving = self.typ_leave + self.today_returning = self.typ_return + + self.redis_client.hset(self.name, "today_leaving", self.today_leaving) + self.redis_client.hset(self.name, "today_returning", self.today_returning) + self.redis_client.hset(self.name, "tomorrow_leaving", self.tomorrow_leaving) + self.redis_client.hset(self.name, "tomorrow_returning", self.tomorrow_returning) + + self.late_night_return = 0 + self.leaving_index = -1 + self.returning_index = -1 def redis_write_optimal_vals(self): """ Sends the optimal values for each home to the redis server. :return: None """ + fh = logging.FileHandler(os.path.join("home_logs", f"{self.name}.log")) + self.log = pathos.logger(level=logging.INFO, handler=fh, name=self.name) + + # optimization variables key = self.name for field, value in self.optimal_vals.items(): - self.redis_client.conn.hset(key, field, value) + try: + self.redis_client.hset(key, field, value) + except: + print("failed to post", key, field, value) + + self.log.removeHandler(fh) def redis_get_prev_optimal_vals(self): """ @@ -112,164 +114,184 @@ def redis_get_prev_optimal_vals(self): :return: None """ key = self.name - self.prev_optimal_vals = self.redis_client.conn.hgetall(key) + self.prev_optimal_vals = self.redis_client.hgetall(key) def initialize_environmental_variables(self): - self.redis_client = RedisClient() + self.redis_client = rc.connection(self.redis_url) # collect all values necessary - self.start_hour_index = self.redis_client.conn.get('start_hour_index') - self.all_ghi = self.redis_client.conn.lrange('GHI', 0, -1) - self.all_oat = self.redis_client.conn.lrange('OAT', 0, -1) - self.all_spp = self.redis_client.conn.lrange('SPP', 0, -1) - self.all_tou = self.redis_client.conn.lrange('tou', 0, -1) + self.start_hour_index = self.redis_client.hget('current_values','start_index') + self.all_weekday = self.redis_client.lrange('WEEKDAY', 0, -1) + self.all_hours = self.redis_client.lrange('Hour', 0, -1) + self.all_months = self.redis_client.lrange('Month', 0, -1) + self.all_ghi = self.redis_client.lrange('GHI', 0, -1) + self.all_oat = self.redis_client.lrange('OAT', 0, -1) + self.all_spp = self.redis_client.lrange('SPP', 0, -1) + self.all_tou = self.redis_client.lrange('tou', 0, -1) self.base_cents = float(self.all_tou[0]) # cast all values to proper type self.start_hour_index = int(float(self.start_hour_index)) + self.start_slice = self.start_hour_index + self.all_weekday = [float(i) for i in self.all_weekday] + self.all_hours = [float(i) for i in self.all_hours] + self.all_months = [float(i) for i in self.all_months] self.all_ghi = [float(i) for i in self.all_ghi] self.all_oat = [float(i) for i in self.all_oat] self.all_spp = [float(i) for i in self.all_spp] + def _setup_hvac_problem(self): + self.hvac = HVAC(self) + self.opt_keys.update(self.hvac.opt_keys) + + def _setup_wh_problem(self): + self.wh = WH(self) + self.opt_keys.update(self.wh.opt_keys) + def setup_base_problem(self): """ Sets variable objects for CVX optimization problem. Includes "base home" systems of HVAC and water heater. :return: None """ - # Set up the solver parameters - solvers = {"GUROBI": cp.GUROBI, "GLPK_MI": cp.GLPK_MI, "ECOS": cp.ECOS} - try: - self.solver = solvers[self.home['hems']['solver']] - except: - self.solver = cp.GLPK_MI + self.opt_keys = set() + + self.solver = self.home['hems']['solver'] # Set up the horizon for the MPC calc (min horizon = 1, no MPC) self.sub_subhourly_steps = max(1, int(self.home['hems']['sub_subhourly_steps'])) self.dt = max(1, int(self.home['hems']['hourly_agg_steps'])) - self.horizon = max(1, int(self.home['hems']['horizon'] * self.dt)) + self.horizon = max(1, int(self.home['hems']['horizon']) * int(self.dt)) self.h_plus = self.horizon + 1 self.discount = float(self.home['hems']['discount_factor']) + self.dt_frac = 1 / self.dt / self.sub_subhourly_steps + self.typ_leave = float(self.home['hems']['typ_leave']) + self.typ_return = float(self.home['hems']['typ_return']) + # Initialize RP structure so that non-forecasted RPs have an expected value of 0. self.reward_price = np.zeros(self.horizon) - self.home_r = cp.Constant(float(self.home["hvac"]["r"])) - self.home_c = cp.Constant(float(self.home["hvac"]["c"]) * 1000) - self.hvac_p_c = cp.Constant(float(self.home["hvac"]["p_c"]) / self.sub_subhourly_steps) - self.hvac_p_h = cp.Constant((float(self.home["hvac"]["p_h"])) / self.sub_subhourly_steps) - self.wh_r = cp.Constant(float(self.home["wh"]["r"]) * 1000) - self.wh_p = cp.Constant(float(self.home["wh"]["p"]) / self.sub_subhourly_steps) - # Define optimization variables self.p_load = cp.Variable(self.horizon) - self.temp_in_ev = cp.Variable(self.h_plus) - self.temp_in = cp.Variable(1) - self.temp_wh_ev = cp.Variable(self.h_plus) - self.temp_wh = cp.Variable(1) self.p_grid = cp.Variable(self.horizon) - self.hvac_cool_on = cp.Variable(self.horizon, integer=True) - self.hvac_heat_on = cp.Variable(self.horizon, integer=True) - self.wh_heat_on = cp.Variable(self.horizon, integer=True) - - # Water heater temperature constraints - self.temp_wh_min = cp.Constant(float(self.home["wh"]["temp_wh_min"])) - self.temp_wh_max = cp.Constant(float(self.home["wh"]["temp_wh_max"])) - self.temp_wh_sp = cp.Constant(float(self.home["wh"]["temp_wh_sp"])) - self.t_wh_init = float(self.home["wh"]["temp_wh_init"]) - self.wh_size = float(self.home["wh"]["tank_size"]) - self.tap_temp = 15 # assumed cold tap water is about 55 deg F - - wh_capacitance = self.wh_size * 4.2 # kJ/deg C - self.wh_c = cp.Constant(wh_capacitance) - - # Home temperature constraints - self.temp_in_min = cp.Constant(float(self.home["hvac"]["temp_in_min"])) - self.temp_in_max = cp.Constant(float(self.home["hvac"]["temp_in_max"])) - self.t_in_init = float(self.home["hvac"]["temp_in_init"]) - - self.max_load = (max(self.hvac_p_c.value, self.hvac_p_h.value) + self.wh_p.value) * self.sub_subhourly_steps - - def water_draws(self): - draw_sizes = (self.horizon // self.dt + 1) * [0] + self.home["wh"]["draw_sizes"] - raw_draw_size_list = draw_sizes[(self.timestep // self.dt):(self.timestep // self.dt) + (self.horizon // self.dt + 1)] - raw_draw_size_list = (np.repeat(raw_draw_size_list, self.dt) / self.dt).tolist() - draw_size_list = raw_draw_size_list[:self.dt] - for i in range(self.dt, self.h_plus): - draw_size_list.append(np.average(raw_draw_size_list[i-1:i+2])) - - self.draw_size = draw_size_list - df = np.divide(self.draw_size, self.wh_size) - self.draw_frac = cp.Constant(df) - self.remainder_frac = cp.Constant(1-df) + + self.r = cp.Constant(float(self.home["hvac"]["r"])) + self.c = cp.Constant(float(self.home["hvac"]["c"])* 1e7) + self.window_eq = cp.Constant(float(self.home["hvac"]["w"])) + + self.max_load = 0 + if 'hvac' in self.devices: + self._setup_hvac_problem() + self.max_load += max(self.hvac.p_c.value, self.hvac.p_h.value) + if 'wh' in self.devices: + self._setup_wh_problem() + self.max_load += self.wh.p.value + if 'ev' in self.devices: + self._setup_ev_problem() + self.max_load += self.ev.ev_max_rate + if 'battery' in self.devices: + self._setup_battery_problem() + self.max_load += self.battery.batt_max_rate + if 'pv' in self.devices: + self._setup_pv_problem() + + self.opt_keys.update({"p_grid_opt", "forecast_p_grid_opt", "p_load_opt", "cost_opt", "occupancy_status"}) + + def get_daily_occ(self): + """ + Get the daily occupancy schedule of the day and tomorrow. + """ + if False: # self.subhour_of_day_current[0] == 0 and not self.name=="PLAYER": + self.today_leaving = self.tomorrow_leaving % 24 + self.today_returning = self.tomorrow_returning % 24 + if self.weekday_current[0] in [6,0,1,2,3]: # if the next day is a weekday + self.tomorrow_leaving = int(self.typ_leave + np.random.normal() + 24) + self.tomorrow_returning = int(self.tomorrow_leaving + np.random.randint(6,9)) + else: + self.tomorrow_leaving = int(np.random.randint(24,49)) + self.tomorrow_returning = int(self.tomorrow_leaving + np.random.randint(0,6)) + self.redis_client.hset(self.name, "today_leaving", self.today_leaving) + self.redis_client.hset(self.name, "today_returning", self.today_returning) + self.redis_client.hset(self.name, "tomorrow_leaving", self.tomorrow_leaving) + self.redis_client.hset(self.name, "tomorrow_returning", self.tomorrow_returning) + + else: + self.today_leaving = float(self.redis_client.hget(self.name, "today_leaving")) + self.today_returning = float(self.redis_client.hget(self.name, "today_returning")) + self.tomorrow_leaving = float(self.redis_client.hget(self.name, "tomorrow_leaving")) + self.tomorrow_returning = float(self.redis_client.hget(self.name, "tomorrow_returning")) + + self.occ_current = [0 if (self.today_leaving <= x <= self.today_returning) or (self.tomorrow_returning <= x <= self.tomorrow_leaving) else 1 for x in self.subhour_of_day_current] + self.leaving_index = [np.argmin(np.abs(np.subtract(self.subhour_of_day_current, time))) for time in [self.today_leaving, self.tomorrow_leaving]] + self.returning_index = [np.argmin(np.abs(np.subtract(self.subhour_of_day_current, time))) for time in [self.today_returning, self.tomorrow_returning]] + return def set_environmental_variables(self): """ Slices cast values of the environmental values for the current timestep. + :return: None """ - start_slice = self.start_hour_index + self.timestep - end_slice = start_slice + self.horizon + 1 # Need to extend 1 timestep past horizon for OAT slice + self.start_slice = self.timestep + end_slice = self.start_slice + self.h_plus # Need to extend 1 timestep past horizon for OAT slice + + # Get current occupancy schedule + self.weekday_current = self.all_weekday[self.start_slice:end_slice] + # self.subhour_of_day_current = self.all_hours[self.start_slice:self.start_slice + (24*self.dt) + 1] + self.subhour_of_day_current = np.linspace(self.all_hours[self.start_slice], self.all_hours[self.start_slice] + 24, (24*self.dt) +1).tolist() + self.get_daily_occ() # Get the current values from a list of all values - self.ghi_current = self.all_ghi[start_slice:end_slice] - self.ghi_current_ev = deepcopy(self.ghi_current) - ghi_noise = np.multiply(self.ghi_current[1:], 0.01 * np.power(1.3*np.ones(self.horizon), np.arange(self.horizon))) - self.ghi_current_ev[1:] = np.add(self.ghi_current[1:], ghi_noise) + self.ghi_current = cp.Constant(self.all_ghi[self.start_slice:end_slice]) + self.ghi_current_ev = deepcopy(self.ghi_current.value) + ghi_noise = np.multiply(self.ghi_current.value[1:], 0.01 * np.power(1.3*np.ones(self.horizon), np.arange(self.horizon))) + self.ghi_current_ev[1:] = np.add(self.ghi_current.value[1:], ghi_noise) - self.oat_current = self.all_oat[start_slice:end_slice] - self.oat_current_ev = deepcopy(self.oat_current) + self.oat_current = cp.Constant(self.all_oat[self.start_slice:end_slice]) + self.oat_current_ev = deepcopy(self.oat_current.value) oat_noise = np.multiply(np.power(1.1*np.ones(self.horizon), np.arange(self.horizon)), np.random.randn(self.horizon)) - self.oat_current_ev[1:] = np.add(self.oat_current[1:], oat_noise) + self.oat_current_ev[1:] = np.add(self.oat_current.value[1:], oat_noise) - self.tou_current = self.all_tou[start_slice:end_slice] + self.tou_current = self.all_tou[self.start_slice:end_slice] self.base_price = np.array(self.tou_current, dtype=float) - # Set values as cvxpy values - self.oat_forecast = cp.Constant(self.oat_current) - self.ghi_forecast = cp.Constant(self.ghi_current) self.cast_redis_curr_rps() - def setup_battery_problem(self): + def _setup_battery_problem(self): """ Adds CVX variables for battery subsystem in battery and battery_pv homes. + :return: None """ - # Define constants - self.batt_max_rate = cp.Constant(float(self.home["battery"]["max_rate"])) - self.batt_cap_total = cp.Constant(float(self.home["battery"]["capacity"])) - self.batt_cap_min = cp.Constant(float(self.home["battery"]["capacity_lower"]) * self.batt_cap_total.value) - self.batt_cap_max = cp.Constant(float(self.home["battery"]["capacity_upper"]) * self.batt_cap_total.value) - self.batt_ch_eff = cp.Constant(float(self.home["battery"]["ch_eff"])) - self.batt_disch_eff = cp.Constant(float(self.home["battery"]["disch_eff"])) + self.battery = Battery(self) + self.opt_keys.update(self.battery.opt_keys) - # Define battery optimization variables - self.p_batt_ch = cp.Variable(self.horizon) - self.p_batt_disch = cp.Variable(self.horizon) - self.e_batt = cp.Variable(self.h_plus) + def _setup_ev_problem(self): + """ + Adds CVX variables for EV subsystem in base homes. + + :return: None + """ + self.ev = EV(self) + self.opt_keys.update(self.ev.opt_keys) - def setup_pv_problem(self): + def _setup_pv_problem(self): """ Adds CVX variables for photovoltaic subsystem in pv and battery_pv homes. + :return: None """ - # Define constants - self.pv_area = cp.Constant(float(self.home["pv"]["area"])) - self.pv_eff = cp.Constant(float(self.home["pv"]["eff"])) - - # Define PV Optimization variables - self.p_pv = cp.Variable(self.horizon) - self.u_pv_curt = cp.Variable(self.horizon) + self.pv = PV(self) + self.opt_keys.update(self.pv.opt_keys) def get_initial_conditions(self): - self.water_draws() - - if self.timestep == 0: + if int(self.current_values["timestep"])== 0: self.initialize_environmental_variables() - self.temp_in_init = cp.Constant(self.t_in_init) - self.temp_wh_init = cp.Constant((self.t_wh_init*(self.wh_size - self.draw_size[0]) + self.tap_temp * self.draw_size[0]) / self.wh_size) - + self.temp_in_init = cp.Constant(float(self.home["hvac"]["temp_in_init"])) + self.temp_wh_init = cp.Constant((float(self.home["wh"]["temp_wh_init"])*(self.wh.wh_size - self.wh.draw_size[0]) + self.wh.tap_temp * self.wh.draw_size[0]) / self.wh.wh_size) + self.e_ev_init = cp.Constant(16) if 'battery' in self.type: self.e_batt_init = cp.Constant(float(self.home["battery"]["e_batt_init"]) * self.batt_cap_total.value) self.p_batt_ch_init = cp.Constant(0) @@ -278,116 +300,46 @@ def get_initial_conditions(self): else: self.temp_in_init = cp.Constant(float(self.prev_optimal_vals["temp_in_opt"])) - self.temp_wh_init = cp.Constant((float(self.prev_optimal_vals["temp_wh_opt"])*(self.wh_size - self.draw_size[0]) + self.tap_temp * self.draw_size[0]) / self.wh_size) - + self.temp_wh_init = cp.Constant(float(self.prev_optimal_vals["temp_wh_opt"])) #cp.Constant((float(self.prev_optimal_vals["temp_wh_opt"])*(self.wh.wh_size - self.wh.draw_size[0]) + self.wh.tap_temp * self.wh.draw_size[0]) / self.wh.wh_size) + if 'battery' in self.type: - self.e_batt_init = cp.Constant(float(self.home["battery"]["e_batt_init"])) self.e_batt_init = cp.Constant(float(self.prev_optimal_vals["e_batt_opt"])) - self.p_batt_ch_init = cp.Constant(float(self.prev_optimal_vals["p_batt_ch"]) - - float(self.prev_optimal_vals["p_batt_disch"])) + + if 'ev' in self.devices: + self.e_ev_init = cp.Constant(float(self.prev_optimal_vals["e_ev_opt"])) self.counter = int(self.prev_optimal_vals["solve_counter"]) + self.set_environmental_variables() + def add_base_constraints(self): """ Creates the system dynamics for thermal energy storage systems: HVAC and water heater. + :return: None """ - - self.hvac_heat_min = 0 - self.hvac_cool_min = 0 - self.wh_heat_max = self.sub_subhourly_steps - self.wh_heat_min = 0 - # Set constraints on HVAC by season - if max(self.oat_current_ev) <= 30: # "winter" - self.hvac_heat_max = self.sub_subhourly_steps - self.hvac_cool_max = 0 - - else: # "summer" - self.hvac_heat_max = 0 - self.hvac_cool_max = self.sub_subhourly_steps - self.constraints = [ - # Indoor air temperature constraints - self.temp_in_ev[0] == self.temp_in_init, - self.temp_in_ev[1:self.h_plus] == self.temp_in_ev[0:self.horizon] - + 3600 * ((((self.oat_forecast[1:self.h_plus] - self.temp_in_ev[0:self.horizon]) / self.home_r)) - - self.hvac_cool_on * self.hvac_p_c - + self.hvac_heat_on * self.hvac_p_h) / (self.home_c * self.dt), - self.temp_in_ev[1:self.h_plus] >= self.temp_in_min, - self.temp_in_ev[1:self.h_plus] <= self.temp_in_max, - - self.temp_in == self.temp_in_init - + 3600 * (((self.oat_current[1] - self.temp_in_init) / self.home_r) - - self.hvac_cool_on[0] * self.hvac_p_c - + self.hvac_heat_on[0] * self.hvac_p_h) / (self.home_c * self.dt), - self.temp_in <= self.temp_in_max, - self.temp_in >= self.temp_in_min, - - # Hot water heater contraints, expected value after approx waterdraws - self.temp_wh_ev[0] == self.temp_wh_init, - self.temp_wh_ev[1:] == (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:self.horizon]) + self.draw_frac[1:]*self.tap_temp) - + 3600 * ((((self.temp_in_ev[1:] - (cp.multiply(self.remainder_frac[1:],self.temp_wh_ev[:self.horizon]) + self.draw_frac[1:]*self.tap_temp)) / self.wh_r)) - + self.wh_heat_on * self.wh_p) / (self.wh_c * self.dt), - self.temp_wh_ev >= self.temp_wh_min, - self.temp_wh_ev <= self.temp_wh_max, - - self.temp_wh == self.temp_wh_init - + 3600 * (((self.temp_in_ev[1] - self.temp_wh_init) / self.wh_r) - + self.wh_heat_on[0] * self.wh_p) / (self.wh_c * self.dt), - self.temp_wh >= self.temp_wh_min, - self.temp_wh <= self.temp_wh_max, - - self.p_load == self.sub_subhourly_steps * (self.hvac_p_c * self.hvac_cool_on + self.hvac_p_h * self.hvac_heat_on + self.wh_p * self.wh_heat_on), - - self.hvac_cool_on <= self.hvac_cool_max, - self.hvac_cool_on >= self.hvac_cool_min, - self.hvac_heat_on <= self.hvac_heat_max, - self.hvac_heat_on >= self.hvac_heat_min, - self.wh_heat_on <= self.wh_heat_max, - self.wh_heat_on >= self.wh_heat_min + self.p_load == (self.hvac.p_elec + self.wh.p_elec + self.ev.p_elec[:self.horizon]) #/ self.sub_subhourly_steps ] - + if 'hvac' in self.devices: + self.constraints += self.hvac.add_constraints() + if 'wh' in self.devices: + self.constraints += self.wh.add_constraints() + if 'ev' in self.devices: + self.constraints += self.ev.add_constraints() + if 'pv' in self.devices: + self.constraints += self.pv.add_constraints() + if 'battery' in self.devices: + self.constraints += self.battery.add_constraints() # set total price for electricity self.total_price = cp.Constant(np.array(self.reward_price, dtype=float) + self.base_price[:self.horizon]) - def add_battery_constraints(self): - """ - Creates the system dynamics for chemical energy storage. - :return: None - """ - self.charge_mag = cp.Variable() - self.constraints += [ - # Battery constraints - self.e_batt[1:self.h_plus] == self.e_batt[0:self.horizon] - + (self.batt_ch_eff * self.p_batt_ch[0:self.horizon] - + self.p_batt_disch[0:self.horizon] / self.batt_disch_eff) / self.dt, - self.e_batt[0] == self.e_batt_init, - self.p_batt_ch[0:self.horizon] <= self.batt_max_rate, - self.p_batt_ch[0:self.horizon] >= 0, - -self.p_batt_disch[0:self.horizon] <= self.batt_max_rate, - self.p_batt_disch[0:self.horizon] <= 0, - self.e_batt[1:self.h_plus] <= self.batt_cap_max, - self.e_batt[1:self.h_plus] >= self.batt_cap_min, - ] - - def add_pv_constraints(self): - """ - Creates the system dynamics for photovoltaic generation. (Using measured GHI.) - :return: None - """ - self.constraints += [ - # PV constraints. GHI provided in W/m2 - convert to kWh - self.p_pv == self.pv_area * self.pv_eff * cp.multiply(self.ghi_forecast[0:self.horizon], (1 - self.u_pv_curt)) / 1000, - self.u_pv_curt >= 0, - self.u_pv_curt <= 1, - ] - def set_base_p_grid(self): """ Sets p_grid of home to equal the load of the HVAC and water heater. To be used if and only if home type is base. + :return: None """ self.constraints += [ @@ -400,11 +352,12 @@ def set_battery_only_p_grid(self): Sets p_grid of home to equal the load of the HVAC and water heater, plus or minus the charge/discharge of the battery. To be used if and only if home is of type battery_only. + :return: None """ self.constraints += [ # Set grid load - self.p_grid == self.p_load + self.sub_subhourly_steps * (self.p_batt_ch + self.p_batt_disch) + self.p_grid == self.p_load + (self.battery.p_elec) ] def set_pv_only_p_grid(self): @@ -412,11 +365,12 @@ def set_pv_only_p_grid(self): Sets p_grid of home equal to the load of the HVAC and water heater minus potential generation from the PV subsystem. To be used if and only if the home is of type pv_only. + :return: None """ self.constraints += [ # Set grid load - self.p_grid == self.p_load - self.sub_subhourly_steps * self.p_pv + self.p_grid == self.p_load - self.pv.p_elec ] def set_pv_battery_p_grid(self): @@ -424,185 +378,177 @@ def set_pv_battery_p_grid(self): Sets p_grid of home equal to the load of the HVAC and water heater, plus or minus the charge/discharge of the battery, minus potential generation from the PV subsystem. To be used if and only if the home is of type pv_battery. + :return: None """ self.constraints += [ # Set grid load - self.p_grid == self.p_load + self.sub_subhourly_steps * (self.p_batt_ch + self.p_batt_disch - self.p_pv) + self.p_grid == self.p_load + (self.battery.p_elec - self.pv.p_elec) ] - def solve_mpc(self): + def solve_mpc(self, debug=False): """ Sets the objective function of the Home Energy Management System to be the minimization of cost over the MPC time horizon and solves via CVXPY. Used for all home types. + :return: None """ self.cost = cp.Variable(self.horizon) - self.wh_weighting = 10 - self.objective = cp.Variable(self.horizon) - self.constraints += [self.cost == cp.multiply(self.total_price, self.p_grid)] # think this should work + self.constraints += [self.cost == cp.multiply(self.total_price, self.p_grid / self.dt)] # think this should work self.weights = cp.Constant(np.power(self.discount*np.ones(self.horizon), np.arange(self.horizon))) - self.obj = cp.Minimize(cp.sum(cp.multiply(self.cost, self.weights))) #+ self.wh_weighting * cp.sum(cp.abs(self.temp_wh_max - self.temp_wh_ev))) #cp.sum(self.temp_wh_sp - self.temp_wh_ev)) + self.obj = cp.Minimize(cp.sum(cp.multiply(self.cost, self.weights))) self.prob = cp.Problem(self.obj, self.constraints) if not self.prob.is_dcp(): - self.log.error("Problem is not DCP") - try: - self.prob.solve(solver=self.solver, verbose=self.verbose_flag) - self.solved = True - except: - self.solved = False - - def implement_presolve(self): - constraints = [ - # Indoor air temperature constraints - self.temp_in_ev[0] == self.temp_in_init, - self.temp_in_ev[1:self.h_plus] == self.temp_in_ev[0:self.horizon] - + (((self.oat_forecast[1:self.h_plus] - self.temp_in_ev[0:self.horizon]) / self.home_r) - - self.hvac_cool_on * self.hvac_p_c - + self.hvac_heat_on * self.hvac_p_h) / (self.home_c * self.dt), - - # Hot water heater contraints - self.temp_wh_ev[0] == self.temp_wh_init, - self.temp_wh_ev[1:] == self.temp_wh_ev[:self.horizon] - + (((self.temp_in_ev[1:self.h_plus] - self.temp_wh_ev[:self.horizon]) / self.wh_r) - + self.wh_heat_on * self.wh_p) / (self.wh_c * self.dt), - - self.hvac_cool_on == np.array(self.presolve_hvac_cool_on, dtype=np.double), - self.hvac_heat_on == np.array(self.presolve_hvac_heat_on, dtype=np.double), - self.wh_heat_on == np.array(self.presolve_wh_heat_on, dtype=np.double) + # self.log.error("Problem is not DCP") + print("problem is not dcp") + self.prob.solve(solver=self.solver, verbose=self.verbose_flag) + return + + def solve_local_control(self): + """ + Solves the MPC as if each home has its own objective to meet a setpoint (not cost minimizing). + Can be used in place of .solve_mpc() + + :return: None + """ + # self.obj = cp.Minimize(self.ev.obj + self.hvac.obj + self.wh.obj) + self.cost = cp.Variable(self.horizon) + + cons = [ + self.p_load == (self.hvac.p_elec.value + self.wh.p_elec.value + self.ev.p_elec[:self.horizon].value), #/ self.sub_subhourly_steps + self.p_grid == self.p_load, + self.cost == cp.multiply(self.total_price, self.p_grid / self.dt) ] + self.prob = cp.Problem(cp.Minimize(1), cons) + self.prob.solve(solver=self.solver) + return + def cleanup_and_finish(self): """ Resolves .solve_mpc() with error handling and collects all data on solver. + :return: None """ - end_slice = max(1, self.sub_subhourly_steps) - opt_keys = {"p_grid_opt", "forecast_p_grid_opt", "p_load_opt", "temp_in_ev_opt", "temp_wh_ev_opt", "hvac_cool_on_opt", "hvac_heat_on_opt", "wh_heat_on_opt", "cost_opt", "waterdraws"} - + # end_slice = max(1, self.sub_subhourly_steps) + i = 0 while i < 1: if self.prob.status == 'optimal': # if the problem has been solved self.counter = 0 - self.timestep += 1 self.stored_optimal_vals = defaultdict() - self.stored_optimal_vals["p_grid_opt"] = (self.p_grid.value / self.sub_subhourly_steps).tolist() - self.stored_optimal_vals["forecast_p_grid_opt"] = (self.p_grid.value[1:] / self.sub_subhourly_steps).tolist() + [0] - self.stored_optimal_vals["p_load_opt"] = (self.p_load.value / self.sub_subhourly_steps).tolist() - self.stored_optimal_vals["temp_in_ev_opt"] = (self.temp_in_ev.value[1:]).tolist() - self.stored_optimal_vals["temp_in_opt"] = self.temp_in.value.tolist() - self.stored_optimal_vals["temp_wh_ev_opt"] = (self.temp_wh_ev.value[1:]).tolist() - self.stored_optimal_vals["temp_wh_opt"] = self.temp_wh.value.tolist() - self.stored_optimal_vals["hvac_cool_on_opt"] = (self.hvac_cool_on.value / self.sub_subhourly_steps).tolist() - self.stored_optimal_vals["hvac_heat_on_opt"] = (self.hvac_heat_on.value / self.sub_subhourly_steps).tolist() - self.stored_optimal_vals["wh_heat_on_opt"] = (self.wh_heat_on.value / self.sub_subhourly_steps).tolist() + + # general base values self.stored_optimal_vals["cost_opt"] = (self.cost.value).tolist() - self.stored_optimal_vals["waterdraws"] = self.draw_size - self.all_optimal_vals = {} + self.stored_optimal_vals["p_grid_opt"] = (self.p_grid.value / 1).tolist() + self.stored_optimal_vals["forecast_p_grid_opt"] = (self.p_grid.value[1:] / 1).tolist() + [0] + self.stored_optimal_vals["p_load_opt"] = (self.p_load.value / 1).tolist() + self.stored_optimal_vals["occupancy_status"] = [int(x) for x in self.occ_current] + + if 'hvac' in self.devices: + self.stored_optimal_vals["temp_in_ev_opt"] = (self.hvac.temp_in_ev.value[1:]).tolist() + self.stored_optimal_vals["temp_in_opt"] = self.hvac.temp_in.value.tolist() + self.stored_optimal_vals["t_in_min"] = self.hvac.t_in_min_current.value.tolist() + self.stored_optimal_vals["t_in_max"] = self.hvac.t_in_max_current.value.tolist() + self.stored_optimal_vals["hvac_cool_on_opt"] = (self.hvac.cool_on.value / self.sub_subhourly_steps).tolist() + self.stored_optimal_vals["hvac_heat_on_opt"] = (self.hvac.heat_on.value / self.sub_subhourly_steps).tolist() + + if 'wh' in self.devices: + self.stored_optimal_vals["temp_wh_ev_opt"] = (self.wh.temp_wh_ev.value[1:]).tolist() + self.stored_optimal_vals["temp_wh_opt"] = self.wh.temp_wh.value.tolist() + self.stored_optimal_vals["wh_heat_on_opt"] = (self.wh.heat_on.value / self.sub_subhourly_steps).tolist() + self.stored_optimal_vals["waterdraws"] = self.wh.draw_size + + if 'ev' in self.devices: + self.stored_optimal_vals['e_ev_opt'] = (self.ev.e_ev.value).tolist()[1:] + self.stored_optimal_vals['p_ev_ch'] = (self.ev.p_ev_ch.value).tolist() + self.stored_optimal_vals['p_ev_disch'] = (self.ev.p_ev_disch.value).tolist() + self.stored_optimal_vals['p_v2g'] = (self.ev.p_v2g.value).tolist() + self.stored_optimal_vals['leaving_horizon'] = [int(x) for x in self.leaving_index] + self.stored_optimal_vals['returning_horizon'] = [int(x) for x in self.returning_index] if 'pv' in self.type: - self.stored_optimal_vals['p_pv_opt'] = (self.p_pv.value).tolist() - self.stored_optimal_vals['u_pv_curt_opt'] = (self.u_pv_curt.value).tolist() - opt_keys.update(['p_pv_opt', 'u_pv_curt_opt']) + self.stored_optimal_vals['p_pv_opt'] = (self.pv.p_elec.value).tolist() + self.stored_optimal_vals['u_pv_curt_opt'] = (self.pv.u.value).tolist() + if 'battery' in self.type: - self.stored_optimal_vals['e_batt_opt'] = (self.e_batt.value).tolist()[1:] - self.stored_optimal_vals['p_batt_ch'] = (self.p_batt_ch.value).tolist() - self.stored_optimal_vals['p_batt_disch'] = (self.p_batt_disch.value).tolist() - opt_keys.update(['p_batt_ch', 'p_batt_disch', 'e_batt_opt']) - - for k in opt_keys: - if not k == "waterdraws": - self.optimal_vals[k] = self.stored_optimal_vals[k][0] - else: - self.optimal_vals[k] = self.stored_optimal_vals[k][0] - for j in range(self.horizon): - self.optimal_vals[f"{k}_{j}"] = self.stored_optimal_vals[k][j] - self.optimal_vals["temp_wh_opt"] = self.stored_optimal_vals["temp_wh_opt"][0] - self.optimal_vals["temp_in_opt"] = self.stored_optimal_vals["temp_in_opt"][0] + self.stored_optimal_vals['e_batt_opt'] = (self.battery.e_batt.value).tolist()[1:] + self.stored_optimal_vals['p_batt_ch'] = (self.battery.p_batt_ch.value).tolist() + self.stored_optimal_vals['p_batt_disch'] = (self.battery.p_batt_disch.value).tolist() + + for k in self.opt_keys: + self.optimal_vals[k] = self.stored_optimal_vals[k][0] + if not k in ['leaving_horizon', 'returning_horizon']: + for j in range(self.horizon): + try: + self.optimal_vals[f"{k}_{j} "] = self.stored_optimal_vals[k][j] + except: + pass + + if 'hvac' in self.devices: + self.optimal_vals["temp_in_opt"] = self.stored_optimal_vals["temp_in_opt"][0] + + if 'wh' in self.devices: + self.optimal_vals["temp_wh_opt"] = self.stored_optimal_vals["temp_wh_opt"][0] + self.optimal_vals["correct_solve"] = 1 self.optimal_vals["solve_counter"] = 0 - self.log.debug(f"MPC solved with status {self.prob.status} for {self.name}") + # self.log.debug(f"MPC solved with status {self.prob.status} for {self.name}") return - else: - # self.implement_presolve() + + else: # clean up solutions if the preference constraints are infeasible self.counter += 1 - self.log.warning(f"Unable to solve for house {self.name}. Reverting to optimal solution from last feasible timestep, t-{self.counter}.") + # self.log.warning(f"Unable to solve for house {self.name}. Reverting to optimal solution from last feasible timestep, t-{self.counter}.") self.optimal_vals["correct_solve"] = 0 + self.optimal_vals["p_load_opt"] = 0 + + if 'hvac' in self.devices: + self.hvac.resolve() + self.optimal_vals["p_load_opt"] += self.hvac.p_elec.value[0] + self.optimal_vals["hvac_heat_on_opt"] = self.hvac.heat_on.value[0] / self.sub_subhourly_steps #self.presolve_hvac_heat_on / self.sub_subhourly_steps + self.optimal_vals["hvac_cool_on_opt"] = self.hvac.heat_on.value[0] / self.sub_subhourly_steps #self.presolve_hvac_cool_on / self.sub_subhourly_steps + self.optimal_vals["temp_in_opt"] = self.hvac.temp_in.value[0] + self.optimal_vals["t_in_min"] = self.hvac.t_in_min_current.value[0] + self.optimal_vals["t_in_max"] = self.hvac.t_in_max_current.value[0] + + if 'wh' in self.devices: + self.wh.resolve() + self.optimal_vals["p_load_opt"] += self.wh.heat_on.value[0] * self.wh.p.value + self.optimal_vals["wh_heat_on_opt"] = self.wh.heat_on.value[0] / self.sub_subhourly_steps #self.presolve_wh_heat_on / self.sub_subhourly_steps + self.optimal_vals["temp_wh_opt"] = self.wh.temp_wh.value[0] #new_temp_wh + self.optimal_vals["waterdraws"] = self.wh.draw_size[0] + + if 'ev' in self.devices: + self.ev.resolve() + self.optimal_vals["p_ev_ch"] = self.ev.p_ev_ch.value.tolist()[0] + self.optimal_vals["p_ev_disch"] = self.ev.p_ev_disch.value.tolist()[0] + self.optimal_vals["p_ev_v2g"] = self.ev.p_v2g.value.tolist()[0] + self.optimal_vals["e_ev_opt"] = self.ev.e_ev.value.tolist()[1] + self.optimal_vals["p_load_opt"] += self.optimal_vals["p_ev_ch"] + self.optimal_vals["p_ev_v2g"] + self.optimal_vals['leaving_horizon'] = int(self.leaving_index[0]) + self.optimal_vals['returning_horizon'] = int(self.returning_index[0]) + + if 'pv' in self.devices: + self.pv.resolve() + + if 'battery' in self.devices: + self.battery.resolve() - if self.counter < self.horizon and self.timestep > 0: - for k in opt_keys: - self.optimal_vals[k] = self.prev_optimal_vals[f"{k}_{self.counter}"] - - self.presolve_wh_heat_on = float(self.optimal_vals["wh_heat_on_opt"][0]) - self.presolve_hvac_cool_on = float(self.optimal_vals["hvac_cool_on_opt"][0]) - self.presolve_hvac_heat_on = float(self.optimal_vals["hvac_heat_on_opt"][0]) - - new_temp_in = float(self.temp_in_init.value - + 3600 * ((((self.oat_current[1] - self.temp_in_init.value) / self.home_r.value)) - - self.presolve_hvac_cool_on * self.hvac_p_c.value - + self.presolve_hvac_heat_on * self.hvac_p_h.value) / (self.home_c.value * self.dt)) - new_temp_wh = float(self.temp_wh_init.value - + 3600 * ((((new_temp_in - self.temp_wh_init.value) / self.wh_r.value)) - + self.presolve_wh_heat_on * self.wh_p.value) / (self.wh_c.value * self.dt)) - - if new_temp_in > self.temp_in_max.value: - self.presolve_hvac_heat_on = self.hvac_heat_min - self.presolve_hvac_cool_on = self.hvac_cool_max - elif new_temp_in < self.temp_in_min.value: - self.presolve_hvac_heat_on = self.hvac_heat_max - self.presolve_hvac_cool_on = self.hvac_cool_min - - if new_temp_wh < self.temp_wh_min.value: - self.presolve_wh_heat_on = self.wh_heat_max - - else: - self.counter = int(np.clip(self.counter, self.horizon, None)) - if self.temp_in_init.value > self.temp_in_max.value: - self.presolve_hvac_heat_on = self.hvac_heat_min - self.presolve_hvac_cool_on = self.hvac_cool_max - elif self.temp_in_init.value < self.temp_in_min.value: - self.presolve_hvac_heat_on = self.hvac_heat_max - self.presolve_hvac_cool_on = self.hvac_cool_min - else: - self.presolve_hvac_heat_on = self.hvac_heat_min - self.presolve_hvac_cool_on = self.hvac_cool_min - - if self.temp_wh_init.value < self.temp_wh_min.value: - self.presolve_wh_heat_on = self.wh_heat_max - else: - self.presolve_wh_heat_on = self.wh_heat_min - - new_temp_in = float(self.temp_in_init.value - + 3600 * ((((self.oat_current[1] - self.temp_in_init.value) / self.home_r.value)) - - self.presolve_hvac_cool_on * self.hvac_p_c.value - + self.presolve_hvac_heat_on * self.hvac_p_h.value) / (self.home_c.value * self.dt)) - new_temp_wh = float(self.temp_wh_init.value - + 3600 * (((new_temp_in - self.temp_wh_init.value) / self.wh_r.value) - + (self.presolve_wh_heat_on * self.wh_p.value)) / (self.wh_c.value * self.dt)) - - self.optimal_vals["wh_heat_on_opt"] = self.presolve_wh_heat_on / self.sub_subhourly_steps - self.optimal_vals["hvac_heat_on_opt"] = self.presolve_hvac_heat_on / self.sub_subhourly_steps - self.optimal_vals["hvac_cool_on_opt"] = self.presolve_hvac_cool_on / self.sub_subhourly_steps - self.optimal_vals["temp_in_opt"] = new_temp_in - self.optimal_vals["temp_wh_opt"] = new_temp_wh self.optimal_vals["solve_counter"] = self.counter - self.optimal_vals["p_load_opt"] = self.presolve_wh_heat_on * self.wh_p.value + self.presolve_hvac_cool_on * self.hvac_p_c.value + self.presolve_hvac_heat_on * self.hvac_p_h.value self.optimal_vals["forecast_p_grid_opt"] = self.optimal_vals["p_load_opt"] - self.optimal_vals["waterdraws"] = self.draw_size[0] self.optimal_vals["p_grid_opt"] = self.optimal_vals["p_load_opt"] self.optimal_vals["cost_opt"] = self.optimal_vals["p_grid_opt"] * self.total_price.value[0] + i+=1 - pass - def add_type_constraints(self): - self.add_base_constraints() - if 'pv' in self.type: - self.add_pv_constraints() - if 'batt' in self.type: - self.add_battery_constraints() + def set_p_grid(self): + """ + Sets the constraint for the total grid power (load + any auxiliary subsystems) + + :return: None + """ - def set_type_p_grid(self): if self.type == "base": self.set_base_p_grid() elif self.type == "pv_only": @@ -611,62 +557,67 @@ def set_type_p_grid(self): self.set_battery_only_p_grid() else: self.set_pv_battery_p_grid() + return def redis_get_initial_values(self): """ Collects the values from the outside environment including GHI, OAT, and the base price set by the utility. + :return: None """ - self.current_values = self.redis_client.conn.hgetall("current_values") + self.current_values = self.redis_client.hgetall("current_values") def cast_redis_timestep(self): """ Sets the timestep of the current time with respect to total simulation time. + :return: None """ - self.timestep = int(self.current_values["timestep"]) + self.timestep = int(self.current_values["start_index"]) + int(self.current_values["timestep"]) def cast_redis_curr_rps(self): """ Casts the reward price signal values for the current timestep. + :return: None """ - rp = self.redis_client.conn.lrange('reward_price', 0, -1) - self.reward_price = rp[:self.horizon] - self.log.info(f"ts: {self.timestep}; RP: {self.reward_price[0]}") + rp = self.redis_client.lrange('reward_price', 0, -1) + self.reward_price[:self.dt] = float(rp[-1]) + # self.log.debug(f"ts: {self.timestep}; RP: {self.reward_price[0]}") def solve_type_problem(self): """ Selects routine for MPC optimization problem setup and solve using home type. + :return: None """ - self.set_environmental_variables() - self.add_type_constraints() - self.set_type_p_grid() + self.add_base_constraints() + self.set_p_grid() self.solve_mpc() + return def run_home(self): """ Intended for parallelization in parent class (e.g. aggregator); runs a single MPCCalc home. + :return: None """ fh = logging.FileHandler(os.path.join("home_logs", f"{self.name}.log")) fh.setLevel(logging.WARN) - self.log = pathos.logger(level=logging.INFO, handler=fh, name=self.name) + # self.log = pathos.logger(level=logging.INFO, handler=fh, name=self.name) - self.redis_client = RedisClient() + self.redis_client = rc.connection(self.redis_url) self.redis_get_initial_values() self.cast_redis_timestep() + if self.timestep > 0: self.redis_get_prev_optimal_vals() self.get_initial_conditions() self.solve_type_problem() self.cleanup_and_finish() - self.redis_write_optimal_vals() - - self.log.removeHandler(fh) + self.redis_write_optimal_vals() \ No newline at end of file diff --git a/dragg/plot.py b/dragg/plot.py new file mode 100644 index 0000000..60b6bba --- /dev/null +++ b/dragg/plot.py @@ -0,0 +1,175 @@ +import os +import sys +import json +import toml +from datetime import datetime, timedelta +import numpy as np +import pandas as pd +import itertools as it +import random + +import plotly.graph_objects as go +import plotly.express as px +from plotly.subplots import make_subplots +import plotly.io as pio +import plotly +from prettytable import PrettyTable +from copy import copy, deepcopy + +from dragg.logger import Logger +import dragg + +class Plotter(): + def __init__(self, res_file=None, conf_file=None): + self.res_file = res_file if res_file else self.get_res_file() + self.conf_file = conf_file if conf_file else self.get_conf_file() + with open(self.res_file + 'results.json') as f: + self.data = json.load(f) + + with open(self.conf_file) as f: + self.conf_data = json.load(f) + + self.xlims = pd.date_range(start=self.conf_data[-1]["start_dt"], end=self.conf_data[-1]["end_dt"], periods=self.conf_data[-1]["num_timesteps"]+1) + + def get_res_file(self): + config_file = 'data/config.toml' + with open(config_file) as f: + config = toml.load(f) + + dt = 60 // config["agg"]["subhourly_steps"] + sub_dt = dt // config["home"]["hems"]["sub_subhourly_steps"] + start_dt = config["simulation"]["start_datetime"][:-3] + "T" + config["simulation"]["start_datetime"][-2:] + end_dt = config["simulation"]["end_datetime"][:-3] + "T" + config["simulation"]["end_datetime"][-2:] + return f'outputs/{start_dt}_{end_dt}/{config["simulation"]["check_type"]}-homes_{config["community"]["total_number_homes"]}-horizon_{config["home"]["hems"]["prediction_horizon"]}-interval_{dt}-{sub_dt}-solver_{config["home"]["hems"]["solver"]}/version-{config["simulation"]["named_version"]}/baseline/' + + def get_conf_file(self): + config_file = 'data/config.toml' + with open(config_file) as f: + config = toml.load(f) + + return f'outputs/{config["simulation"]["check_type"]}_homes-{config["community"]["total_number_homes"]}-config.json' + + def plot_soc(self, name="PLAYER", debug=False): + skip = 2 if (2 * len(self.data[name]["t_in_min"]) == len(self.data["Summary"]["OAT"])) else 1 + + fig = make_subplots(rows=1, cols=3, specs=[[{"secondary_y": True},{"secondary_y": True},{"secondary_y": True}]], subplot_titles=("Room Temp", "WH Temp", "EV SOC")) + + # plot indoor temperature + fig.add_trace(go.Scatter(x=self.xlims, y=self.data[name]["t_in_min"], + mode='lines', + line_color='lightskyblue', + showlegend=False), + row=1, col=1) + fig.add_trace(go.Scatter(x=self.xlims, y=self.data[name]["t_in_max"], + fill='tonexty', + mode='lines', + line_color='lightskyblue', + showlegend=False), + row=1, col=1) + fig.add_trace(go.Scatter(x=self.xlims, y=self.data[name]["temp_in_opt"], + mode='lines', + line_color='lightskyblue', + name="Room Temp"), + row=1, col=1) + fig.add_trace(go.Scatter(x=self.xlims, y=self.data["Summary"]["OAT"][::skip], + mode='lines', + line_color='slateblue', + line_dash='dash', + name="Outdoor Temp"), + row=1, col=1, + secondary_y=False) + fig.add_trace(go.Scatter(x=self.xlims, y=np.multiply(self.data["Summary"]["GHI"][::skip],0.001), + mode='lines', + line_color='darkorange', + line_dash="dot", + name="GHI"), + row=1, col=1, + secondary_y=True) + + fig.update_yaxes(title_text="Temperature [deg C]", row=1, col=1, secondary_y=False) + fig.add_trace(go.Bar(x=self.xlims, y= np.multiply(-1,self.data[name]["hvac_cool_on_opt"]), name="Cooling on/off", marker_color="dodgerblue"), row=1, col=1, secondary_y=True) + fig.add_trace(go.Bar(x=self.xlims, y= self.data[name]["hvac_heat_on_opt"], name="Heat on/off", marker_color="firebrick"), row=1, col=1, secondary_y=True) + if debug: + fig.add_trace(go.Scatter(x=self.xlims, y=np.divide(np.cumsum(np.subtract(self.data[name]["hvac_heat_on_opt"], self.data[name]["hvac_cool_on_opt"])), 1+np.arange(self.conf_data[-1]["num_timesteps"]))), row=1, col=1, secondary_y=True) + + + # plot water heater temperature + x = False + i = 0 + while not x: + if self.conf_data[i]["name"] == name: + x = True + else: + i += 1 + + fig.add_trace(go.Scatter(x=self.xlims, y=self.conf_data[i]['wh']['temp_wh_min'] * np.ones(len(self.data[name]["temp_wh_opt"])), + mode='lines', + line_color='indianred', + showlegend=False), + row=1, col=2) + fig.add_trace(go.Scatter(x=self.xlims, y=self.conf_data[i]['wh']['temp_wh_max'] * np.ones(len(self.data[name]["temp_wh_opt"])), + fill='tonexty', + mode='lines', + line_color='indianred', + showlegend=False), + row=1, col=2) + fig.add_trace(go.Scatter(x=self.xlims, y=self.data[name]["temp_wh_opt"], + mode='lines', + line_color='indianred', + name="Hot Water Temp"), + row=1, col=2) + fig.update_yaxes(title_text="Temperature [deg C]", row=1, col=2, secondary_y=False) + fig.add_trace(go.Bar(x=self.xlims, y=self.data[name]["wh_heat_on_opt"], name="WH on/off", marker_color="firebrick"),row=1, col=2, secondary_y=True) + if debug: + fig.add_trace(go.Scatter(x=self.xlims, y=np.divide(np.cumsum(self.data[name]["wh_heat_on_opt"]), 1+np.arange(self.conf_data[-1]["num_timesteps"]))), row=1, col=2, secondary_y=True) + + # plot EV state of charge + fig.add_trace(go.Scatter(x=self.xlims, y=self.data[name]["e_ev_opt"], + mode='lines', + line_color='lightseagreen', + name="EV SOC"), + row=1, col=3) + fig.add_trace(go.Bar(x=self.xlims, y=self.data[name]["p_ev_ch"], + name="EV chg", marker_color="seagreen"), + row=1, col=3, + secondary_y=True) + fig.add_trace(go.Bar(x=self.xlims, y=self.data[name]["p_v2g"], + name="EV P2G", marker_color="seagreen"), + row=1, col=3, + secondary_y=True) + fig.add_trace(go.Bar(x=self.xlims, y=self.data[name]["p_ev_disch"], name="EV Trip"), row=1, col=3, secondary_y=True) + fig.update_yaxes(title_text="EV SOC [kWh]", row=1, col=3, secondary_y=False) + + fig.update_layout(height=600, width=1500, title_text=name) + + if debug: + for i in range(1,4): + fig.add_trace(go.Bar(x=self.xlims, y=self.data[name]["correct_solve"], name="correct_solve"), row=1, col=i, secondary_y=True) + + return fig + + def plot_community_peak(self): + total = np.zeros(self.conf_data[-1]["num_timesteps"]) + fig = go.Figure() + for k,v in self.data.items(): + color = 'coral' if k == "PLAYER" else 'cadetblue' + try: + fig.add_trace(go.Scatter(x=self.xlims, y=v["p_grid_opt"], stackgroup='one', name=k, line_color=color)) + total = np.add(total, v["p_grid_opt"]) + except: + pass + + # fig.add_trace(go.Scatter(x = self.xlims, y=np.cumsum(total)/(1+np.arange(self.conf_data[-1]["num_timesteps"])))) + fig.update_layout(title_text="Community Demand") + return fig + + def main(self): + for name in self.data.keys(): + if not name == "Summary": + self.plot_soc(name=name).show() + + self.plot_community_peak().show() + +if __name__=='__main__': + p = Plotter() + p.main() diff --git a/dragg/plotter.py b/dragg/plotter.py deleted file mode 100644 index 9911209..0000000 --- a/dragg/plotter.py +++ /dev/null @@ -1,63 +0,0 @@ -# -*- coding: utf-8 -*- -import dash -import dash_core_components as dcc -import dash_html_components as html -from dash.dependencies import Input, Output -import pandas as pd - -df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/gapminderDataFiveYear.csv') - -external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css'] - -app = dash.Dash(__name__, external_stylesheets=external_stylesheets) - -app.layout = html.Div([ - dcc.Graph(id='graph-with-slider'), - dcc.Slider( - id='year-slider', - min=df['year'].min(), - max=df['year'].max(), - value=df['year'].min(), - marks={str(year): str(year) for year in df['year'].unique()}, - step=None - ) -]) - - -@app.callback( - Output('graph-with-slider', 'figure'), - [Input('year-slider', 'value')]) -def update_figure(selected_year): - filtered_df = df[df.year == selected_year] - traces = [] - for i in filtered_df.continent.unique(): - df_by_continent = filtered_df[filtered_df['continent'] == i] - traces.append(dict( - x=df_by_continent['gdpPercap'], - y=df_by_continent['lifeExp'], - text=df_by_continent['country'], - mode='markers', - opacity=0.7, - marker={ - 'size': 15, - 'line': {'width': 0.5, 'color': 'white'} - }, - name=i - )) - - return { - 'data': traces, - 'layout': dict( - xaxis={'type': 'log', 'title': 'GDP Per Capita', - 'range': [2.3, 4.8]}, - yaxis={'title': 'Life Expectancy', 'range': [20, 90]}, - margin={'l': 40, 'b': 40, 't': 10, 'r': 10}, - legend={'x': 0, 'y': 1}, - hovermode='closest', - transition={'duration': 1000}, - ) - } - - -if __name__ == '__main__': - app.run_server(debug=True) diff --git a/dragg/redis_client.py b/dragg/redis_client.py index ceda478..027c801 100644 --- a/dragg/redis_client.py +++ b/dragg/redis_client.py @@ -1,25 +1,15 @@ import os -import redis -class Singleton(type): +from redis import StrictRedis - _instances = {} +_connection = None - def __call__(cls): - if cls not in cls._instances: - cls._instances[cls] = super(Singleton, cls).__call__() - return cls._instances[cls] +def connection(url = "redis://localhost"): + """Return the Redis connection to the URL given by the environment + variable REDIS_URL, creating it if necessary. -class RedisClient(metaclass=Singleton): - - def __init__(self): - self.pool = redis.ConnectionPool(host = os.environ.get('REDIS_HOST', 'localhost'), decode_responses = True, db = 0) - - @property - def conn(self): - if not hasattr(self, '_conn'): - self.getConnection() - return self._conn - - def getConnection(self): - self._conn = redis.Redis(connection_pool = self.pool) + """ + global _connection + if _connection is None: + _connection = StrictRedis.from_url(url, decode_responses=True) + return _connection \ No newline at end of file diff --git a/dragg/reformat.py b/dragg/reformat.py deleted file mode 100755 index 1c2d9b1..0000000 --- a/dragg/reformat.py +++ /dev/null @@ -1,509 +0,0 @@ -import os -import sys -import json -import toml -from datetime import datetime, timedelta -import numpy as np -import pandas as pd -import itertools as it -import random - -import plotly.graph_objects as go -import plotly.express as px -from plotly.subplots import make_subplots -import plotly.io as pio -import plotly -from prettytable import PrettyTable - -from dragg.logger import Logger - -class Reformat: - def __init__(self): - self.log = Logger("reformat") - - self.data_dir = os.path.expanduser(os.environ.get('DATA_DIR','data')) - self.outputs_dir = os.path.expanduser(os.environ.get('OUTPUT_DIR','outputs')) - if not os.path.isdir(self.outputs_dir): - self.log.logger.error("No outputs directory found.") - quit() - self.config_file = os.path.join(self.data_dir, os.environ.get('CONFIG_FILE', 'config.toml')) - self.config = self._import_config() - - self.add_date_ranges() - self.add_mpc_params() - self.date_folders = self.set_date_folders() - self.mpc_folders = self.set_mpc_folders() - self.files = self.set_files() - - self.fig_list = None - self.save_path = os.path.join('outputs', 'images', datetime.now().strftime("%m%dT%H%M%S")) - - def main(self): - # put a list of plotting functions here - self.sample_home = "Crystal-RXXFA" - self.plots = [self.rl2baseline, - self.plot_single_home] - - self.images = self.plot_all() - - def plot_all(self, save_images=False): - figs = [] - for plot in self.plots: - fig = make_subplots(specs=[[{"secondary_y": True}]]) - fig.update_layout( - font=dict( - size=65, - ) - ) - fig.update_xaxes( - title_standoff=80 - ) - fig.update_yaxes( - title_standoff=60 - ) - fig = plot(fig) - fig.show() - figs += [fig] - return figs - - def save_images(self): - if not os.path.isdir(self.save_path): - os.makedirs(self.save_path) - for img in self.images: - self.log.logger.info(f"Saving images of outputs to timestamped folder at {self.save_path}.") - try: - path = os.path.join(self.save_path, f"{img.layout.title.text}.png") - pio.write_image(img, path, width=1024, height=768) - except: - self.log.logger.error("Could not save plotly image(s) to outputs directory.") - - def add_date_ranges(self): - start_dates = set([datetime.strptime(self.config['simulation']['start_datetime'], '%Y-%m-%d %H')]) - end_dates = set([datetime.strptime(self.config['simulation']['end_datetime'], '%Y-%m-%d %H')]) - temp = {"start_datetime": start_dates, "end_datetime": end_dates} - self.date_ranges = temp - - def add_mpc_params(self): - n_houses = self.config['community']['total_number_homes'] - mpc_horizon = self.config['home']['hems']['prediction_horizon'] - dt = self.config['home']['hems']['sub_subhourly_steps'] - solver = self.config['home']['hems']['solver'] - check_type = self.config['simulation']['check_type'] - agg_interval = self.config['agg']['subhourly_steps'] - temp = {"n_houses": set([n_houses]), "mpc_prediction_horizons": set([mpc_horizon]), "mpc_hourly_steps": set([dt]), "check_type": set([check_type]), "agg_interval": set([agg_interval]), "solver": set([solver])} - # for key in temp: - # if key in additional_params: - # temp[key] |= set(additional_params[key]) - self.mpc_params = temp - - self.versions = set([self.config['simulation']['named_version']]) - - def set_date_folders(self): - temp = [] - # self.date_ranges['mpc_steps'] = set([self.config['home']['hems']['sub_subhourly_steps']]) - # self.date_ranges['rl_steps'] = set([self.config['agg']['subhourly_steps']]) - keys, values = zip(*self.date_ranges.items()) - permutations = [dict(zip(keys, v)) for v in it.product(*values)] - permutations = sorted(permutations, key=lambda i: i['end_datetime'], reverse=True) - - for i in permutations: - date_folder = os.path.join(self.outputs_dir, f"{i['start_datetime'].strftime('%Y-%m-%dT%H')}_{i['end_datetime'].strftime('%Y-%m-%dT%H')}") - self.log.logger.info(f"Looking for files in: {date_folder}.") - if os.path.isdir(date_folder): - hours = i['end_datetime'] - i['start_datetime'] - hours = int(hours.total_seconds() / 3600) - - new_folder = {"folder": date_folder, "hours": hours, "start_dt": i['start_datetime']} - temp.append(new_folder) - - if len(temp) == 0: - self.log.logger.error("No files found for the date ranges specified.") - exit() - - return temp - - def set_mpc_folders(self): - temp = [] - keys, values = zip(*self.mpc_params.items()) - permutations = [dict(zip(keys, v)) for v in it.product(*values)] - for j in self.date_folders: - for i in permutations: - mpc_folder = os.path.join(j["folder"], f"{i['check_type']}-homes_{i['n_houses']}-horizon_{i['mpc_prediction_horizons']}-interval_{60 // i['agg_interval']}-{60 // i['mpc_hourly_steps'] // i['agg_interval']}-solver_{i['solver']}") - if os.path.isdir(mpc_folder): - timesteps = j['hours'] * i['agg_interval'] - minutes = 60 // i['agg_interval'] - x_lims = [j['start_dt'] + timedelta(minutes=minutes*x) for x in range(timesteps)] - - set = {'path': mpc_folder, 'agg_dt': i['agg_interval'], 'ts': timesteps, 'x_lims': x_lims,} - if not mpc_folder in temp: - temp.append(set) - for x in temp: - print(x['path']) - return temp - - def set_files(self): - temp = [] - keys, values = zip(*self.mpc_params.items()) - permutations = [dict(zip(keys, v)) for v in it.product(*values)] - - color_families = [['rgb(204,236,230)','rgb(153,216,201)','rgb(102,194,164)','rgb(65,174,118)','rgb(35,139,69)','rgb(0,88,36)'], - ['rgb(191,211,230)','rgb(158,188,218)','rgb(140,150,198)','rgb(140,107,177)','rgb(136,65,157)','rgb(110,1,107)'], - ['rgb(217,217,217)','rgb(189,189,189)','rgb(150,150,150)','rgb(115,115,115)','rgb(82,82,82)','rgb(37,37,37)'], - ['rgb(253,208,162)','rgb(253,174,107)','rgb(253,141,60)','rgb(241,105,19)','rgb(217,72,1)','rgb(140,45,4)'],] - c = 0 - d = 0 - dash = ["solid", "dash", "dot", "dashdot"] - for j in self.mpc_folders: - path = j['path'] - for i in permutations: - for k in self.versions: - dir = os.path.join(path, f"version-{k}") - for case_dir in os.listdir(dir): - file = os.path.join(dir, case_dir, "results.json") - if os.path.isfile(file): - name = f"{case_dir}, v = {k}" - set = {"results": file, "name": name, "parent": j, "color": color_families[c][d], "dash":dash[c]} - temp.append(set) - self.log.logger.info(f"Adding baseline file at {file}") - d = (d + 1) % len(color_families[c]) - c = (c + 1) % len(color_families) - - return temp - - def get_type_list(self, type): - type_list = set([]) - i = 0 - for file in self.files: - with open(file["results"]) as f: - data = json.load(f) - - temp = set([]) - for name, house in data.items(): - try: - if house["type"] == type: - temp.add(name) - except: - pass - - if i < 1: - type_list = temp - else: - type_list = type_list.intersection(temp) - - self.log.logger.info(f"{len(type_list)} homes found of type {type}: {type_list}") - return type_list - - def _import_config(self): - if not os.path.exists(self.config_file): - self.log.logger.error(f"Configuration file does not exist: {self.config_file}") - sys.exit(1) - - with open(self.config_file, 'r') as f: - data = toml.load(f) - - return data - - def plot_environmental_values(self, name, fig, summary, file, fname): - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=summary["OAT"][0:file["parent"]["ts"]], name=f"OAT (C)", visible='legendonly')) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=summary["GHI"][0:file["parent"]["ts"]], name=f"GHI", line={'color':'goldenrod', 'width':8}, visible='legendonly')) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=summary["TOU"][0:file["parent"]["ts"]], name=f"TOU Price ($/kWh)", line_shape='hv', visible='legendonly'), secondary_y=True) - fig = self.plot_thermal_bounds(fig, file['parent']['x_lims'], name, fname) - return fig - - def plot_thermal_bounds(self, fig, x_lims, name, fname): - ah_file = os.path.join(self.outputs_dir, f"all_homes-{self.config['community']['total_number_homes']}-config.json") - with open(ah_file) as f: - data = json.load(f) - - for dict in data: - if dict['name'] == name: - data = dict - - fig.add_trace(go.Scatter(x=x_lims, y=data['hvac']['temp_in_min'] * np.ones(len(x_lims)), name=f"Tin_min", fill=None, showlegend=False, mode='lines', line_color='lightsteelblue')) - fig.add_trace(go.Scatter(x=x_lims, y=data['hvac']['temp_in_max'] * np.ones(len(x_lims)), name=f"Tin_bounds", fill='tonexty' , mode='lines', line_color='lightsteelblue')) - - fig.add_trace(go.Scatter(x=x_lims, y=data['wh']['temp_wh_min'] * np.ones(len(x_lims)), name=f"Twh_min", fill=None, showlegend=False, mode='lines', line_color='pink')) - fig.add_trace(go.Scatter(x=x_lims, y=data['wh']['temp_wh_max'] * np.ones(len(x_lims)), name=f"Twh_bounds", fill='tonexty' , mode='lines', line_color='pink')) - return fig - - def plot_base_home(self, name, fig, data, summary, fname, file, plot_price=True): - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["temp_in_opt"], name=f"Tin - {fname}", legendgroup='tin', line={'color':'blue', 'width':8, 'dash':file['dash']})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["temp_wh_opt"], showlegend=True, legendgroup='twh', name=f"Twh - {fname}", line={'color':'firebrick', 'width':8, 'dash':file['dash']})) - - fig.update_layout(legend=dict( - yanchor="top", - y=0.99, - xanchor="left", - x=0.03, - font=dict( - size=65), - ), - yaxis_title="Temperature (deg C)" - ) - - return fig - - def plot_pv(self, name, fig, data, fname, file): - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["p_pv_opt"], name=f"Ppv (kW)", line_color='orange', line_shape='hv', visible='legendonly')) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["u_pv_curt_opt"], name=f"U_pv_curt (kW) - {fname}", line_shape='hv', visible='legendonly')) - return fig - - def plot_battery(self, name, fig, data, fname, file): - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["e_batt_opt"], name=f"SOC (kW) - {fname}", line_shape='hv', visible='legendonly')) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["p_batt_ch"], name=f"Pch (kW) - {fname}", line_shape='hv', visible='legendonly')) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["p_batt_disch"], name=f"Pdis (kW) - {fname}", line_shape='hv', visible='legendonly')) - return fig - - def plot_single_home(self, fig): - if self.sample_home is None: - if type is None: - type = "base" - self.log.logger.warning("Specify a home type or name. Proceeding with home of type: \"base\".") - - type_list = self._type_list(type) - self.sample_home = random.sample(type_list,1)[0] - self.log.logger.info(f"Proceeding with home: {name}") - - flag = False - for file in self.files: - with open(file["results"]) as f: - comm_data = json.load(f) - - try: - data = comm_data[self.sample_home] - except: - self.log.logger.error(f"No home with name: {self.sample_home}") - return - - type = data["type"] - summary = comm_data["Summary"] - - if not flag: - fig = self.plot_environmental_values(self.sample_home, fig, summary, file, file["name"]) - flag = True - - fig.update_xaxes(title_text="Time of Day (hour)") - fig.update_layout(title_text=f"{self.sample_home} - {type} type") - - fig = self.plot_base_home(self.sample_home, fig, data, summary, file["name"], file) - - if 'pv' in type: - fig = self.plot_pv(self.sample_home, fig, data, file["name"], file) - - if 'batt' in type: - fig = self.plot_battery(self.sample_home, fig, data, file["name"], file) - - return fig - - def plot_all_homes(self, fig=None): - homes = ["Crystal-RXXFA","Myles-XQ5IA","Lillie-NMHUH","Robert-2D73X","Serena-98EPE","Gary-U95TS","Bruno-PVRNB","Dorothy-9XMNY","Jason-INS3S","Alvin-4BAYB",] - for self.sample_home in homes: - fig = make_subplots(specs=[[{"secondary_y": True}]]) - fig.update_layout( - font=dict( - size = 12 - ) - ) - fig = self.plot_single_home(fig) - - return - - def plot_baseline(self, fig): - for file in self.files: - with open(file["results"]) as f: - data = json.load(f) - - ts = len(data['Summary']['p_grid_aggregate'])-1 - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["Summary"]["p_grid_aggregate"], name=f"Agg Load - {file['name']}", line_shape='hv', line={'color':file['color'], 'width':4, 'dash':'solid'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=np.cumsum(np.divide(data["Summary"]["p_grid_aggregate"], file['parent']['agg_dt'])), name=f"Cumulative Agg Load - {file['name']}", line_shape='hv', visible='legendonly', line={'color':file['color'], 'width':4, 'dash':'dash'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=np.divide(np.cumsum(data["Summary"]["p_grid_aggregate"]), np.arange(ts + 1) + 1), name=f"Avg Cumulative Agg Load - {file['name']}", line_shape='hv', visible='legendonly', line={'color':file['color'], 'width':4, 'dash':'dashdot'})) - return fig - - def plot_typ_day(self, fig): - rl_counter = 0 - tou_counter = 0 - dn_counter = 0 - for file in self.files: - flag = True - - with open(file["results"]) as f: - data = json.load(f) - - name = file["name"] - - ts = len(data['Summary']['p_grid_aggregate'])-1 - rl_setpoint = data['Summary']['p_grid_setpoint'] - if 'clipped' in file['name']: - rl_setpoint = np.clip(rl_setpoint, 45, 60) - loads = np.array(data["Summary"]["p_grid_aggregate"]) - loads = loads[:len(loads) // (24*file['parent']['agg_dt']) * 24 * file['parent']['agg_dt']] - if len(loads) > 24: - daily_max_loads = np.repeat(np.amax(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_min_loads = np.repeat(np.amin(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_range_loads = np.subtract(daily_max_loads, daily_min_loads) - daily_range_loads = [abs(loads[max(i-6, 0)] - loads[min(i+6, len(loads)-1)]) for i in range(len(loads))] - daily_avg_loads = np.repeat(np.mean(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_std_loads = np.repeat(np.std(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_std_loads = [np.std(loads[max(i-6, 0):i+6]) for i in range(len(loads))] - - composite_day = np.average(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=0) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=composite_day, name=f"{name}", opacity=0.5, showlegend=flag, line={'color':clr, 'width':8, 'dash':dash})) - - fig.update_layout(legend=dict( - yanchor="top", - y=0.45, - xanchor="left", - x=0.7 - )) - - fig.update_layout( - font=dict( - # family="Courier New, monospace", - size=65, - ), - title="Avg Daily Load Profile", - xaxis_title="Time of Day", - yaxis_title="Agg. Demand (kW)" - ) - - fig.update_xaxes( - title_standoff=80 - ) - fig.update_yaxes( - title_standoff=60 - ) - - return fig - - def plot_max_and_12hravg(self, fig): - for file in self.files: - # all_avgs.add_column() - clr = file['color'] - - with open(file["results"]) as f: - data = json.load(f) - - name = file["name"] - ts = len(data['Summary']['p_grid_aggregate'])-1 - rl_setpoint = data['Summary']['p_grid_setpoint'] - if 'clipped' in file['name']: - rl_setpoint = np.clip(rl_setpoint, 45, 60) - loads = np.array(data["Summary"]["p_grid_aggregate"]) - loads = loads[:len(loads) // (24*file['parent']['agg_dt']) * 24 * file['parent']['agg_dt']] - if len(loads) > 24: - daily_max_loads = np.repeat(np.amax(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_min_loads = np.repeat(np.amin(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_range_loads = np.subtract(daily_max_loads, daily_min_loads) - daily_range_loads = [abs(loads[max(i-6, 0)] - loads[min(i+6, len(loads)-1)]) for i in range(len(loads))] - daily_avg_loads = np.repeat(np.mean(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_std_loads = np.repeat(np.std(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_max_loads, name=f"{name} - Daily Max", line_shape='hv', opacity=1, legendgroup="first", line={'color':'firebrick', 'dash':dash, 'width':8})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=rl_setpoint, name=f"{name} - 12 Hr Avg", opacity=0.5, legendgroup="second", line={'color':'blue', 'dash':dash, 'width':8})) - - fig.update_layout(legend=dict( - yanchor="top", - y=0.8, - xanchor="left", - x=0.7 - )) - - fig.update_layout( - font=dict( - size=65, - ), - title="12 Hour Avg and Daily Max", - yaxis_title="Agg. Demand (kW)" - ) - - fig.update_xaxes( - title_standoff=80 - ) - fig.update_yaxes( - title_standoff=60 - ) - - return fig - - - def plot_parametric(self, fig): - all_daily_stats = PrettyTable(['run name', 'avg daily max', 'std daily max','overall max', 'avg daily range']) - for file in self.files: - clr = file['color'] - - with open(file["results"]) as f: - data = json.load(f) - - name = file["name"] - ts = len(data['Summary']['p_grid_aggregate'])-1 - rl_setpoint = data['Summary']['p_grid_setpoint'] - if 'clipped' in file['name']: - rl_setpoint = np.clip(rl_setpoint, 45, 60) - loads = np.array(data["Summary"]["p_grid_aggregate"]) - loads = loads[:len(loads) // (24*file['parent']['agg_dt']) * 24 * file['parent']['agg_dt']] - if len(loads) >= 24: - daily_max_loads = np.repeat(np.amax(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_min_loads = np.repeat(np.amin(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_range_loads = np.subtract(daily_max_loads, daily_min_loads) - daily_range_loads = [abs(loads[max(i-6, 0)] - loads[min(i+6, len(loads)-1)]) for i in range(len(loads))] - daily_avg_loads = np.repeat(np.mean(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=1), 24*file['parent']['agg_dt']) - daily_std_loads = [np.std(loads[max(i-6, 0):i+6]) for i in range(len(loads))] - - composite_day = np.average(loads.reshape(-1, 24*file['parent']['agg_dt']), axis=0) - fig.update_layout(legend=dict( - yanchor="top", - y=0.45, - xanchor="left", - x=0.5 - )) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=rl_setpoint, name=f"{name} - 12 Hr Avg", opacity=0.5, line={'color':clr, 'width':8})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=data["Summary"]["p_grid_aggregate"], name=f"Agg Load - RL - {name}", line_shape='hv', line={'color':clr})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_max_loads, name=f"{name} - Daily Max", line_shape='hv', opacity=0.5, line={'color':clr, 'dash':'dot'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_min_loads, name=f"Daily Min Agg Load - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr, 'dash':'dash'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_range_loads, name=f"Daily Agg Load Range - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=np.average(daily_range_loads) * np.ones(len(loads)), name=f"Avg Daily Agg Load Range - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_avg_loads, name=f"Daily Avg Agg Load - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr, 'dash':'dash'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=daily_std_loads, name=f"Daily Std Agg Load - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr, 'dash':'dashdot'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=np.average(daily_std_loads) * np.ones(len(loads)), name=f"Avg Daily Std Agg Load - RL - {name}", line_shape='hv', opacity=0.5, line={'color':clr, 'dash':'dashdot'})) - fig.add_trace(go.Scatter(x=file['parent']['x_lims'], y=np.cumsum(np.divide(data["Summary"]["p_grid_aggregate"],file['parent']['agg_dt'])), name=f"{name}", line_shape='hv', visible='legendonly', line={'color':clr, })) - all_daily_stats.add_row([file['name'], np.average(daily_max_loads), np.std(daily_max_loads), max(daily_max_loads), np.average(daily_range_loads)]) - else: - self.log.logger.warning("Not enough data collected to have daily stats, try running the aggregator for longer.") - print(all_daily_stats) - return fig - - def rl2baseline(self, fig): - if len(self.files) == 0: - self.log.logger.warning("No aggregator runs found for analysis.") - return fig - fig = self.plot_baseline(fig) - fig = self.plot_parametric(fig) - fig.update_layout(title_text="RL Baseline Comparison") - fig.update_layout( - title="Avg Daily Load Profile", - xaxis_title="Time of Day", - yaxis_title="Agg. Demand (kWh)",) - return fig - - def all_rps(self, fig): - for file in self.files: - with open(file['results']) as f: - data = json.load(f) - - rps = data['Summary']['RP'] - fig.add_trace(go.Histogram(x=rps, name=f"{file['name']}"), row=1, col=1) - - with open(file['q_results']) as f: - data = json.load(f) - data = data["horizon"] - mu = np.array(data["mu"]) - std = self.config['agg']['parameters']['exploration_rate'][0] - delta = np.subtract(mu, rps) - - fig.add_trace(go.Histogram(x=delta, name=f"{file['name']}"), row=2, col=1) - fig.add_trace(go.Scatter(x=[-std, -std, std, std], y=[0, 0.3*len(rps), 0.3*len(rps), 0], fill="toself"), row=2, col=1) - return fig - -if __name__ == "__main__": - r = Reformat() - r.main() diff --git a/setup.py b/setup.py index 1dd8cbc..6cd11d1 100755 --- a/setup.py +++ b/setup.py @@ -1,15 +1,27 @@ import os - -with open('./requirements.txt') as f: - required = f.read().splitlines() - from setuptools import setup, find_packages setup(name='dragg', license='MIT', - version='0.0', + version='2.4.0', + author='Aisling Pigott and Cory Mosiman', + author_email='aisling.pigott@colorado.edu', packages=find_packages(), - scripts=["dragg/main.py"], - install_requires=required, - py_modules=['dragg'] + scripts=[], + install_requires=[ + 'redis', + 'pathos', + 'cvxpy', + 'numpy', + 'pandas', + 'prettytable', + 'plotly', + 'toml', + 'names'], + py_modules=['dragg'], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], )