From 149954ddb33da4c8ddc5bb99a4f567b942c0829d Mon Sep 17 00:00:00 2001 From: kodiobika Date: Thu, 11 Jun 2026 08:32:14 -0400 Subject: [PATCH 1/8] Add temperature - gas price regression workflow --- .../README.md | 11 + .../calculate_gasreg_degree_days.ipynb | 351 ++ .../calculate_regression_params.ipynb | 249 + .../inputs/NST-EST2025-POP.xlsx | Bin 0 -> 16635 bytes ...ons_ProjectedTotalPopulation_2030-2050.csv | 53 + .../inputs/gasreg_regression_data.csv | 4019 +++++++++++++++++ .../inputs/kdegday.txt | 123 + .../inputs/nst-est2020.xlsx | Bin 0 -> 19194 bytes .../inspect_hub_locations.ipynb | 210 + .../write_gasreg_regression_data.ipynb | 462 ++ 10 files changed, 5478 insertions(+) create mode 100644 aeo_updates/temperature_gas_price_regression/README.md create mode 100644 aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb create mode 100644 aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb create mode 100644 aeo_updates/temperature_gas_price_regression/inputs/NST-EST2025-POP.xlsx create mode 100644 aeo_updates/temperature_gas_price_regression/inputs/NationalProjections_ProjectedTotalPopulation_2030-2050.csv create mode 100644 aeo_updates/temperature_gas_price_regression/inputs/gasreg_regression_data.csv create mode 100644 aeo_updates/temperature_gas_price_regression/inputs/kdegday.txt create mode 100644 aeo_updates/temperature_gas_price_regression/inputs/nst-est2020.xlsx create mode 100644 aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb create mode 100644 aeo_updates/temperature_gas_price_regression/write_gasreg_regression_data.ipynb diff --git a/aeo_updates/temperature_gas_price_regression/README.md b/aeo_updates/temperature_gas_price_regression/README.md new file mode 100644 index 0000000..8e5d667 --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/README.md @@ -0,0 +1,11 @@ +# Workflow +- `inspect_hub_locations.ipynb` identifies the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. +- `write_gasreg_regression_data.ipynb` writes the daily heating/cooling degree day and spot price data used in the regression. Creates `inputs/gasreg_regression_data.csv`. +- `calculate_regression_params.ipynb` performs the regression and exports the corresponding parameters (HDD/CDD coefficients, intercept, and monthly fixed effects). Creates the ReEDS input file `ReEDS/inputs/fuelprices/gasreg_degree_day_price_mult_regression_params.csv`. +- `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg. Creates the ReEDS input file `ReEDS/inputs/fuelprices/gasreg_degree_days.csv`. + +# Sources +- `inputs/kdegday.txt`: https://github.com/EIAgov/NEMS/blob/main/input/bld/kdegday.txt +- `inputs/NationalProjections_ProjectedTotalPopulation_2030-2050.csv`: https://www.coopercenter.org/national-population-projections +- `inputs/nst-est2020.xlsx`: https://www.census.gov/programs-surveys/popest/technical-documentation/research/evaluation-estimates/2020-evaluation-estimates/2010s-state-total.html +- `inputs/NST-EST2025-POP.xlsx`: https://www.census.gov/data/tables/time-series/demo/popest/2020s-state-total.html diff --git a/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb b/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb new file mode 100644 index 0000000..be938aa --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb @@ -0,0 +1,351 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "43fc8779-04b0-47e9-b93a-39c8cee28a27", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.linear_model import LinearRegression\n", + "from pathlib import Path\n", + "import matplotlib.pyplot as plt\n", + "import requests\n", + "import urllib3\n", + "from urllib3.exceptions import InsecureRequestWarning\n", + "import warnings\n", + "\n", + "urllib3.disable_warnings(InsecureRequestWarning)\n", + "warnings.simplefilter(action='ignore', category=pd.errors.ParserWarning)\n", + "\n", + "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "dec32a79-44fa-406e-91de-585cd375941a", + "metadata": {}, + "outputs": [], + "source": [ + "month_list = [\n", + " 'January',\n", + " 'February',\n", + " 'March',\n", + " 'April',\n", + " 'May',\n", + " 'June',\n", + " 'July',\n", + " 'August',\n", + " 'September',\n", + " 'October',\n", + " 'November',\n", + " 'December'\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b1e9fba8-72fe-4a40-ac97-2f8ff969eed5", + "metadata": {}, + "outputs": [], + "source": [ + "# Download state-level degree days\n", + "for dd_type in ['cdd', 'hdd']:\n", + " for year in range(1995, 2026):\n", + " for month in month_list:\n", + " if dd_type == 'cdd':\n", + " energy_type = 'cooling'\n", + " else:\n", + " energy_type = 'heating'\n", + "\n", + " url = f\"https://ftp.cpc.ncep.noaa.gov/htdocs/degree_days/weighted/legacy_files/{energy_type}/statesCONUS/{year}/{month}.txt\"\n", + " fpath = Path('inputs', f\"state_{dd_type}_{month}_{year}.txt\")\n", + " \n", + " response = requests.get(url, verify=False)\n", + " if response.status_code == 200:\n", + " with open(fpath, \"w\", encoding=\"utf-8\") as f:\n", + " f.write(response.text)\n", + " else:\n", + " print(f\"Error: {response.status_code}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "a672e38a-52ff-43da-8a56-4ccc0d39ce6e", + "metadata": {}, + "outputs": [], + "source": [ + "# Get annual HDD/CDDs for each state and each year from 1995 to 2025\n", + "cdd_dict = {}\n", + "for year in range(1995, 2026):\n", + " cdd_data_for_year = []\n", + " for month in month_list:\n", + " df = (\n", + " pd.read_csv(\n", + " Path('inputs', f'state_cdd_{month}_{year}.txt'),\n", + " skiprows=14,\n", + " sep='\\s{2,}| -',\n", + " header=None\n", + " )\n", + " .set_index(0)\n", + " [1]\n", + " )\n", + " cdd_data_for_year.append(df)\n", + " cdd_dict[year] = pd.concat(cdd_data_for_year, axis=1).sum(axis=1)\n", + "\n", + "hdd_dict = {}\n", + "for year in range(1995, 2026):\n", + " hdd_data_for_year = []\n", + " for month in month_list:\n", + " df = (\n", + " pd.read_csv(\n", + " Path('inputs', f'state_hdd_{month}_{year}.txt'),\n", + " skiprows=14,\n", + " sep='\\s{2,}| -',\n", + " header=None\n", + " )\n", + " .set_index(0)\n", + " [1]\n", + " )\n", + " hdd_data_for_year.append(df)\n", + " hdd_dict[year] = pd.concat(hdd_data_for_year, axis=1).sum(axis=1)\n", + "\n", + "state_cdd = pd.concat(cdd_dict, axis=1).rename_axis(index='state').iloc[:48].transpose()\n", + "state_hdd = pd.concat(hdd_dict, axis=1).rename_axis(index='state').iloc[:48].transpose()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "b97c002e-6b96-40ab-ace1-e656a109b944", + "metadata": {}, + "outputs": [], + "source": [ + "# Use 30-year linear trend from 1995 to 2024 to estimate HDD/CDDs for 2026-2050\n", + "all_state_cdds = {}\n", + "X = np.array(state_cdd.loc[:2024].index).reshape(-1, 1)\n", + "for state in state_cdd.columns:\n", + " y = np.array(state_cdd.loc[:2024][state])\n", + " reg = LinearRegression().fit(X, y)\n", + " state_cdd_projected = pd.Series(\n", + " np.arange(2026, 2051) * reg.coef_ + reg.intercept_,\n", + " index = np.arange(2026, 2051)\n", + " )\n", + " all_state_cdds[state] = pd.concat([state_cdd[state], state_cdd_projected])\n", + "\n", + "all_state_hdds = {}\n", + "X = np.array(state_hdd.loc[:2024].index).reshape(-1, 1)\n", + "for state in state_hdd.columns:\n", + " y = np.array(state_hdd.loc[:2024][state])\n", + " reg = LinearRegression().fit(X, y)\n", + " state_hdd_projected = pd.Series(\n", + " np.arange(2026, 2051) * reg.coef_ + reg.intercept_,\n", + " index = np.arange(2026, 2051)\n", + " )\n", + " all_state_hdds[state] = pd.concat([state_hdd[state], state_hdd_projected])\n", + "\n", + "state_cdd = pd.concat(all_state_cdds, axis=1)\n", + "state_cdd.columns = state_cdd.columns.str.title()\n", + "\n", + "state_hdd = pd.concat(all_state_hdds, axis=1)\n", + "state_hdd.columns = state_hdd.columns.str.title()\n", + "\n", + "state_cdd = state_cdd.loc[2010:]\n", + "state_hdd = state_hdd.loc[2010:]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "bfcb343c-a3f4-4c04-a2ab-c6d4d68f348c", + "metadata": {}, + "outputs": [], + "source": [ + "# Get historical (pre-2025) populations and projections for 2030, 2040, and 2050\n", + "# Fill in-between years via linear interpolation\n", + "def read_historical_state_populations(fpath, year_range):\n", + " hist_population = pd.read_excel(fpath, skiprows=3)\n", + " hist_population = (\n", + " hist_population.rename(columns={'Unnamed: 0': 'state'})\n", + " .set_index('state')\n", + " [year_range]\n", + " .dropna(subset=year_range[0])\n", + " .iloc[5:]\n", + " )\n", + " hist_population.index = hist_population.index.str.replace('.', '')\n", + "\n", + " return hist_population\n", + "\n", + "population = pd.read_csv(\n", + " Path('inputs', 'NationalProjections_ProjectedTotalPopulation_2030-2050.csv')\n", + ")\n", + "population = (\n", + " population.drop(columns='FIPS')\n", + " .rename(columns={'Geography Name': 'state'})\n", + " .set_index('state')\n", + " .drop('United States')\n", + " .replace(',', '', regex=True)\n", + " .astype(int)\n", + ")\n", + "population.columns = population.columns.astype(int)\n", + "\n", + "hist_populations_2010s = read_historical_state_populations(\n", + " Path('inputs', 'nst-est2020.xlsx'),\n", + " range(2010, 2020)\n", + ")\n", + "hist_populations_2020s = read_historical_state_populations(\n", + " Path('inputs', 'NST-EST2025-POP.xlsx'),\n", + " range(2020, 2026)\n", + ")\n", + "\n", + "population = (\n", + " pd.concat(\n", + " [hist_populations_2010s, hist_populations_2020s, population.drop(columns=2020)],\n", + " axis=1\n", + " )\n", + " .dropna(subset=2050)\n", + " .reindex(columns=range(2010, 2051))\n", + " .interpolate(axis=1)\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "e7fa7475-bdc0-4637-bce2-acfefa7e8c6e", + "metadata": {}, + "outputs": [], + "source": [ + "# Calculate annual HDD/CDDs for 2010-2050 for non-cendiv gasregs\n", + "# by aggregating state-level HDD/CDDs via population-weighted average\n", + "gasreg_state_map = {\n", + " 'California': ['California'],\n", + " 'Northwest': ['Oregon', 'Washington'],\n", + " 'Southwest': ['Arizona', 'New Mexico'],\n", + " 'Mountain': ['Montana', 'Idaho', 'Wyoming', 'Nevada', 'Utah', 'Colorado']\n", + "}\n", + "gasreg_cdds = {}\n", + "gasreg_hdds = {}\n", + "\n", + "for gasreg, states in gasreg_state_map.items():\n", + " state_weighted_cdds = []\n", + " state_weighted_hdds = []\n", + "\n", + " gasreg_population = population.loc[states].sum()\n", + " for state in states:\n", + " weight = population.loc[state] / gasreg_population\n", + " weighted_cdd = state_cdd[state] * weight\n", + " weighted_hdd = state_hdd[state] * weight\n", + "\n", + " state_weighted_cdds.append(weighted_cdd)\n", + " state_weighted_hdds.append(weighted_hdd)\n", + "\n", + " gasreg_cdds[gasreg] = pd.concat(state_weighted_cdds, axis=1).sum(axis=1)\n", + " gasreg_hdds[gasreg] = pd.concat(state_weighted_hdds, axis=1).sum(axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "ae1a27af-ba14-48fb-868a-20e0831bb444", + "metadata": {}, + "outputs": [], + "source": [ + "# Read cendiv-level degree days and combine with non-cendiv gasreg degree days\n", + "cendiv_number_name_map = {\n", + " '1': 'New England',\n", + " '2': 'Mid-Atlantic',\n", + " '3': 'East North Central',\n", + " '4': 'West North Central',\n", + " '5': 'South Atlantic',\n", + " '6': 'East South Central',\n", + " '7': 'West South Central',\n", + " '8': 'Mountain',\n", + " '9': 'Pacific'\n", + "}\n", + "annual_degree_days = pd.read_csv(\n", + " Path('inputs', 'kdegday.txt'),\n", + " sep='\\s+'\n", + ")\n", + "\n", + "annual_degree_days['DD_type'] = 'CDD'\n", + "annual_degree_days.iloc[::2, annual_degree_days.columns.get_loc('DD_type')] = 'HDD'\n", + "\n", + "annual_hdd = (\n", + " annual_degree_days.loc[annual_degree_days.DD_type == 'HDD']\n", + " .reset_index(drop=True)\n", + " .drop(columns='DD_type')\n", + " .set_index('Year')\n", + " .loc[2010:]\n", + ")\n", + "annual_hdd.columns = annual_hdd.columns.map(cendiv_number_name_map)\n", + "annual_hdd = annual_hdd.drop(columns=['Pacific', 'Mountain'])\n", + "for gasreg, hdd in gasreg_hdds.items():\n", + " annual_hdd[gasreg] = hdd.round().astype(int)\n", + "\n", + "annual_cdd = (\n", + " annual_degree_days.loc[annual_degree_days.DD_type == 'CDD']\n", + " .reset_index(drop=True)\n", + " .drop(columns='DD_type')\n", + " .set_index('Year')\n", + " .loc[2010:]\n", + ")\n", + "annual_cdd.columns = annual_cdd.columns.map(cendiv_number_name_map)\n", + "annual_cdd = annual_cdd.drop(columns=['Pacific', 'Mountain'])\n", + "for gasreg, cdd in gasreg_cdds.items():\n", + " annual_cdd[gasreg] = cdd.round().astype(int)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "84da335c-9e4b-40bc-8fb0-f9667402a50f", + "metadata": {}, + "outputs": [], + "source": [ + "# Reformat and export\n", + "df_hdd = annual_hdd.copy()\n", + "df_hdd.columns = [col.replace('-', '_').replace(' ', '_') for col in df_hdd.columns]\n", + "df_hdd = df_hdd.reset_index().rename(columns={'Year': 't'}).assign(ddtype='HDD')\n", + "\n", + "df_cdd = annual_cdd.copy()\n", + "df_cdd.columns = [col.replace('-', '_').replace(' ', '_') for col in df_cdd.columns]\n", + "df_cdd = df_cdd.reset_index().rename(columns={'Year': 't'}).assign(ddtype='CDD')\n", + "\n", + "df_out = (\n", + " pd.concat([df_cdd, df_hdd])\n", + " .set_index(['t', 'ddtype'])\n", + " .sort_index()\n", + " .sort_index(axis=1)\n", + ")\n", + "df_out.to_csv(Path(reeds_path, 'inputs', 'fuelprices', 'gasreg_degree_days.csv'))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb b/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb new file mode 100644 index 0000000..d38f530 --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb @@ -0,0 +1,249 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "d70f4c36-7194-4615-bf6a-672108e3cba6", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Especially on Linux, gdxpds should be imported before pandas to avoid a library conflict. Also make sure your GAMS directory is listed in LD_LIBRARY_PATH.\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import geopandas as gpd\n", + "import numpy as np\n", + "import statsmodels.api as sm\n", + "from pathlib import Path\n", + "import sys\n", + "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')\n", + "sys.path.append(reeds_path)\n", + "import reeds" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8a8f5f3b-63c4-4d27-901d-3837caa4e83a", + "metadata": {}, + "outputs": [], + "source": [ + "def get_gasreg_data(gasreg):\n", + " data = pd.concat([\n", + " gasreg_log_mult_diffs[[gasreg]].add_suffix('_price'),\n", + " gasreg_degree_days.filter(like=gasreg)\n", + " ], axis=1)\n", + " \n", + " return data\n", + "\n", + "def run_ols_regression(gasreg, data):\n", + " data['month'] = data.index.get_level_values('month')\n", + " month_dummies = (\n", + " pd.get_dummies(data['month'], prefix='month')\n", + " .drop(columns='month_5')\n", + " .astype(float)\n", + " )\n", + " \n", + " degree_day_columns = [f'{gasreg}_{dd_var}' for dd_var in ['cdd', 'hdd']]\n", + " temperature_variable = data[degree_day_columns].astype(float)\n", + " \n", + " X = pd.concat([temperature_variable, month_dummies], axis=1)\n", + " X = sm.add_constant(X)\n", + " y = data[f\"{gasreg}_price\"].values.astype(float)\n", + " \n", + " model = sm.OLS(y, X).fit(cov_type='HAC', cov_kwds={'maxlags': 12})\n", + "\n", + " return model\n", + "\n", + "def apply_regression_model(gasreg, model, data):\n", + " data['month'] = data.index.get_level_values('month')\n", + " month_dummies = (\n", + " pd.get_dummies(data['month'], prefix='month')\n", + " .drop(columns='month_5')\n", + " .astype(float)\n", + " )\n", + " \n", + " degree_day_columns = [f'{gasreg}_{dd_var}' for dd_var in ['cdd', 'hdd']]\n", + " temperature_variable = data[degree_day_columns].astype(float)\n", + "\n", + " X_test = pd.concat([temperature_variable, month_dummies], axis=1)\n", + " X_test = sm.add_constant(X_test)\n", + " y_pred = model.predict(X_test)\n", + "\n", + " return y_pred" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c472d4de-7e2e-4757-a953-365f1ec659cc", + "metadata": {}, + "outputs": [], + "source": [ + "county_geo = reeds.spatial.get_map('county', source='tiger')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "541c9d4f-8d35-4ed5-bfa7-16783de4d23d", + "metadata": {}, + "outputs": [], + "source": [ + "# Get daily HDD/CDDs and prices for each gasreg\n", + "gasreg_data = pd.read_csv(\n", + " Path('inputs', 'gasreg_regression_data.csv'),\n", + " index_col=['year', 'month', 'day']\n", + ")\n", + "gasreg_degree_days = (\n", + " gasreg_data[[col for col in gasreg_data.columns if 'dd' in col]]\n", + " .copy()\n", + ")\n", + "gasreg_prices = (\n", + " gasreg_data[[col for col in gasreg_data.columns if 'price' in col]]\n", + " .copy()\n", + ")\n", + "gasreg_prices.columns = [col.replace('_price', '') for col in gasreg_prices.columns]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "a56f84f6-6fbb-44be-a2c7-ea6f890bea8a", + "metadata": {}, + "outputs": [], + "source": [ + "# Calculate average annual prices for each gasreg\n", + "# and the daily deviations (log of the multiplicative difference)\n", + "# from the annual average price\n", + "gasreg_annual_average_prices = (\n", + " gasreg_prices.groupby(gasreg_prices.index.get_level_values('year'))\n", + " .transform('mean')\n", + ")\n", + "gasreg_log_mult_diffs = np.log(gasreg_prices) - np.log(gasreg_annual_average_prices)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "206b51f8-04ce-447b-909f-3545e9abcc6a", + "metadata": {}, + "outputs": [], + "source": [ + "# Fit the regression model using data from 2014-2023 (2024 was used for testing)\n", + "train_years = [2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]\n", + "test_years = [2024]\n", + "\n", + "gasreg_model_params = {}\n", + "for gasreg in gasreg_prices.columns.tolist():\n", + " data = get_gasreg_data(gasreg)\n", + " train_data = data.loc[data.index.get_level_values('year').isin(train_years)].copy()\n", + " model = run_ols_regression(gasreg, train_data)\n", + "\n", + " gasreg_model_params[gasreg] = (\n", + " model.params\n", + " .rename({\n", + " f\"{gasreg}_cdd\": 'cdd',\n", + " f\"{gasreg}_hdd\": 'hdd'\n", + " })\n", + " )" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "d61d11ac-641d-4bae-b642-ff176bc97238", + "metadata": {}, + "outputs": [], + "source": [ + "# Reformat for ReEDS\n", + "regression_params = (\n", + " pd.concat(gasreg_model_params, axis=1)\n", + " .rename({\n", + " 'const': 'alpha',\n", + " 'cdd': 'beta_CDD',\n", + " 'hdd': 'beta_HDD',\n", + " 'month_1': 'alpha_JAN',\n", + " 'month_2': 'alpha_FEB',\n", + " 'month_3': 'alpha_MAR',\n", + " 'month_4': 'alpha_APR',\n", + " 'month_6': 'alpha_JUN',\n", + " 'month_7': 'alpha_JUL',\n", + " 'month_8': 'alpha_AUG',\n", + " 'month_9': 'alpha_SEP',\n", + " 'month_10': 'alpha_OCT',\n", + " 'month_11': 'alpha_NOV',\n", + " 'month_12': 'alpha_DEC'\n", + " })\n", + ")\n", + "regression_params.loc['alpha_MAY'] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "0290ae67-a2ac-4126-b576-026e23c55039", + "metadata": {}, + "outputs": [], + "source": [ + "# Export\n", + "(\n", + " regression_params.loc[[\n", + " 'beta_CDD',\n", + " 'beta_HDD',\n", + " 'alpha',\n", + " 'alpha_JAN',\n", + " 'alpha_FEB',\n", + " 'alpha_MAR',\n", + " 'alpha_APR',\n", + " 'alpha_MAY',\n", + " 'alpha_JUN',\n", + " 'alpha_JUL',\n", + " 'alpha_AUG',\n", + " 'alpha_SEP',\n", + " 'alpha_OCT',\n", + " 'alpha_NOV',\n", + " 'alpha_DEC'\n", + " ]]\n", + " .rename_axis('param')\n", + " .round(3)\n", + " .sort_index(axis=1)\n", + " .to_csv(\n", + " Path(\n", + " reeds_path,\n", + " 'inputs',\n", + " 'fuelprices',\n", + " 'gasreg_degree_day_price_mult_regression_params.csv'\n", + " )\n", + " )\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/aeo_updates/temperature_gas_price_regression/inputs/NST-EST2025-POP.xlsx b/aeo_updates/temperature_gas_price_regression/inputs/NST-EST2025-POP.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..4088a5e18750a591dca6f962cf3374f22c60c282 GIT binary patch literal 16635 zcmeHubyOT%)^FqP*0{U7dvJ#!!5tb8?iSoVXn^4EZo%Clc!1!+-QjWXoq2aAGjFZ; z|Myj|Rn@hs_OGh;*>cVnWjP2)OaL?h761T{0z|n3C+)xh07xhR00RIEt|M-5=WJ%@ zZ1CR0!OTgI$=%k5Fx8st;l!TQ*D&ACxEz5sIQK9M1)x zrL!dh^UF1&>*69gbAU*vr_i$vF!IgI#!OaZuVj?iob~YRd)*g`2V!Mm!s3)2bi1YC z_lt*u!#y9s3O8kxb& z(W|k<Z z_yecoqSSMg=4;(rthQqjF4LSYk2r=3D#95@w9SqbZ{c3tfo9&<_6+%#I02LUBwtwL z&OJJUV4XrxL2G~?t;c9r1Wpy;`*7!18r(Q%IFCulF>^dTv6;(&&u&II@s)hnh>!t@ zN8*l_i#JgO_hl={Ygu1Ki8oTtk?~*N^z8K&0-*eFYTBUALVoood-88r5#H3)z|qXc ziJ9q-{r{@x|6rZ`mrpNGP*Cb+K@2&SehMABonMPX6_axlm2M+_@9QtKiqa6BM}fcA zMNNSE9`6%`lwXJM)5yx2K=iL6(wmTtpzz^`@m(d@yqMZ? zMM!lMch0ZG$qc`Rl)?if;V@qLqnR|UAtz&trAqH18`A50JasioUQo617e_ua4+B%1 zZj&PTI6`nchG%ZAQ|10#uxf4q6D|5Ot8 zbERoT2mqi51^_^Ll~KT zP;vTdMb%xW+WHk+{&^!qn_W9KfmH`i7%_0MisrL>WZeF(Vex##o=xdRq4A8JCAgBFp$QQus(+z!wUC(j&5f zLz?&fP8CtwOBnt)P5H4G)B#FEW#~3B)@MTbLkmaYZJeuhGv`XR5w}|B2tYVr+-U!L z?FtIz_Uw0ur!B$m-km=K*K7(RE%gj$M=FxONh_OJKsA*EH^EY^#`TG=SZ5TTOE$sV zH*w)$7Ku-H+NWUWCL6Ut!{f(_dq6B3349|pRCgR~KB}l57FSr3)bMI~Ijg1M1njGp z(Ob=iMPq{`_@vku^H(lic1xZq!a0CsI`!2LhGIsQyna|enOZX$PWsvSVy%gEkdT#nh7%tRVLndy=DUWWZ@h86TN`y|l%g|v$Xn;;b z-Xb-(*`hp`*VzL(3a>GbzOWq6}^}L)?s$yGhW1<|_eeEpUeWyceRG^aP=J zoPxBvj62*oUirBM=EAY|0^5&qBhKN`Q^#(4k z%75cLlzW5tWnaNlW#(};ve)T#qwO@%Ca7EyJ6+C;I{;#^!B4TjHV@|s#dq;1iXW`- z4)*rz1gwnx#hx46r{?L5oKRY^Tz{XFM#@xOpHGd2Yv=qgZ<_U=suv)X^!f5l`nFla#8=Pfd6z?U~jX@HwFHmy_Ksf$o0L=rVw62S==&QvCx*BnaPgS4^d!; z>uFc0NZEa_*750D^|ZdrF+p^h z7(t~X4|gTDP`j>i_1HA{K{VW@y~?A=t9T!dp~JxMshZESu8z^4TzcPDLT4`|ft6lc zc~#QWpU48w7Srtx)HsF=?M{eY5>xOolfBl!Hq{$V1{LX{w6O-DFKmw#6v_h9o=`6m z^U;xUW0KGG9;%-WO=*7YG&asD*)PiX9zhUB!+wr) zsD8Z)-^#$*7vT{BgQNV>hF{?(bcP#hoXrI3p8w1#D$d3wx=<$fnz_LWByjmYb>_3z z`KuRW$o7y$EyT=gJ?Z)YtX!nmxRPePT{V~gouORP6*UUdU~C@WhqlJAAT%?#bAfIL zfdFcIF+_B)!}9#d=0;`{$OQ1fMPM zl!n@p1Q5+72V!6^E^oV@E=Etc7S_97p6;6rUiW(K4TM@_i926!7rJ~Fx?bjdp3Xk6 zcX?k4-(Q{gHg);EJ}-1tc0Dcl*_rgbEc92czg!W&a=%`LWP*;^UET zt6%ntfPv7!sE_&To@joo{q1l-JOl=eIWhx*7Bj@W&o4OL>>}T?$sMDKu9usIs=?mX zY^SG^4txJ&a04N$i6)q}9sta=epn?H5lrsR4VRPw#+K-ny<{d2i<9BzH&5JR`TS5R zjAtFj`f=vEt}6fTD1jKXg(Loc?#}M#%hSr2$G)z|hg0@fqF-IiPhRD(ofoI487*uD zDUwfIoPYLIgK6{7r?r$DbJg>cI2+edim4IyH) z*V+@Sul}a2>!{jb!AwD&UfiN)OD{2I+*&EgejbnV-3-boVMZB8Xhlil^&D>BAeZ1`jpnqL&!P+6*nFK`OH~^ts~|6v7t1$HEU1! z1j034W9NfxGj9jTp{M=0@`1c#h?rHGylz00y(n>!uJxAYeq@4zejgGJ&)Oo-8f#DZ zsWSYskIS=8nN{heEr_wk;foMAq3&fm4S@ZvM-+(xSp*0=ih*v`edbp@KQK zPH*5)lOBX754xjF5lqUJDM>c?!m|wt6eTV@V^H9YlC=iI2@^#{+AYin{M(eq<%t(t zPK^Oh+*AxYvK)nOc4!(5EJ+JQ?mgH-Csp{}`qHX`eSL0(_y`ZrJ;AN$VEH15XuKSA z$1U%XQwv$!d7ajgtY2Si=`IDK_y|SqmQyTFAmptc2{x4ns4r9flcNroq3J(TVdxFL z*DzfMlBXuiFZ4$;lvH@iY1>B5m8(<5!#is=d~U6ktO$}_Z;OF>(wh8AAmZpegMn*i zqP?YCCf7ohZ`cc9kvT-2bl+)6usihOT;S>`s8}swEKQCO{6rX z6}iTwv7ag&-Gr5zmMlxnk22U=pzyZYj0Z??695Bq&$FRVf&buv`%)&o|YEx zvvS;Ii$Gzk<3~Bedo`dQVL;J0x+&0VYJ!ExB})`~jXZQ*cuQ9hdmCT+5Tu!Pv=KdL zkpmf?eOIc-+vJ5MY9YqE#?=0R;q{$`$|E8aU&S&M6vteJsWGttxh9KG9s?`8rfEJ5 zx*kJXW4OEwGv`)v(~10YMARweuz}Wf%EX0|Gd3d^X7M&8f7M*_N66&6c>iBmgZORe zR+x!D0h#VC!r?;8_vh zu4Q*?SPX#+ENH@bg_`PcDqz6%MH+W1av6IoM$`8&bs7~Mddi)Y&dej4I@9-qb%Ffj z4OYK?sh14i(p9G+x~A<%HF`>zVs7S{d8z^H)4^)h?KM8$5UlRr{;U<@3MOE@c1=1er=?tr0SqL#f(KyNmsM^A~%pX`xNJhTsd;EWM1Zq#WdogQ>9? zL&C)aWTn&RzxOEnkEO(z;6=*Y>=+!tmOdn4cYrf&=?~wzmq-v}*yf z)M(htl%KsbJ}1G2e~(;2!8oiNX{2h>2T0TKu-ww8U&@Kzxy~n*QzLbsDA3{tB z9}!9wFY8QMhMXyL7HOueaZM-kM=ulU?{G~xmu~<{b_gO?f1^<;?eA{T9ws7;8Oh#) zo5-Z*SQf0O+f^we6^}^1d`C%Va6hkuPA?Fzwfa#!K(Xv*>AJjC7%|U1;GVvBpD7iY zB=34G=uW=yaO_0iO436#*eSKF(E1vZx?QWZt9ls28)mNnNm@{J=yDA< zR2xJg2ijDel5ANVDIdy`v>Nv;2Luwd3P;UZqlnmo>2Vb>3^4V#{-CO++nH5PiIfT&O$O2pnsz=u;}o9&~ryX7G#-g~35} z$;uGJMr#0dYa_(zQ@+!+q?`$r<5skt_~Y?!Bb+84FwsD_G%F>Bf>96Q zQX6Lro(flTtcHtQIWH^DyFh!dgj?rGRp38c&{52F!dQTn&4F|=_GWk_t2&G|Q&xyf z-;=T^d@@a<+p*SD8!rawfF#YKhD_Dniw%Y?O{#fqpz@wR`C)Yo=*U_ZdAQbqszpN8 zlc%k*gxJZ7m#^m3?bPpvJd%`lkh6#Oufca+%-NMp+MmTFK~}Q|iiOF**ptK+&b=sMMibJEDll&dY>kNJpNkmc*wYGbg5%sBx{lgUl?MUI{SoMvsuO*S(k` zOS+00FS0h8wp#^war*^snsmet949l?9qIZpiyG?gh2p52jUj`34 zpgXWuQn=z0u!oC`$r(fTvSJg6w`z>Z;rKozUpmQ2WNvNxkQgAv~U$&zNO#9&@= z!C>c7Wq>SSTC@$DDLJn6J=HPy{L~FzYHiLK61wW=>{6!H*J}jbU#<&-VD8#RR7KD} zJGwv2OQXHyj0>pIBS{aGbJ%Ux0^hmb2oKSSSppEb@IfmX9Y975ihL>cnp;=dG z`_8NL&*4z`p>ZtPy-(X6$g!ZqDDS-l)QYw*2>b=Y;8`h4*$J;N?0 z96KLl2m~=(I{XRU18kNz9L}{VQRT1UaB6Y|9Gm9fx4$s21#DE#3DvhHnjiDbSYbCv<=d)hcD9k zYE=YM*LZVQA+IYq{9_rw5YVyIyP^GJPDiY$udZssnZrX1sgrDRGJHDY2L|DFb7i)> z>JYA-l%=kC8fHWwnkkUFS;7ZMA5_rzqY611r$O(ug2?+Xh0K}Z`~I73lwTL4iIT(M z)0ksQyyX;*>&KQle7bCC#Lu7G99%8y#S;nBkEe`7zgrda5wg{f-88UOly61)eU9yW zzP!D^{ct5*br3yD+XbT`9?-fKsb89&CUR;7wD3fdWE)Yc-Ekz#b0bYXP8+t#J}|EO zVl-Db34n>Bqbju%L;s>Z^`Cvqb%E+`haN#3Jvqhb++fbh-RGz?f-Ew$IkD7tbS1Kbo=$#pbV1A#KvD z>AcpVBPB+={;u=r>!p<<9#Glj_R@8m`!A45$H$~r>%wU1zBBvdlOen0$m@It>!$=G zZ!+ehko|hvS~xys`nvTOXzuqP_Z35Y#G+O{UUT$Ntv`O;zg9L`git*aTkzK}<~AS- zwsh!_+6jG~sKB~9at+<8=yfl`c^Ss0YGNPf8jcL^Kz$Sl51hZ7tYqquB6S`I^#SXqQ@CA2BNAtO~tM0)Hd(OB=z z^NCb5X5s_3tM5(N{HjAoN;Ft!yHG|#a@i;0?VA>`W&n2`>YjcpOxL1YYDyYDWOf_v z6a&xN*;C$l?IfV_lp&z)>meR`WaY038`|zbH^gD(o1I45M zI;HvguxX16Heqd#cb%KfU#A`E_~mmT#`#@8K8?Mj;@CzsBgkeicc1x0KQtTh)s zy^cIJ=yDIy?{fFN+P|O9%Z?!u7V^BxE7-AF9RR&wz5BH?`SSE&ay3|IuP=Dt6Z=`> zsY=-UVstY5F(6I>Aza`0{;FwD$-wve;B;N^{2MnE5$2{(I%>FGqImrv#?&})AUPAU z@80#wL_Uj<2YQ)kMh}bs+ltzlcQe<=Xg4Jh(sM9-c_N$!xLezrE6VQXN*oCP2 z^45H03ENJllpThp;MaM zF>OlBkZz#uuzFb3XHznP&UVq}j94|Up1$|EG^dIMik1(Bwc|8%$D_4^{DWMZsF#$J zH#NpS=qCnRUz^S-)+pn!My2M=f;-Eny8SxEvXe$}3_jx&086jFo^t8AI~G!Tzr$V8 zRFkxmnGKcWi3$SB^X_F@|EK zIf!?LApftwp}>xTHFCq3?tM?lbIGtxkIUwGp)doz z1HJKaXMVLB3>)b@c1jHr(j^TFSV}tS`jA1zrw`1sVE702r2Qj!kiF|vP>a(pjJVO# z#Ss%s<*EFr5JPgb*)(J~TbrbK)!~c18@`04Ig@d+&Ce`YqObne{I<52LyQw1Gg!={ zh!d42Dg8XmO?(m-X*Qcwv3qQ(1{&JrMEkqRYcy`Y>hdE7adiDGFWDtuCo!61v~aCZ zf*dj!SZ3~*;hU9NL+O(GIga3(-?2A9e1)p?-DHKtS_Ngi1`_PQa_uo7C4Og7FBQZi z72On2tsybR8A%B5R0~tTs2fc%Xf%<4>-cJ+<(euy>&2_azlmir7d!N{j2wXkC zbMo86b~NBRsiAxtMGDGxk^XqddsX(V&6GFqXBRPpKOB9g|D)**tK;#rcwmrqZ! z)w(#j=~XP;(85u~6TEvDIXQdSm^uBCJUY@|k6r#N=O0RQ$^nN8AEunVCQ&-4k?g9}s+q`RSYbjw zXp>v?xX$m2j_wL4Tnm=c;YG$eahGv_ly<)ONoh0;Pf4pUh<(yoXt6LLZ4#oV@XP%| zZ}T)~v=$jQ$q4Sv7*@=%6^FLP#$blolT3yG=|+A@=hltNoooI=Kv05PHi@tvva~qd{R5 z0!J>u<)A*^o*^s75>GB3>8p-G6b72XS!(D7#887f5S_RyXr;~*`@%_vq$QnVu;FMo zmDnlesmoR*EVzGz@8Ws-86(o={q81sknCKZD< zPFb)BXXr2^ME(>Dzg9ZX$g%NRu_;!gwdMG)Ms0zOE7w|(Z9L12^u2Ry9AM~>(-rk8 z>{?}JoL}^;jwOl%23Qtg3l7uPH4+K%LLeN_&=I&oaL9dpwZ@Gi*w4)24qDg0{7?(f zP@ENf`jo1MPJ=m%-%-s)y}9jST~r}~GgT_#3|l)Bu*^t#ks5#HZ#V*n0|ps17R@6# zMGnG8ra`6*!!qSl>q?lMC()HXOYapGnMz`Rmy9sfN%M;S6FvxaGKn1)EDc5*pNi0YP&( zB9jKIIX(Bnif9%381!s6R=wMqyA;8GC*rP21Zm@aXudx zpr#e!hCWCGg9^&)`D9)&@=zotckSV=iF}WX`TcF!wfhq%!cQ2 zBGPar;zW5K4;5TT6>YLMlE#ACldT=RQ3t_q^qpK&-in&Ske?Sn%b3A#j4hl(@4VzK zs~xW8G$4-F@EOJ&b7`3Cks>AXVa$D!s29n=?y4-H`AZ`QPj74uQYSBmm63r zs63m{$6W6}Oiw#ChUGs<7S4~QtTWM6tXTGr5N6kw%cBvkwq#QJ6wP`{ssDx16jvB3 zU3jD53z~YG^=J7GpHlr`#{z*?oXr~NrTHF;{UqM_XwLnoqNI*7ctQNS9Q_l$$wtXn zO=j9#&4}n=7Z2Q*g1#I)LdmJ@vtg z&sni;;_t@KPlJxymA3_}XFZtz_!F^6YxI!!tE8`~{!-Nia9d(nhdJ+$1F6#Gn&ZOjcfI0eE-IEwJzgkyel|ku&UXuoLTl$ncMPn zYR|E0JY7a$*W`*o-C4r7g(d_rS2VAxr5fS3m^EONP0{p8j$Pggs3p4Qki(w;csh&U z6=88L;x^HC^kYKC1bq9-XNsPr>Zr1)Tx0q;$SVG%YBs9!C+vqa?mt&zzgzK8d;h4? zH!D6!3;o8Y-Ja@EU48y~C_6P(xF|+lc zy}r6EY@d8eZ8EZWJeehz*9RZk;qXIK6bLTY0JKFim%+zw443Tgj4BC5>&j^5i?2@T zH++3&<>;idkrU59`R*FT2iVf8b!B{~mmFt3*uAf3zX9c%HPa&%&22r1B&a6byXA{z znOJL8TMe;=UGUOWol;VxoOHIQK~)Q}@KmOu#_BR&(+A>ml>OOQ#KQVO!indno_C`uyhYK~xS$5oed!Gf zbac6iGO?Mkjij~M4x=%yEA}P%GP?177ilS8yAWYomG3gr?-137-jC*(E~jtxUPtAZ zYbn}CW1W$3=WE0bf(D|co9j8$&63$8DqK&MO54ps07+R%H@aUJ+`Rn43`<Uw5?B#hm2Y_APl8?+ow0Z z0FPW=B)@B#%3<1!P0x)zkACEkR7Xj#ZB25?y8fb*wcA}M%h*YKptA>|JF)C@G~8s8 zf^dXE`?MTkTgV|dXA<);lvk6GFsRX|u7fUkfA>}<*X!I?;X~__TkLUt!%4<~-USLy zFH@T=c_OO8>M66fM^Cw5^1s1{a)x`{ett-Tef8f-*Ylz#1wVZ%oTR5LroTQ6n3v#Kv%3b!c@&t^)3aZ0*4 zJcI5Pui21%sGUuR79n*(@)dg*+Z%vq;HTj5>0TV)(eu3ux{ckv`}bR4oYZQ89nNP2 z_2Uce?79H?s1}ao+);SMoUe#_UgHaa_WrguREU&gY;+B>bO2ZqC~iF`W6DY}G#UZFWPV-|r^c+j3V_ArYtr-AfMvQ<^4Ngon5~>p{@H#6ORLJ8}_0f#r zqwfyRI~p9_o5DN6z0*U-^)`s`?z|nrb6|c(O7tgA9i1Vo~_HdZCw{eK0x*5p(dNuUj4*H#~2`u9+-vv z!~+z^5NS#N)~^EZ79co|8lH6+OO>~Dm#P6iH4+VnyNC6~?&E+dd|>@dDc}~&CQq2I z2reNY5fHe#U{_&Q8ilm1+zHV^$BN}WVpKISLd9}`arsfjbz>^X8EHaQ$f$(c1m5mE zQ-WS#jV}(Cxpy6wg9vK-TP_&ystuQs?w)dLsY?(|038;U$kl?kH5qKkH`v@sij5CM z6m*rDndt!%UUWT({;c`DL8mn(P*(XR&yM|?G`bV!PmQn6V4(SJqqBVoyJ|XEl#MGA z4|M&iybz}-N9Pi^18uKw-`12*dR7O9p`v(N@fUfJSA#i5oR%-I&~xQdv6+$>&&5?U zJB}P->RG0T?ZNOMl;>hGs|w8dBObWlTf>pv*iY39cHW7p;7*ib!u^6h)#5l8@C!kE zr53n~3z?Zd_C{;ZV%DVzJXpKJ9q#{#0CkXg((7^OlYDd{zDhrRlqcS6L9oB*(0-x? zdp{+Kw)~*PPVRrVY4BfdJHIWPT=&}*vA04W^1p2RA7z36sPy`)PVnz~uRp5m+~?-4w+L z82KD5Hpw_-AB#}yFqr5UqgcpdL(+6Kbi+=6K3Fyue-_A0!^PgHQLfaW$Yy|e6gRtg z2>Z}A>bJ0d7{)<89j$t}YWpBqSEx*+_|kxBr{Kp*jTkqdA{{t%nF z)-ZM!-~*I||I;LdDF%Y72BB6r*cf|L8l=BA5O)!aAhyV#^AVcAEdcl^A_0xMFA{BP z9<(hi2LT;IQcWZovTnJgU?9xF%q!fKL(|aA!zr;qSwo>>kZt6ZrDqL4YmaSl+CbWg zn@9*{bt=5|qo-zHHqO2>&bo4T8-Mi10I?IZzEFYGsbUq2vGE&#aJrz9Sf6Lv(z*K8 z;CkQivYoz+2ivDb+2>>O&=0x*=21-D-PKj1DxbNuE;}(>Uv1BaXZF*%pPcU51=e~~ zv7e{h2c9`V6%VYHL0+5Z{OopwoR3p45%cyJ&Y+aylp83V?C~R+axGV{OS41M!t0Jv zAtEn_gRu(6TMfcuepJW$E&qpmCxdJLb;pkT4vCg?dw-bIrdwSYTP~k)t@WxnUA9~Q zt==A}yMU;_ ze{_#rZ(U5L_V{jk;Yl1r&uCzZZlQj)=GWI}t@)_WzU8h?{u+2Y((q9CA?Zk4$&Ryn zOiAG7N$>mTu(LLs;1Yg=2E{t>R-5|>@$RqvZdTm)f|iFn75dJ{6Lot0^{(!nvp-Jx zn6<9T*H@<0nFV=Y&rJ25+1MFaX4!^nzw8&DizVF#uFG~K=CSX6ght;Jib;4Q^GcP!1 zLFnP}D*+;9(oOiD<8aYyOIO*Yk)*=dt!Gj5 z)a%c|r#kDx6FBcRP(4En|HO0Rn%ZNb$4iD{`;SzsOOMwl_Uvu4j4!)-jOkCN51PL7 zc|uDDT`x=dRn1oVw;2%2{Jg(#Q(qv!s`2iQk4~*e`bZ$lW$A$l0j9{Gh*GoQ%gG>t z3I13%Le=P#CM*^#=GA}*8nF2SfW#=!8CNzy-3vZW5kh0D2(GWWHFQ@`{ zG-xPjacK6OaA*;mAw#%6Ns+{>Z_yAKIUZDqKSh$&5q$Zj!9l7B)IaOai$|tWfk*-W zpF1#c(l;aYUn2k8U`w@sbOV;Xm2soJm2sQenjEX-y%nva|jczJ@29MNftMBjjvtL?-yx#cu*m*nb#T-2t zN+y+^qfodF3nNHO9;X{FZztv6q3tdn6=kOSw)6mQk^==4?d*;9RVz6d8t6n<5D^_I zKs3x!?iRK(aID@iQ0#(5aVO0xt%l!yelgPGz8dO~6!|Hm6yu8EZ@}ft2*WM zn)6FSr5c-@g(YkD+TeCmt{H<16=N91RqxOx1T&(B=(|TSq~6(q;1%o28 zzP|}6(wjp?{Z}D1a&Y)x8T~`C|JpLu6zo@65Iay7{mz^ZXyX%I`%#DJ0_!DUY${mW z)@r6q`LM0zLi&KizR#v@AJ-;xJ5;>qwze?(6&uxYISjMd_{i!&(%@4wrm|J!j#*!n zI^)0PPNmUAhlCw{i^q7m$B3*b>HZ3i;|_mJrb_Z1K{ksa2i@+M(Q*9hqHK=vGAE}; zB}FD)ONj`1R_G>cFk|2ZNyZ!m=>aYdl5Y|Rd+q$5-HhHblv88*p{h)Puk4GOjCJNP zE6<874KCrQu`)RkyYe1F6kI~$4`dQ>^h#q+Dtv}lq}@y+^@aUn9|k{siiD=X!{@nP zSaE$9DBL4TPfZqGEo*sIyIlJ+)o*q@b+JD1qXis5nAe%3D~FbO`T#W^Od; zLQ6LkXdqU#DaeRyU^i`bWO3a=+!ja2(5<&qQ++3_#s})4yroNYc1+2?ba-(=H|RHE zhSs!WPUJX}>S_Y{BMWeJ`khfW%5ELc1iHr`HXuBsPJa37r6+uzh^tvx8vNtjG!1gS zK|B~Al2}Ia7WFarDyywh&4~{6rtFGmI6+Kn=;;QjjEiD1c%4kAk)rIYPoIs!C4nW* zYvJpfx2pgWig?#-9zh<;YwBA|=syfL7&zlwh~&RFaQ}1c|9Si`?cB<8{|@l)t)>4Y z{Nq^k_Q-!}H2t0M_jbF#Nypxj$GDaby+ntVWtHX}X?%3+s&M)7Ydw(<2Gw=KU0r#GI zs?Jl-skL_Pbr$zopRFhZ4uJsz1p)&C0zv{J!WB4W3km`P0SN+v4gv$FBW7poY+~!I zuj*lM;-tsuZevZH4*^E~4Fv4t_y2qR50*fs>WFP0GfJ1nu@K<9dPH7Wc{vPzJH8J2 zA#}QXq9%Fs9uD=350$BsS{+O;g_8A@4&^mJcGWVamZ(F^VqQ{c^C! zpT7l0`n14gXk4%jx!r@58E~c7H99+$SlQIcYqFdO)EJZRV`wny6x$k~h@_53XEDC% z)tTe)iV+E0RDzb;uo5A#g~FoLv0z*goB2aAk*&3lwz9(YFS~nx`7MFnp0iWk?4tj| z7dR6it@ce}q28^{ayJhCI>YJugnhWEDuQ8D+vG(49`?;0+r<0Uj=u03D`4u7_$y2N zrAJpVj8iCz#Tv+Z`zh)TzEc(0A?)RiIv3Uj)^jpa>^wJjT=p_ZnwtSuLN)I#0z?49 ziI}7L&%0>+$BGrCwVZqrqRrGxB)qo|J9~cz2T}YNGi_31CcF92J=u?|@E>NX?`UG} z#Kid5=l`1L|6rT^r>R#a$|>|SBZQtyzJv|mFRaC*h|0K$NOq8@`ua<)A~(epkmId& zQ{khi;s$|B_;vZdjIONl#~crn+-|P*rWiGFVbP25Loo$10<;I^wAKwDszDb-RZgoy zYg@R!9Vbm?`7NauA0Y~b^T?jeW_%iUGBo>D?LBNwa{Gv@ree-xQET|sk(bm%-`Kk6 z8j#hE{_4#jpFONh%8vHHIwdhg@$J@6yOI5JEXQMj3%0*v_+lh5il}t`BVzr#k<<%R zXad1OKvJPWK#)Hq<8IC5X6I;SXlG~jR~#!;o3Sn6#_-X%c<;3WW~SwRNsLFJ#VL|2 zk7>+_!EE*sDc7}+RIAlmVJ{QEKKDW-k;_^rXA45ZbJ}`X{q1yeJ=IYTP>{7?1O|^} zgrTBmjJLUmUu=w|u>Fw4qjl7l?j?O0XMf{=zD>KXQjNP;79<5h;q41yaXD<~rPBo7 zW>jYQ4~v&a;$oLWYb-_1=wd}@lso%O!LLR-2Ji(dc0r5Ta`GF&XK;K%F9uhtEQC7z z9k|pkQBi;2qoyjr*_1R=4i)b8+3|Wc&`{N6>sUk*crGL9B{67TvWeA`>puPPDvQFK zQNEp#sBJrrBiuo7l=KpDfOb_5(J_bHiEOb;dpB^3OQ>1439SVQUAYMv?Jg7}F05Up zE=s+QoF9X{>dnu$agn&@JPT~B?w%g4R*g`SYSP+Yt>y1S#~x+y@?aj6S-m@0Vnk6T`@YS}D7P@-vA@%>VUt}Py*w0wR{B6qT zyHLds%;);}Z{9ap&m~)t0b9auis0rJn6qA8#l^xgv}E1{#SS8$#^y}2E2|GiSmo`! zr|xHiXW)KtjB&TZ=z%N!u*hI+U98*|#)n9*P8rV{KXk5(-06q0;n|$B`XK`lB!v%4 zUADL9nzJy}OC;n8{JMP3$1lRBqliVjY_hi2UByUV)A#w_ssLrR2Gg%+dFTc<8N_q! z9`6TSY9_)tpjg!LenCf;Y1p3MxpQw}7RTqx$IO%EyECOR_hoUvLT@%gw+JgO44V|5 z$_dakkBlD-G$*+Fs5%aX$=dx*bf==F8-JzS;^`+>R_&U+9rwyH7SA%t@|t79m`yOj zcCYKpi)X7%Pzyg-$U=h<)Qanruh~l;$lw5xLS_)4fevtcHfqRP@{toQRWNR*p4ahd{TP?lb z%y7_tNMPry0-n!8LTf4cygGD@<7@b_*j5kGsSXOG{X?a`QM|8=^TAnYlU?uqh|t$@ z&}Ym;hZ7J(Qo^AA`lcIV8lhdw0EUo<`Ea8H{fPPrq-y_pM z+ueUhDbSB3^22WbXCIZyaxw!SNfi8B7_(cJ>nGG-&P=2yYQK?TMjB~WC`s6SZ#M8~ z+x0XTWthP2LOsqWhFtGCkha0mZ+q!VBher{(XG$(_Vf?huZm;v*`0EP4~(b{n*X9>F&tT!p6s){&y$6rLS@} zNA#gC86Y6oAHVo7C+%czV&d$?^tThsU*0-9N5=`D$5DKPVC%hS^EuL`o0;53cH{i? zVtM_5u$+P=)OgI;it+b_-+frQW&IU7kNSD20AG|KAWuqE`^)muyd z4wHiZ{qs(UrMvr+{o}3si>r^zt@E{uU$>X1+e5S8G*d2e+c(lT<@?;yik(8q@|m4) zVf*vi4%0^W>)yWoyPVpKx0jpOOF`Mq)%M%I=iA=aMeFmU{Qav}_NgtSuiyMT#nbzZ zb4Ky1-qG9L{^f=9gSU4{X3a9^^GZ$4amCt%lib^zUuh7D!at~-rrgUj{GE)I)z@YU3< z#_Xcyi|ys!!q9!L?d?rJfj36>gYMJwJFcNF zTonD!5G${b_74>PPM?5Vj)*Abt84gnerw40Zf@mTYZo^gr@+MDHfYrjx84bF-MNh1 z76_kD-x}XLpMBl%3D4eqpN}4H`%PXMV~-ohnG}RxpSN0mz1@v172u|Hjm=B+4p$4k zvMdX&4Yx1Ux>>YtPi)CA{LaO?Z`oo&N?sil9C{abL2t z^}WM$&TdNWuz8u*d0}IjcRu*~INYVK8SQnf3{BvO$WmB0`>j>7B2B#WX2yvjZ)gR{ z{K==0?@aK!AODMM-aU}(@x}&AJokZ@oyytdit$F&>wIeMS$v~hMT|oz#PcT2vXj<5 zk>llw#n127s?{+J;cLPLe;*N|-pFuDwBE=-imcwqc*?lmNM8!Q-pFW5rQXP3iuE&v z#_{37I?{RI@6(sHUtI*pN_M}?gzjB&@;dk^?Z&&0Y&BRNDU38&9Vk>ZSe+=GH0tds zWHjm>DXcW=9Vl>BGS|(|=AGT#Q=ZlcDs|_atbUy`&vk+_?F@N{6CE!ZO-DVvV8ii; zAeCiukwzuvH}}+nA0G^{TguG7RRjy+x=G%>NT6%5x=^rbu)0yeYt%ba&}r14Nq@Gs znM+Bp9yzJ9<14l<4t}#D?bvskWAnYOqj=-I8rg)k3Wh_Urg6vy^Ia z3T^#jORX$!ibKZEdRpqp4tWIn&DJPu2rkBw`P4FN3a;+KVSkLtapNMH*t>PFu^J{7 z(=E2uY|rh^BE}|iTKVg*_{$q82Bk({rLTh~iM^YlfO+nlM;OUZDUk7Xz{pZ*qnn2T zQj-)6$V|Q_NdhX92s1u5NmL4l%-LxFT`8@dVl3gvMtXx<8Dh0eb@w|uQmsi1YeaJC zV+_5PUO6hQzN~fa!qMY$u3WrlnyI>65S{0MJtXb?rri9}B;^DmQ+iUDjC?u?;Zgp* z-`t#%ICSLYGpP|kcGWiDOl@+eD1H&UDSA@TQ6n5H&ygdnM#{7a@A`x!QW26@U9wD~TG%Xk{C>UE%Q zzrNFNj}w=y!1jwmOwaI31H>zHvuxh?@rOZqdKF3_=92r1%7>)&EaL-^jWgP(v(pVa zv+yV*3M%D23w)i<;m61=PLuddY@fd3g88!8%}g+iQZOKq)-a&zsxQyv)VNFZ|49sF6%rJvFmx zdP|HLckO62I((PMrY};``8g611riL^)>DQ&Rp!z!kn|ryGX43sDkYwJZw$<;tzv*jwg;@*hS<=Or@Ln2Zs_L$($l87kZguP#khKdLo0TpUdzg&=a1Q z@dR#xqYpcj^OlK&!G|)?Yl=w9UeN6Uy7&H?(c#-h(YR#95vs`ZtWb#~8-@4a(u#_WXKfY`gaZ=t!AFE3xbL871nk?;6xM?jISuQ=@ z1#gXjiappyd_+ZL;9=@14f#|TM-?Q=)zDC(dNVuJ-lDorF*-KKa;v>3wz^wxSQS6a z7YrV8VGLx&IXoSJT?t+mmGE&R^_L`-D9H)hBeHS&#C>HGW~C_xG=R_~Cwx?RDfbUX z2IYao7=tG|Viz2zpV~Tw;}y|R9iXHdNi6$|q^!iiB|CRX^o{rqJby{V{H`ms-v8cf8q}0E``uv5jq!x(rZ5PC61= z;uw{fsqu93alRH2+6^Uheov>0rI^vC55s4Q2cvV*>6@Q7vYzPvY0g;^jfFfOc@GxY+*Q?Pp*XlC(H%>F5oRrkS z7gO-!((>TyJxtjQ%V{4nQkluw0=#8Up@^|mc#f}uPwk4>r>X4imfBh9q&Xq*m6$Xs z7t?qWSv20(sIWb@3r2D7}?4nF6(z-(Ki#(N%LsY zi<+eJX>`mUx^z_#A39#P=$XLGn4q*fKH>#0zHP6+-$0XLb~GEYRD{ETz*~%$)rY^i zc&smy{#yhC9&)On&7AYJ)^RvyIKzNUUrDB#LE6 zo$wjICC+ys;_7mpV4w!rgabT6+&sp7JysIrCzZ?aa0^h?j$@BxshKboz;JjA4_o4IS28OfabtFLkM#BId_2}%#lwh^{KEZJZR1o#loY*3}KW0^CW5`>ocpQ(vJ?` zr@$o38<~EdpoRA-gdWlnHw8ME##==tXFg=hBLeDiHu@P*5$o*=dpLFSe7P;H%w?@q z%lL|uu*obgy&uHFsAql&CZWc^G+9*DxLEDZ`R^8UM42=6Gko6`)edv^5W`dw*X&&w z=ZOcfV0=9Rlgy;Wi~O2kQ5~qtK<%UruFPlQ8v`FQfa|4KQp5!xhLXr60WP*G&exwlN>8G)0xC8}+mFFm2np3ymPD0fJo zqTS)04XadimcAIwT2$46(U~Vv`WWYL&J-~A0~+nc&P>$jhi-*RQKE>AoxIIQsNaj4 zrDAQOo+;c<$|=AU@IB^+C%&rk$fH1+SW8yY5Kac`gZ##UBBgRe%>`gDGqhaiB|l;i z*Fxu&X^`(UoiODYa1-)$Wr0a*N?8}JD1*5#rZa{e&N{>`BS)XlLY>bq z2$@I?4RJk&5bg-To)`}>rwNRm1e5$kXAn^kf0Rb~zR)(0Ns}DozhCV@5;DXH85~{@ zSfw^*DlD1Tp{}QNP7Ta)hs>&*{AMIin*hd+^eh&4bJfv-vT^uhSy$a2=z3x~@*paY zkLIA|aE#LO!xRdz%@EeXV^wym$er+uPnv_9+YL7yGd~Ab3-HSTA%4kRrdV@MDyH-Y zlen#tO!aLx*7;<*qGzh<+Vo=1J_h??I^$6R{hpi?hNGlZjuix;o^vCq4p`W39u(|j zjZUmqWQ5C{pjEhNKe6|K6EAADlw27gDdsFi1f@jan_vSAkkOD`(gamfhXGb`pfJQ< zK(3)E(SlR4k}5xMXx>Rq&6eZgQV!sMm~)`#DG2q?&O9;cVxL(5LllHbCZj0x6uCSa zxzb$lDz%ewo7CK8?c~t8DSTV;fsfHVxF>_hLy||S4-gCDtAKo~jc5T82;uv-(!q4Z zDf1li#=?zik*Lq1lAoL`9AwCM_xZV&KD5zdp=_$uwE9Di?ItW7`d(05@Tf|%5doGE zfM+=#?&!6U>`{KudJjkv%McW(mJXLzota zbV)zLSQ|zZu+Nz6$odP6rjg`2CY(N7_Hw7<5iv$79A|-GPR`h(u+e+9cbd$bl8kt( zl(;$_bfnR7m>q?f74USb5*54)*J20-_!SlXdtaEnLRmpilUySfDlDA>#Rk#Ui!gnbTmxS-z@jobtH*$j;2San#!+8^eXBj3e4!B7zt%kwDOgjRS2ciW^S zz=GI>AB2$iqTWKc{JCgR-S|NI{)6uAhoib_Ok;=C$j6POg5jYV@z4!BgxYY5+G zkc6Fc)){~5qZqb%ILW*Tp!peYc)sA^3m$2v^BTEnhkU!Uf@I6SQz~nYr%C23^I^I? z`fPqMC*rK{lXA@9pzKXnEC(dvcdz!x4E?t!%|MioHwm2|@Fj-{ zjrZe$>>@mNUa;hno3(MD;sLPflgO-H75$l4i6!3OQfob;EQpYfezPtHPbwFy)X1t7 z5;)5qK+~9w*zDr+0>T&_5RTysmcJGl6P#@eGmLiMQW{$&e3uKciPRqLI}OUx0@QTr zgyeuLfk8DOV`0wRQKz}pLgZ`aFz${LN2-tt_{bZ+X33MqY^(<(u+&M4mDIZRJtt- zyN2f6;cqlD=zRm7!VDSWfQJzo;xJY&y}bQf3|6p1{higY zCT28qh&JG!aDqXx7IKnxfuFUV7p6%vi<#k2XGGYthw0JO14_Ti`WufH?=Gqn^R`7u zb+HjgGFgN>5tBgTUXKNavvydB3YU-mNTVY*h$1inhP7&0iUA_JqX&Oto|3p5Igs(m zWZ0Ugqof?g9#OJBLa>NU=1E|i#rb0x_(6-45aSlFo*|Lq&bGCJk`FTnt zgyINU=&;{E;Thw*`V@-^5|k|YxLTuojSaa&WqX26WZZ(OuyZg9K7p>Bvaz-yH3nvk z6BJzIX47Ph+X`%u7R7ZNXQg2FfZMAZH$I6Scul-1t@d%+{hS&t-B-R%jdpbNeBP-P z$thAX6D-NB7!8U&>U-u-srOIwK188vj`gP&%8?%aNeWl_6tOeGyEH&50&Z{dh^Z8q zD1-NxK1hm&nb@LOz#3wEGW8q|Bej&*Ly*}4I&dpZYI=t8ImG&Up$a~^`90v^01<8P zNwKTY$JW>F<0lg<*qAh&UOqIi<*b}KkZFAyb-quWm^{_M9#4n#L7YEu7$x#L+nlc{ zc=G4=Z=r@@$Dc2aiyG-o8gde0_Ua7)$;Re^+0PW#5qV}d5%GLI7lgs|zb4F!33!|5 zO&If$C^oxWt6U#=WWG&y3QrWaemJP>j9JvkY_Go1uMRq;;;}OxOcz~4#>s?Yz22hY zd@P+-YgpDP(v?R0tMb5k6?3vKzP`w4B*OyaW@0j%g{rg!*b?^bBF%&u5e@6>%xL+k zf|XW>=({r&Tj%KFqqMYs+<7fWm;F7<{cS|vVh-vye_Wd~F5ZDt03PT})Paw+6Lkoh zO476XX zx~5M+D`|kG+w#UVnYI#Hb0t#&At3~2H)My}IP;Yhua)LP&(hKhFV4IlnK(Pf{)s@MsMw>WDta5?)) zv70HwGEJ{=fbixZ{B}5Ob6Sv+%wi5+yj7jM9ozOT`IdSwRQV-Zwu%h-OT828GT)#l zW^4l0RI;WU1J85%ti~7TfvC^wyi2WaRe^k`Gx{=gP0e4ctQu04*M}v?Cedo~a2L%as)c2(|C%<3n(d7^kGMwBVjipnvI;D-lH@nIWixDvZh51MzX&Jqor3w2 z@@hoMbD|uPj8B?5QP8tt1&1Szxz6D-76uUqSZm7c#d7^bn*qhNgZcTW1?DQIgTDP1 zC^FPYnS4}XKWZ5a>oH){1C2KS+4%uGyqKds96ichqGJjYG=Ejg*UZus^}~{_&+x-n zQDbxAqa;}!54`CS^Q-i?j7@_dg~?Cb+3@M}TYE|HqRfB&GX2%fQfRl=1`mj@kIkZuo)}bL!UYdV?xSes&!+d%v&$TsJA3Zwpww@2k=DP^kF@6* zuqRjY70-nXP&>DMoO zuNnZye>tv<562b4=7S>g22tQSWFC`&^Y{gW_6Q&mE4WX6(mCC92q$kXARRU@(SrRe zNC~RLl=(sUOW*3ws>Rr0?S=-cNDuY(NL3FL16hr{6ZR`H^KwSna~L0@I87YyR>Hn< z9J+>Yx3^pCTr;7KCQ`{~K{i)XKADQiF7*jFyJ?n^WKtiSRPCo}GDco-G&H$2T~oA# z{yr{5TSF_QRf0MBV&NMC?#KwXD056D=Sh|kN}!cS)C!Z0(Q`fX0yy#-=8sk@=EjfloX4+OD<;Da)(75+a6o6o zoJu^k0nb1VH;0p>v96F{!EUo{j%7rcGb9bmRYoiIwUXQw3E*3^ zq;PO9uH^j>Zv-^l@lHWBJ~mdcUc9S`bSPDNwZEH%ci%f*n5}(NdDo`xOGs2doFzJX z)5_|IzZhx#$I2OLe%AyH-5|jEjZfou#35d+Ee0!CH9q-!0@7kWR^rfC&>0e*Gb<)x z=WT(dur%SuAM1Zji(TmaHJvXJ$8rk1ge8jFEHQ9>@w21^{tdF|Ux})x^BH=1SCwCX?zInY0=*)h@K=T!}bS4@G3Eq5HW^> zqXY^}&Zj6AgNRhiNFxvhQRpmE?;*8az)ZmYnxzbks2kd=-MnT2k4ylgJhYO&kM{;S z1X6qA_LVBDGX&!e+( zkOX)QZrR0z4`?Utb}T6js;O7Z9;R=6v4YiyFLV}Y3Qv}@5vs?^{HUhjTD+zh@~`t( zhr+Og`%tsY&t^$ymC$WnH9y3GcLpDB71nBpXy;#gepqfBP-^4}9@<0#SFdk^Zvfof zf1bOv7h2iyg{7c5C^_v$lJu@F3ViC;yVON{)menz3 zKIE4%Wj^M&F=;>K7cpr+<~K1dKjfd59j1giq#|fGDl0$0tw;4b$=yKg2?U+LofZAx z=}I%Qs(Mv8tOiqe^~yf;IQ3W*)n1U49K4y0{`z+Kt$gYI|1ogs9r&bHqRI>$VR2lB zu^_j|tKixHbJW8WK|z@$nq^Hv@7}!+0fsKY9>*=LZQN4HYp~z>abE&e^x3b0PWp`( zKpFkUE1;Er<0WuKMai!6yXRB;29ZR^&e_iM^XpF9tG%Dwy|aVU!y8Ix@@~C`_hsw* z%hpv1X*UvC;{N)95cjL{VVY^YV|VgX(MMAt?dvQy=R4*1bx!1@o zUGQePLd}d{o`qt=?DF^#ehLxAUZLP^T>SREw|K|)ReU_?-*SH+1H5oR(t!dg0#T$9)#t5*CJ>=GGCW@N~NJcC}sM`!FQZy&CgG#{EdquZ5 zqkHG~*PE>?hqtn$v%A@({Y4$Qy1p zm$eOqI8#$`-MYcc{b^F?Zr#82Z?^1A0@=M=7dHFWvdibX-(B5bit0w<-aq=W{=E^P z>sxo1%*Pc1(!V;7|JDfLY;Iy>!t}S#zx4o|Xv^5)aiM(2I`kvH`>I(_F~mv=ol5^h z>LswMa5zC*siU!N3{vXXOqFCTBpilZ)MvPxMX?!9VX<H{2GQWsG6{!+2dOnW)IB zL7={?zdO+e!okF^JiB$zWM*gC;6nZ?=)K=XAPMZd0-55so4zGJHWb3jTa95j3Q_{t zXgI6dUhiF5?rJ~CNnj3D+9H38RH`<&*Ak1lNAJ0OO~6>cZIi4G)Invqfe-}!4y&U{ zpOT7&COZdG#0}cq@hXT2du*QCyBzKj)oW8;=!?SY@J$OntnZ7Lgh@=i*e_!+0wZBIo8al{EQh?lX=Z${lqq z`*t9*ayuV=TMcT2*K8p8q2J0R! z)S_1buTM*%d6BkgtN(tui8#Dnq4FSY)b&f(^#aQHa!lpnE@s*B#}7QkadS`hkVPb$ z7N;{K$=n7xCU3}1x*~i*5fS$20vV>6gR;y|R*%CRyvJ04nXrmPR#n?0zaqDv3#2xtj=6K016pw2{JW9Gp@HxtU`XwhJ zb@qd%t9@T2)J7le9jpg4h5_nQA{;*f>Y!4EMB&ZM3EXtc=8YG2dB)P|igkLcWZq#y z+yUl(XZY%-!~`}~hK6b8An=611A-)ShEPNBfzyo*un|OL&pWqr)rgeY4;l<6A3blouCrk zh{-FrM$`YY_QSUF_&HhfFvgjUEvHyVm6yazm{d^g>*-cTAKQRM;1BvqzD*Y@X9K(I z)LA`D!cPHw7@mURST#zn6c^MGZdRB}UD$jbso&Gy+zH@@{IEt?hR6CnuF=egSJ@SR zGFfLKnNETw`5%3WZ1l*GSRki7YBISlo={d-m;I+rllE;|pb+{WT1GaM5C+@)#_ zFX2jk&Z)bpTIvLw&m{e7cWuY7o*?JAo={f3_Ug>6ihat5DK4%C$H(%bHcN|YZQKos zpZc@2vhCRB_LS&^Z0Ay@v0hKfb>JMv#xj`^aly!0pYaGYm69_gVu$>+5Yn`XG<$l1 zV0gIXtxx{t55$8w2w|h9?l>daF62ss6ywq3Mr`5~X6{+N)FBD+84l{VH)G2RhD{S* zcbCczqdcZYg^}arE{)TPruH*GQf)g|3{B`3WE)$jv+_{@6 zy;;Z}CZXt<`fIhuket}fYrK}v7A4494vUx;fUKc*eXA1M=N3dMF-hWetVQ9A{ZK() zHNWl@^jUID+!3gEgeOIgshQGqU9ESxTd)`BxJwtM9_9i6QKSS5lv%D(>JM(F7G9u4hV@o4af}JG zo4Pg`;o*MD8Z}opE#)4QREi|5s$jo`c<8BRf@iG1kVBSwK`a>a(i?+7c47M3G9iY^Ur`*duepfT(j%ZMpOX+^QwGZ(Qs zSGS%Obx^Z2SMK0MRP`HTpl2axQ->JY`1r znI#kx3f!T77_A*zi+@>c3w1vIs}K6$V{h@Bi~QyX;wOj!1O)N#vDeAj!`j5@ug<#@ z?KQh?ZWKSEqc>=}_MrkPYJ&jqyJjLuy3=afCaN6gF6bog`Eqopk5#YgGr#USbjevX zVvAYZnagQ3^r;uq!D|z*2VWfK8({#zgPZjPeN33#xlN+~*YLxR>FhBMbt3l-^9~6P z4jmfK`H;{%d-QH(!f!rNaxgRlcGk1PY-CwB$8$;l0(3ztl9z2K)Gx4chNj|9BDGj$ zQlM-rsS6z7vSMV#%rL8B;SiduO#2LJ&`$J6$*i;*nW+I_ZWj)ijsYbI-xyDkTxVv_ zB004qInV{3f)#}Iddbel(7#zZZj>;3z_r-j$(;}+Y zX3ai@1gw1f>_~S(Xj0_#a z!IJD#1`GBi9{`Qm;2w&Whg7S1^=eE|PwHn3(mg#seGy?rT+JXM)K?0x_n*0`0f;~rQ91_i25^0PhpGi{cI2r;CYe_JF z!Z?f?7ZVo!fHn-r+oAGKkxNIZD;>VQlP7T*9hOd`wa6A}Ci*ofnUi&wps>&dVwsv& z3D(}71qvE8GGvYEx4NM_i3i$exuVf*O1xg=#2&e`d3^ zTblgr8o`<0LN=&Fk)En3!S=gN7TbK<6?!)}H2ynH6KCgurL>{cBgjIy40eZlNMEk6 zcA{`w?G4*0n)6Kg7q!#WCpZedD~@WxZD_R=}X6A zVBO%!YA_VSJHa@=)Yg!cW#NFPXrKvmbgx9iWRY2!48>oAWgm?;K?SJVm=dc+4USS% z3|X{es~z~o^Yvl=GD?aB{+UVGMfE4zp-NtM55z9z+n^4fCD` zx+^Za9Z#b9(`C`PRbw=zU6Ji03?u3oosJzXo*m1rv?B44hrBlU8~ag&E2Nc)>pSyc zncCi{Z9XDu9bau$6hX9pTUolys zsXPSEypB`MR%ohHeqR)k5{PzRM?!h4ovj^&f0lt`V1TiW)3#xzx((-7WTknKoK>XX3fC9uGk11vu3t6_G}vOGbqq~q#x zL4{TO0K!Ew!OzSd4UZ1Sg&RWXag1R0sk>ElPd!DHEUdHVx$`O1t#ptvpH4D;A~$W3 zUnJl~BnI!t8r)u^#-utH8YVrfCTSeBeGX3Y_narE7#S&jDr|Dzv)Wjmqo3=a0-3CT z{LB#<*i^5Q43_KBFEJt`yGH3>YMBOc#q{c4YZBycUdYVWcCDEE(WPGFb=*i9yY~Ii zb&@eBBB}RGwNt|?qnTi1T5U5Ypb*r6U3bOOChvqA80!}W)6^f z35cLTK)^rBFpU2S1?C2hCdMkxjuy6Ne~SpK+B$YCoEW}DweR+uUB<%JJnI5-x`k2= z#W{2I^4cdB--?VPV1Sn7pO#*4pQ%S8j>&%za$;hCfxrajjJYx9Po)JN5J>}DtaI3( z>}$Djk;7dqS<9~bdv6zxE)GC>n4Bq-XS}&J8}RsZeP0&>oW5REx`qYyJzEM%>1x~4 ztPZPII+$5l)9^Fed~F@AAJ*+Xkx7vq+#yO*mK69lKfg?bnO*2`T?#<=>6y@#!(zV*4!`>;3@W~2p$kH}&r z3@@ucK)K&oEiE$^=9@L6XG`76jN2}})p6&ybBV@+3+9W$@dsj(BpO{34W`hP+I61} zo2eRWN4j#+VrPieW;>z=*IRJ%&%8_lTzsA+_;x~02IbnYal~_`WT!9^rcyOlO~qXd zWY)sI^U}Td7i~R6_X)NkqF^F z+(<@*Q1jIgUo&RDSIN7fYZavs#l%)!L&Zlia*-N%(I*3{tZL&T z7PCDw7WMigf-hm|>d>0$errk>U8@%hvcrDUON$yN5d;RCU~*MWd)W~Fn$ifbN>)OD zq(=v?&hn^8TaxYE6|;3(19vICP1PM#?&My+zK1r|%w@UEXTMI&&jOJT5Dw;BecUKd zw72YWKCNch%NGJqe?GTz@FrQ1IOXlM(_NCf4GvY!XE-x@m($v|AbZN$kkS262>97` zpN*wHAb6B}T@~&v&2#Xn3(aH?4(Cx3o4tFG$sl&+IcOQjFWzEROh)lJtd2{`ONDLj zn~?#cysQJBYQ+;^b>J-84jzZA-p&p~z9(S_#g5^C@+|5su*ucRh0gF@u$x|X(0M;U z*Ekb(BaJ3k{T7QlmkyATv(pN_K=+2?vFLmXy2u^Yc~M*kIEtn6vwYV7!v1a-eamFoygt2GAi*w_6HT@AJq8cc zaOFqAs5H=PWsE_pt_k;{#783n;|3gtk{PjuKm99SJn^%$8Z+o*EPC%rGUg_b6$~6~ zFpzSm>k_I@c()RpPgxiT48@!X1-NOcY(y8Gfwv8zE0M%P9M~RWLIqdtGUNZL3GAq; zN^s1aL`03}%9Kk{XdO;go$auHc{bCrWh)7S)ACMLnprqT{R{4iiC&rrQ)LiRh5?A! zfVcTc?|vpJ@?pX&8dVA;F>sZy3?tR#cCUCXf9!8cGc4j_!HMana!0nW^l) zt8?1Bn}7p+rw(jV8CobJWnsVEV0Y8Cu5G*Z$#g;mvg{Gm zg*lM%Do1(>G74{*_DKul1UD~)q8*92>!$}0B0PdU5)jZh$2`n^2JvMjoS`x1e=;8_ zokd_*{BCQ5$g{1er(m|E^2I|Q9#LBzku52Inz;?8l}g|fqBPmEt*lw5sUd-ENUvPp z`fc{6cMV;j7>z@!W}PB&N|rAft>PZ&3}udDq)eGR03uJW->T@YT~qAm9U6M6uljUb z+t{(GJ}jnJQb)!`pm6PGB?$)gm$A(re}p!|gf z`!9gc-{E2Zfcg9l92Okc8`;N<0lWu)6La@US`0xDQ{f_QRXYGTd|HNDNsGV7c=c+) zH|g2iv!B}I%zEZ8!!t!npr3CC3)wZoGOxYxT4v}LspCFg#eiktk2jcO{GJIeFE1T2 z6tDRSzAi+G{1v<3ci>lDENof4;QlYE2oL6w$0)q%%5qDaD}CrjCi$jw`duH5AYK7w zt+$g{A0mF+g6>JltEpfqp7<|<`I0=tz|$*#Ly_NZcVDf1kRXa}#>cMjVE>Z@(mPNb zB0gq*_<=>G`nv?|KVqq~iKB{%v-4j;mFbV~ER2R0ws5AyMv}&oX2ZtR28v&p4Vgg< z#h|u9$>7;m2%rc}5AG2wWf7tgYFe*&l>OO-`eC6^h(w>53&AFsKof!F=`k`iWU62Q zHc*!EH)M#zV?F*?(G+Y>5WS%ud;9WnJ8$&{kqOW;&^9lO=uQ-3ibXDvAgZ5S1MnEq zU?T-MwPkBO4)i@>P4plBqfrwZtM^+8gb}{<}4v;$;=7fCvE)Rw=UoJDX%HwoC zJo80k_YgjMqA`-iCImYGP21G+(+-dq@d;aNC}p=z9c4#AlV7sBhE$0)4{KmPzw$d52jf8pJ+VVGHSw zlj^bdwYbsQAKoUNG#JoE?`SJuf5P|qN)u_8O!ckfT*63NZlvW>Jbq-U|E``p1ys~S zAL@DjVQeV>teyt;_W!G$A8PquN4CnC?FutWC)S}*Y3DA6if!OGW@@O=Ia0{w`O@SY zZ0oWVAb=Fok>Tg-lcI9vupE)O-B?bqy=yB*T1R`Nw)1D5q}oS%Q&e0NCmT-KjtRl+ z??wq!%si@#U;6G2e-(MZN>}FCOecsFLBj5!tD|wiPj=DPK?%Xv!b%$GA!5YZ_S-0# zhiItVSg{Xm3|>MG5#)`q2-%2>a8fgBKk3h`mQUt(kKM^J)BmWqpsn)nOTKDQpY+sG zyzwomMe~M>+++kcxn$n4VtRXGlm)_Rh-hLedSJY?kyN9$PcMGUNy{$+MnzUeb-tk* z@|n%JUHtqdr3o(|l=r2g05R-)HLilZZ^Kz{TKFy`a&X?SG?lZ)#RJE6bkR$R?QbsN z9Q!jG%y=(pbd$b5zypVLj#Zy*(c&`E_ae=pg6@!69XwJG#|+a;<^>fnBg}iQ?htv; z!`+Ex3$c5dFy;w+RqkR$PW|AuZvFJ55*qbp+ny7XcG-fs!K7jagVN+pXi4wc{oW1E zj4rUg{(5{apmtzC|H)FTtdW>*n1F*CRXuHo*(h>$nsCdqTmO5?b(EGjW>{6u4TRrY z*%j)4D?cb0!$+a^pZD+i@0MgE)cuXD+VMg7x0BYzV9x!b}& zNXI`6^^d(5{v`fa;P^jCK|loI{zm+NfRX>n=T9{8KR7uc{QrOA->}7ha{2R7c9e{%RU;ra&$W#K<%@E_B! zKNt6M{*k@>$86?LrvI8o{DUP32&pIt$iF2Of0F;JoBwC>Ucf(*|CiHO Xl!5%vK@bpxj~C^K8h@Ag>)ZbaiuMIQ literal 0 HcmV?d00001 diff --git a/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb b/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb new file mode 100644 index 0000000..33853e9 --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb @@ -0,0 +1,210 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "2b4f813c-9374-4cd4-962b-3a70d4b267f1", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Especially on Linux, gdxpds should be imported before pandas to avoid a library conflict. Also make sure your GAMS directory is listed in LD_LIBRARY_PATH.\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import geopandas as gpd\n", + "import numpy as np\n", + "import statsmodels.api as sm\n", + "from pathlib import Path\n", + "import sys\n", + "\n", + "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')\n", + "sys.path.append(reeds_path)\n", + "import reeds" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "7e7c9b42-1b34-4b13-a497-5151dc98aa08", + "metadata": {}, + "outputs": [], + "source": [ + "state_fips_to_abbrev_map = {\n", + " '01': 'AL',\n", + " '02': 'AK',\n", + " '04': 'AZ',\n", + " '05':'AR',\n", + " '06':'CA',\n", + " '08':'CO',\n", + " '09':'CT',\n", + " '10':'DE',\n", + " '11':'DC',\n", + " '12':'FL',\n", + " '13':'GA',\n", + " '15':'HI',\n", + " '16':'ID',\n", + " '17':'IL',\n", + " '18':'IN',\n", + " '19':'IA',\n", + " '20':'KS',\n", + " '21':'KY',\n", + " '22':'LA',\n", + " '23':'ME',\n", + " '24':'MD',\n", + " '25':'MA',\n", + " '26':'MI',\n", + " '27':'MN',\n", + " '28':'MS',\n", + " '29':'MO',\n", + " '30':'MT',\n", + " '31':'NE',\n", + " '32':'NV',\n", + " '33':'NH',\n", + " '34':'NJ',\n", + " '35':'NM',\n", + " '36':'NY',\n", + " '37':'NC',\n", + " '38':'ND',\n", + " '39':'OH',\n", + " '40':'OK',\n", + " '41':'OR',\n", + " '42':'PA',\n", + " '44':'RI',\n", + " '45':'SC',\n", + " '46':'SD',\n", + " '47':'TN',\n", + " '48':'TX',\n", + " '49':'UT',\n", + " '50':'VT',\n", + " '51':'VA',\n", + " '53':'WA',\n", + " '54':'WV',\n", + " '55':'WI',\n", + " '56':'WY',\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "f321f065-2cf0-43c6-9e7a-e32a9df8c70e", + "metadata": {}, + "outputs": [], + "source": [ + "gasreg_state_map = {\n", + " 'Northwest': ['OR', 'WA'],\n", + " 'California': ['CA'],\n", + " 'New England': ['ME', 'NH', 'VT', 'MA', 'CT', 'RI'],\n", + " 'Mid-Atlantic': ['NY', 'NJ', 'PA'],\n", + " 'South Atlantic': ['DC', 'DE', 'MD', 'NC', 'SC', 'GA', 'FL', 'WV', 'VA'],\n", + " 'East North Central': ['WI', 'IL', 'IN', 'MI', 'OH'],\n", + " 'Mountain': ['MT', 'ID', 'WY', 'CO', 'UT', 'NV'],\n", + " 'Southwest': ['AZ', 'NM'],\n", + " 'West South Central': ['TX', 'OK', 'AR', 'LA'],\n", + " 'East South Central': ['KY', 'TN', 'MS', 'AL'],\n", + " 'West North Central': ['ND', 'MN', 'SD', 'NE', 'IA', 'KS', 'MO']\n", + "}\n", + "\n", + "state_region_map = {}\n", + "for region, state_list in gasreg_state_map.items():\n", + " for state in state_list:\n", + " state_region_map[state] = region" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "69c2873c-e224-4ba5-ba68-34030bb8862b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Hitachi Energy Barnett': 'West South Central',\n", + " 'Hitachi Energy California - North': 'California',\n", + " 'Hitachi Energy California - South': 'California',\n", + " 'Hitachi Energy Chicago Metro': 'East North Central',\n", + " 'Hitachi Energy Green River': 'Mountain',\n", + " 'Hitachi Energy Gulf Coast ELA': 'West South Central',\n", + " 'Hitachi Energy Gulf Coast ETX': 'West South Central',\n", + " 'Hitachi Energy Gulf Coast STX': 'West South Central',\n", + " 'Hitachi Energy Gulf Coast WLA': 'West South Central',\n", + " 'Hitachi Energy Haynesville': 'West South Central',\n", + " 'Hitachi Energy Henry Hub': 'West South Central',\n", + " 'Hitachi Energy Marcellus - Central': 'Mid-Atlantic',\n", + " 'Hitachi Energy Marcellus - Lower': 'South Atlantic',\n", + " 'Hitachi Energy Marcellus - Upper': 'Mid-Atlantic',\n", + " 'Hitachi Energy Michigan': 'East North Central',\n", + " 'Hitachi Energy Michigan/Ontario': 'East North Central',\n", + " 'Hitachi Energy Mid-Atlantic': 'South Atlantic',\n", + " 'Hitachi Energy Midcontinent - Central': 'West North Central',\n", + " 'Hitachi Energy Midcontinent - East': 'East North Central',\n", + " 'Hitachi Energy Midcontinent - Lower': 'West South Central',\n", + " 'Hitachi Energy Midcontinent - Upper': 'West North Central',\n", + " 'Hitachi Energy Mojave': 'Southwest',\n", + " 'Hitachi Energy New England': 'New England',\n", + " 'Hitachi Energy New York - Upstate': 'Mid-Atlantic',\n", + " 'Hitachi Energy New York/Long Island': 'Mid-Atlantic',\n", + " 'Hitachi Energy New York/Niagara': 'Mid-Atlantic',\n", + " 'Hitachi Energy Niobrara DJ': 'Mountain',\n", + " 'Hitachi Energy Northwest': 'Northwest',\n", + " 'Hitachi Energy Permian': 'West South Central',\n", + " 'Hitachi Energy Piceance/Uinta': 'Mountain',\n", + " 'Hitachi Energy San Juan': 'Southwest',\n", + " 'Hitachi Energy South Atlantic': 'South Atlantic',\n", + " 'Hitachi Energy TexOK': 'West South Central'}" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "county_geo = reeds.spatial.get_map('county', source='tiger')\n", + "\n", + "hub_locations = pd.read_excel('//nrelnas01/ReEDS/FY26_NatGas_KO/HE_VelSuite_GasIndices.xlsx')\n", + "hub_locations = gpd.GeoDataFrame(\n", + " hub_locations,\n", + " geometry=gpd.points_from_xy(hub_locations.Longitude, hub_locations.Latitude),\n", + " crs='EPSG:4326'\n", + ")\n", + "hub_locations = hub_locations.to_crs(county_geo.crs)\n", + "\n", + "county_geo['STCODE'] = county_geo['STATEFP'].map(state_fips_to_abbrev_map)\n", + "county_geo['gasreg'] = county_geo.STCODE.map(state_region_map)\n", + "gasreg_geo = county_geo.dissolve('gasreg')\n", + "hub_locations = gpd.sjoin(hub_locations, gasreg_geo[['geometry']])\n", + "hub_gasreg_map = dict(zip(hub_locations['Price_Hub'], hub_locations['gasreg']))\n", + "\n", + "hub_gasreg_map" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/aeo_updates/temperature_gas_price_regression/write_gasreg_regression_data.ipynb b/aeo_updates/temperature_gas_price_regression/write_gasreg_regression_data.ipynb new file mode 100644 index 0000000..a1c6137 --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/write_gasreg_regression_data.ipynb @@ -0,0 +1,462 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "b87eb8ef-97dd-4fbe-a37c-702ee0ce269a", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import requests\n", + "import urllib3\n", + "import os\n", + "from pathlib import Path\n", + "from urllib3.exceptions import InsecureRequestWarning\n", + "import warnings\n", + "\n", + "urllib3.disable_warnings(InsecureRequestWarning)\n", + "warnings.simplefilter(action='ignore', category=pd.errors.ParserWarning)\n", + "\n", + "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "e02c7de3-e6a4-434c-b3ce-5e7c1022b83d", + "metadata": {}, + "outputs": [], + "source": [ + "state_abbrev_map = {\n", + " 'Alabama': 'AL',\n", + " 'Alaska': 'AK',\n", + " 'Arizona': 'AZ',\n", + " 'Arkansas': 'AR',\n", + " 'California': 'CA',\n", + " 'Colorado': 'CO',\n", + " 'Connecticut': 'CT',\n", + " 'Delaware': 'DE',\n", + " 'District of Columbia': 'DC',\n", + " 'Florida': 'FL',\n", + " 'Georgia': 'GA',\n", + " 'Hawaii': 'HI',\n", + " 'Idaho': 'ID',\n", + " 'Illinois': 'IL',\n", + " 'Indiana': 'IN',\n", + " 'Iowa': 'IA',\n", + " 'Kansas': 'KS',\n", + " 'Kentucky': 'KY',\n", + " 'Louisiana': 'LA',\n", + " 'Maine': 'ME',\n", + " 'Maryland': 'MD',\n", + " 'Massachusetts': 'MA',\n", + " 'Michigan': 'MI',\n", + " 'Minnesota': 'MN',\n", + " 'Mississippi': 'MS',\n", + " 'Missouri': 'MO',\n", + " 'Montana': 'MT',\n", + " 'Nebraska': 'NE',\n", + " 'Nevada': 'NV',\n", + " 'New Hampshire': 'NH',\n", + " 'New Jersey': 'NJ',\n", + " 'New Mexico': 'NM',\n", + " 'New York': 'NY',\n", + " 'North Carolina': 'NC', \n", + " 'North Dakota': 'ND',\n", + " 'Ohio': 'OH',\n", + " 'Oklahoma': 'OK',\n", + " 'Oregon': 'OR',\n", + " 'Pennsylvania': 'PA',\n", + " 'Rhode Island': 'RI',\n", + " 'South Carolina': 'SC',\n", + " 'South Dakota': 'SD',\n", + " 'Tennessee': 'TN',\n", + " 'Texas': 'TX',\n", + " 'Utah': 'UT',\n", + " 'Vermont': 'VT',\n", + " 'Virginia': 'VA',\n", + " 'Washington': 'WA',\n", + " 'West Virginia': 'WV',\n", + " 'Wisconsin': 'WI',\n", + " 'Wyoming': 'WY'\n", + "}\n", + "abbrev_state_map = {v:k for k,v in state_abbrev_map.items()}" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "e7afbf50-cb9e-4af1-b657-44d7e48a27fa", + "metadata": {}, + "outputs": [], + "source": [ + "# Download state- and cendiv-level daily HDD/CDDs \n", + "def download_daily_state_degree_day_data(outdir):\n", + " for dd_type in ['cdd', 'hdd']:\n", + " for year in range(2014, 2025):\n", + " if dd_type == 'cdd':\n", + " energy_type = 'Cooling'\n", + " else:\n", + " energy_type = 'Heating'\n", + " \n", + " url = f\"https://ftp.cpc.ncep.noaa.gov/htdocs/degree_days/weighted/daily_data/{year}/StatesCONUS.{energy_type}.txt\"\n", + " fpath = Path(outdir, f\"daily_state_{dd_type}_{year}.txt\")\n", + " \n", + " response = requests.get(url, verify=False)\n", + " if response.status_code == 200:\n", + " with open(fpath, \"w\", encoding=\"utf-8\") as f:\n", + " f.write(response.text)\n", + " else:\n", + " print(f\"Error: {response.status_code}\")\n", + "\n", + "def download_daily_cendiv_degree_day_data(outdir):\n", + " for dd_type in ['cdd', 'hdd']:\n", + " for year in range(2014, 2025):\n", + " if dd_type == 'cdd':\n", + " energy_type = 'Cooling'\n", + " else:\n", + " energy_type = 'Heating'\n", + " \n", + " url = f\"https://ftp.cpc.ncep.noaa.gov/htdocs/degree_days/weighted/daily_data/{year}/Population.{energy_type}.txt\"\n", + " fpath = Path(outdir, f\"daily_cendiv_{dd_type}_{year}.txt\")\n", + " \n", + " response = requests.get(url, verify=False)\n", + " if response.status_code == 200:\n", + " with open(fpath, \"w\", encoding=\"utf-8\") as f:\n", + " f.write(response.text)\n", + " else:\n", + " print(f\"Error: {response.status_code}\")\n", + "\n", + "\n", + "download_daily_state_degree_day_data('inputs')\n", + "download_daily_cendiv_degree_day_data('inputs')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "8edfbf13-5656-4c53-9738-bdf0f2e0007c", + "metadata": {}, + "outputs": [], + "source": [ + "def read_historical_state_populations(fpath, year_range):\n", + " hist_population = pd.read_excel(fpath, skiprows=3)\n", + " hist_population = (\n", + " hist_population.rename(columns={'Unnamed: 0': 'state'})\n", + " .set_index('state')\n", + " [year_range]\n", + " .dropna(subset=year_range[0])\n", + " .iloc[5:]\n", + " )\n", + " hist_population.index = hist_population.index.str.replace('.', '')\n", + "\n", + " return hist_population\n", + "\n", + "\n", + "hist_populations_2010s = read_historical_state_populations(\n", + " Path('inputs', 'nst-est2020.xlsx'),\n", + " range(2010, 2020)\n", + ")\n", + "hist_populations_2020s = read_historical_state_populations(\n", + " Path('inputs', 'NST-EST2025-POP.xlsx'),\n", + " range(2020, 2026)\n", + ")\n", + "hist_populations = pd.concat(\n", + " [hist_populations_2010s, hist_populations_2020s],\n", + " axis=1\n", + ")\n", + "hist_populations.index = hist_populations.index.map(state_abbrev_map)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "a8224995-7e14-4280-a8ef-132d53dd5c1e", + "metadata": {}, + "outputs": [], + "source": [ + "gasreg_state_map = {\n", + " 'Northwest': ['OR', 'WA'],\n", + " 'California': ['CA'],\n", + " 'Mountain': ['MT', 'ID', 'WY', 'CO', 'UT', 'NV'],\n", + " 'Southwest': ['AZ', 'NM']\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "31789b0b-4ad5-414a-aa4e-6405549b4c76", + "metadata": {}, + "outputs": [], + "source": [ + "# Calculate daily HDD/CDDs for gasregs that are not census divisions\n", + "def calculate_daily_gasreg_degree_days(dd_type, hist_populations, gasreg_state_map):\n", + " gasreg_dd = []\n", + " for year in range(2014, 2025):\n", + " df = pd.read_csv(\n", + " Path('inputs', f'daily_state_{dd_type}_{year}.txt'),\n", + " sep='|',\n", + " skiprows=3\n", + " )\n", + " df = df.rename(columns={'Region': 'state'}).set_index('state').transpose()\n", + " \n", + " gasreg_dds = {}\n", + " for gasreg, states in gasreg_state_map.items():\n", + " state_weighted_dds = []\n", + " gasreg_population = hist_populations.loc[states].sum()\n", + " \n", + " for state in states:\n", + " weight = hist_populations.loc[state][year] / gasreg_population.loc[year]\n", + " weighted_dd = df[state] * weight\n", + " state_weighted_dds.append(weighted_dd)\n", + " \n", + " gasreg_dds[gasreg] = pd.concat(state_weighted_dds, axis=1).sum(axis=1)\n", + " \n", + " gasreg_dds = pd.concat(gasreg_dds, axis=1)\n", + " gasreg_dd.append(gasreg_dds)\n", + " \n", + " gasreg_dd = pd.concat(gasreg_dd)\n", + " gasreg_dd.index = pd.to_datetime(gasreg_dd.index)\n", + " gasreg_dd = gasreg_dd.set_index([\n", + " gasreg_dd.index.year,\n", + " gasreg_dd.index.month,\n", + " gasreg_dd.index.day\n", + " ])\n", + " gasreg_dd.index = gasreg_dd.index.rename(['year', 'month', 'day'])\n", + "\n", + " return gasreg_dd\n", + "\n", + "gasreg_cdd = calculate_daily_gasreg_degree_days('cdd', hist_populations, gasreg_state_map)\n", + "gasreg_hdd = calculate_daily_gasreg_degree_days('hdd', hist_populations, gasreg_state_map)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "62235a25-34a6-477e-9554-820b3529cc1f", + "metadata": {}, + "outputs": [], + "source": [ + "# Get daily HDD/CDDs for census divisions\n", + "cendiv_number_name_map = {\n", + " '1': 'New_England',\n", + " '2': 'Mid_Atlantic',\n", + " '3': 'East_North_Central',\n", + " '4': 'West_North_Central',\n", + " '5': 'South_Atlantic',\n", + " '6': 'East_South_Central',\n", + " '7': 'West_South_Central',\n", + " '8': 'Mountain',\n", + " '9': 'Pacific',\n", + " 'CONUS': 'CONUS'\n", + "}\n", + "\n", + "def get_census_division_degree_days(year, dd_type):\n", + " dd = pd.read_csv(\n", + " Path('inputs', f\"daily_cendiv_{dd_type}_{year}.txt\"),\n", + " sep='|',\n", + " skiprows=3\n", + " )\n", + " dd['Region'] = dd['Region'].map(cendiv_number_name_map)\n", + " dd = (\n", + " dd.dropna(subset='Region')\n", + " .set_index('Region')\n", + " .transpose()\n", + " )\n", + " dd.index = pd.to_datetime(dd.index)\n", + "\n", + " return dd\n", + "\n", + "hdd_list = []\n", + "cdd_list = []\n", + "for year in range(2014, 2025):\n", + " hdd_list.append(get_census_division_degree_days(year, 'hdd'))\n", + " cdd_list.append(get_census_division_degree_days(year, 'cdd'))\n", + "\n", + "cendiv_hdd = pd.concat(hdd_list)\n", + "cendiv_hdd = cendiv_hdd.set_index([\n", + " cendiv_hdd.index.year,\n", + " cendiv_hdd.index.month,\n", + " cendiv_hdd.index.day\n", + "])\n", + "cendiv_hdd.index = cendiv_hdd.index.rename(['year', 'month', 'day'])\n", + "\n", + "cendiv_cdd = pd.concat(cdd_list)\n", + "cendiv_cdd = cendiv_cdd.set_index([\n", + " cendiv_cdd.index.year,\n", + " cendiv_cdd.index.month,\n", + " cendiv_cdd.index.day\n", + "])\n", + "cendiv_cdd.index = cendiv_cdd.index.rename(['year', 'month', 'day'])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "128ee3e6-f141-4ab3-afa0-11aac77a96f7", + "metadata": {}, + "outputs": [], + "source": [ + "# Combine to get daily HDD/CDDs for all gasregs\n", + "gasreg_hdd = pd.concat([\n", + " cendiv_hdd.drop(columns=['Mountain', 'Pacific', 'CONUS']),\n", + " gasreg_hdd\n", + "], axis=1)\n", + "\n", + "gasreg_cdd = pd.concat([\n", + " cendiv_cdd.drop(columns=['Mountain', 'Pacific', 'CONUS']),\n", + " gasreg_cdd\n", + "], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "0c3d7ba7-d62c-4417-8efa-e5ab7be55232", + "metadata": {}, + "outputs": [], + "source": [ + "# Get natural gas hub prices\n", + "hub_prices = pd.read_excel(\n", + " '//nrelnas01/ReEDS/FY26_NatGas_KO/Natural Gas Daily Hub Prices - 07-17-2025 - Internal NREL only.xlsx'\n", + ")\n", + "hub_prices = hub_prices.loc[(\n", + " hub_prices['Delivery Date'].dt.year.isin(range(2014, 2025))\n", + ")].copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "c145037a-43fd-4294-9109-ae772bf4ca28", + "metadata": {}, + "outputs": [], + "source": [ + "# Assign hubs to gasregs. These are largely based on finding the geographic\n", + "# overlap between hub locations and gasregs in inspect_hub_locations.ipynb.\n", + "# In some cases, (e.g., East North Central), only a subset of the identified\n", + "# hub locations is chosen because it results in a better correlation (i.e.,\n", + "# higher HDD/CDD coefficients in the regression)\n", + "region_hub_map = {\n", + " 'California': ['California - North', 'California - South'],\n", + " 'East_North_Central': ['Chicago Metro'],\n", + " 'East_South_Central': ['Marcellus - Lower'],\n", + " 'Mid_Atlantic': ['Mid-Atlantic'],\n", + " 'Mountain': ['Niobrara DJ', 'Green River', 'Piceance/Uinta'],\n", + " 'New_England': ['New England'],\n", + " 'Northwest': ['Northwest'],\n", + " 'South_Atlantic': ['South Atlantic', 'Marcellus - Lower', 'Mid-Atlantic'],\n", + " 'Southwest': ['Mojave', 'San Juan'],\n", + " 'West_North_Central': ['Midcontinent - Upper', 'Midcontinent - Central'],\n", + " 'West_South_Central': [\n", + " 'Barnett',\n", + " 'Gulf Coast ELA',\n", + " 'Gulf Coast ETX',\n", + " 'Gulf Coast STX',\n", + " 'Gulf Coast WLA',\n", + " 'Haynesville',\n", + " 'Henry Hub',\n", + " 'Midcontinent - Lower',\n", + " 'TexOK',\n", + " ]\n", + "}\n", + "\n", + "# For each gasreg, calculate the volume-weighted average price of all hubs\n", + "def get_regional_volume_weighted_price(hub_prices, region, hub_names):\n", + " hub_names = [f\"Hitachi Energy {hub_name}\" for hub_name in hub_names]\n", + " select_hub_prices = (\n", + " hub_prices\n", + " .loc[hub_prices['Price Hub'].isin(hub_names)]\n", + " .copy()\n", + " .set_index('Delivery Date')\n", + " )\n", + "\n", + " if len(hub_names) > 1:\n", + " select_hub_prices['Total $'] = (\n", + " select_hub_prices['Wtd Avg Index $'] * select_hub_prices['Daily Volume']\n", + " )\n", + " select_hub_prices = (\n", + " select_hub_prices.groupby(level=0)\n", + " .sum(numeric_only=True)\n", + " )\n", + " select_hub_prices['volume_weighted_price'] = (\n", + " select_hub_prices['Total $'] / select_hub_prices['Daily Volume']\n", + " )\n", + " regional_volume_weighted_price = select_hub_prices['volume_weighted_price']\n", + " else:\n", + " regional_volume_weighted_price = select_hub_prices['Wtd Avg Index $']\n", + "\n", + " return regional_volume_weighted_price\n", + "\n", + "regional_prices = {}\n", + "for region, hub_names in region_hub_map.items():\n", + " regional_prices[region] = get_regional_volume_weighted_price(\n", + " hub_prices,\n", + " region,\n", + " hub_names\n", + " )\n", + "\n", + "regional_prices = pd.concat(regional_prices, axis=1)\n", + "regional_prices = regional_prices.set_index([\n", + " regional_prices.index.year,\n", + " regional_prices.index.month,\n", + " regional_prices.index.day\n", + "])\n", + "regional_prices = regional_prices.rename_axis(index=['year', 'month', 'day'])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "6fac292e-e9e4-46a6-ac0c-2ee01144cec3", + "metadata": {}, + "outputs": [], + "source": [ + "# Combine daily HDD/CDD and gas price data\n", + "cdd_data = gasreg_cdd.loc[regional_prices.index].copy()\n", + "hdd_data = gasreg_hdd.loc[regional_prices.index].copy()\n", + "\n", + "cdd_data.columns = [f\"{col}_cdd\" for col in cdd_data.columns]\n", + "hdd_data.columns = [f\"{col}_hdd\" for col in hdd_data.columns]\n", + "\n", + "data = pd.concat([cdd_data, hdd_data], axis=1).fillna(0)\n", + "for region in region_hub_map.keys():\n", + " data[f\"{region}_price\"] = regional_prices[region]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "c35aa6e3-94ac-4340-a15b-0adf2e6f4279", + "metadata": {}, + "outputs": [], + "source": [ + "# Export\n", + "data.to_csv(Path('inputs', 'gasreg_regression_data.csv'))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 8f4a7239e78e6790b10da77065962311786870ad Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 12:50:40 -0400 Subject: [PATCH 2/8] Remove unused imports, add clarifying comments, and export to 'outputs' folder --- .../calculate_gasreg_degree_days.ipynb | 14 ++--- .../calculate_regression_params.ipynb | 63 +++++++------------ .../inspect_hub_locations.ipynb | 9 +-- 3 files changed, 33 insertions(+), 53 deletions(-) diff --git a/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb b/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb index be938aa..e519680 100644 --- a/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb +++ b/aeo_updates/temperature_gas_price_regression/calculate_gasreg_degree_days.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "43fc8779-04b0-47e9-b93a-39c8cee28a27", "metadata": {}, "outputs": [], @@ -11,16 +11,13 @@ "import numpy as np\n", "from sklearn.linear_model import LinearRegression\n", "from pathlib import Path\n", - "import matplotlib.pyplot as plt\n", "import requests\n", "import urllib3\n", "from urllib3.exceptions import InsecureRequestWarning\n", "import warnings\n", "\n", "urllib3.disable_warnings(InsecureRequestWarning)\n", - "warnings.simplefilter(action='ignore', category=pd.errors.ParserWarning)\n", - "\n", - "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')" + "warnings.simplefilter(action='ignore', category=pd.errors.ParserWarning)" ] }, { @@ -303,7 +300,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "id": "84da335c-9e4b-40bc-8fb0-f9667402a50f", "metadata": {}, "outputs": [], @@ -323,7 +320,10 @@ " .sort_index()\n", " .sort_index(axis=1)\n", ")\n", - "df_out.to_csv(Path(reeds_path, 'inputs', 'fuelprices', 'gasreg_degree_days.csv'))" + "\n", + "outpath = Path('outputs', 'gasreg_degree_days.csv')\n", + "outpath.parent.mkdir(parents=True, exist_ok=True)\n", + "df_out.to_csv(outpath)" ] } ], diff --git a/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb b/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb index d38f530..2e6e7f6 100644 --- a/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb +++ b/aeo_updates/temperature_gas_price_regression/calculate_regression_params.ipynb @@ -2,33 +2,20 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "d70f4c36-7194-4615-bf6a-672108e3cba6", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Especially on Linux, gdxpds should be imported before pandas to avoid a library conflict. Also make sure your GAMS directory is listed in LD_LIBRARY_PATH.\n" - ] - } - ], + "outputs": [], "source": [ "import pandas as pd\n", - "import geopandas as gpd\n", "import numpy as np\n", "import statsmodels.api as sm\n", - "from pathlib import Path\n", - "import sys\n", - "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')\n", - "sys.path.append(reeds_path)\n", - "import reeds" + "from pathlib import Path" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "8a8f5f3b-63c4-4d27-901d-3837caa4e83a", "metadata": {}, "outputs": [], @@ -56,7 +43,18 @@ " X = sm.add_constant(X)\n", " y = data[f\"{gasreg}_price\"].values.astype(float)\n", " \n", - " model = sm.OLS(y, X).fit(cov_type='HAC', cov_kwds={'maxlags': 12})\n", + " # The lines below represent an ordinary least-squares regression using a\n", + " # heteroskedasticity- and autocorrelation-consistent (HAC) estimator,\n", + " # which ensures that the standard errors calculated in the regression\n", + " # are robust to heteroskedastic and autocorrelated residuals (both\n", + " # common when working with time series data).\n", + " # The maxlags value represents the maximum number of timesteps\n", + " # (in this case days) across which the estimator adjusts for auto-\n", + " # correlation. The value is calculated using the Stock and Watson rule-of-thumb:\n", + " # number of lags = 0.75 * (number of observations)**(1/3)\n", + " # https://stock.scholars.harvard.edu/sites/g/files/omnuum5911/files/stock/files/aea_2015_lecture4_har_rev.pdf\n", + " maxlags = int(round(0.75 * len(data)**(1/3)))\n", + " model = sm.OLS(y, X).fit(cov_type='HAC', cov_kwds={'maxlags': maxlags})\n", "\n", " return model\n", "\n", @@ -80,17 +78,7 @@ }, { "cell_type": "code", - "execution_count": 3, - "id": "c472d4de-7e2e-4757-a953-365f1ec659cc", - "metadata": {}, - "outputs": [], - "source": [ - "county_geo = reeds.spatial.get_map('county', source='tiger')" - ] - }, - { - "cell_type": "code", - "execution_count": 4, + "execution_count": 23, "id": "541c9d4f-8d35-4ed5-bfa7-16783de4d23d", "metadata": {}, "outputs": [], @@ -113,7 +101,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 24, "id": "a56f84f6-6fbb-44be-a2c7-ea6f890bea8a", "metadata": {}, "outputs": [], @@ -130,7 +118,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 25, "id": "206b51f8-04ce-447b-909f-3545e9abcc6a", "metadata": {}, "outputs": [], @@ -186,12 +174,14 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "id": "0290ae67-a2ac-4126-b576-026e23c55039", "metadata": {}, "outputs": [], "source": [ "# Export\n", + "outpath = Path('outputs', 'gasreg_degree_day_price_mult_regression_params.csv')\n", + "outpath.parent.mkdir(parents=True, exist_ok=True)\n", "(\n", " regression_params.loc[[\n", " 'beta_CDD',\n", @@ -213,14 +203,7 @@ " .rename_axis('param')\n", " .round(3)\n", " .sort_index(axis=1)\n", - " .to_csv(\n", - " Path(\n", - " reeds_path,\n", - " 'inputs',\n", - " 'fuelprices',\n", - " 'gasreg_degree_day_price_mult_regression_params.csv'\n", - " )\n", - " )\n", + " .to_csv(outpath)\n", ")" ] } diff --git a/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb b/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb index 33853e9..0640ff0 100644 --- a/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb +++ b/aeo_updates/temperature_gas_price_regression/inspect_hub_locations.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "2b4f813c-9374-4cd4-962b-3a70d4b267f1", "metadata": {}, "outputs": [ @@ -17,12 +17,9 @@ "source": [ "import pandas as pd\n", "import geopandas as gpd\n", - "import numpy as np\n", - "import statsmodels.api as sm\n", - "from pathlib import Path\n", "import sys\n", "\n", - "reeds_path = os.path.expanduser('~/Documents/Github/ReEDS/ReEDS/')\n", + "reeds_path = '' # User should specify path to ReEDS repository here\n", "sys.path.append(reeds_path)\n", "import reeds" ] @@ -118,7 +115,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "id": "69c2873c-e224-4ba5-ba68-34030bb8862b", "metadata": {}, "outputs": [ From b6e3101ba795b85de378de1b2840434402ca3db4 Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 12:51:12 -0400 Subject: [PATCH 3/8] Remove intermediate input file --- .../inputs/gasreg_regression_data.csv | 4019 ----------------- 1 file changed, 4019 deletions(-) delete mode 100644 aeo_updates/temperature_gas_price_regression/inputs/gasreg_regression_data.csv diff --git a/aeo_updates/temperature_gas_price_regression/inputs/gasreg_regression_data.csv b/aeo_updates/temperature_gas_price_regression/inputs/gasreg_regression_data.csv deleted file mode 100644 index 4aef73b..0000000 --- a/aeo_updates/temperature_gas_price_regression/inputs/gasreg_regression_data.csv +++ /dev/null @@ -1,4019 +0,0 @@ -year,month,day,New_England_cdd,Mid_Atlantic_cdd,East_North_Central_cdd,West_North_Central_cdd,South_Atlantic_cdd,East_South_Central_cdd,West_South_Central_cdd,Northwest_cdd,California_cdd,Mountain_cdd,Southwest_cdd,New_England_hdd,Mid_Atlantic_hdd,East_North_Central_hdd,West_North_Central_hdd,South_Atlantic_hdd,East_South_Central_hdd,West_South_Central_hdd,Northwest_hdd,California_hdd,Mountain_hdd,Southwest_hdd,California_price,East_North_Central_price,East_South_Central_price,Mid_Atlantic_price,Mountain_price,New_England_price,Northwest_price,South_Atlantic_price,Southwest_price,West_North_Central_price,West_South_Central_price -2014,1,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,46,41,48,54,19,26,17,25.561025160351406,11.0,31.359928862375796,16.605951711579216,4.479746230231703,4.76,4.0,4.98,4.292467648371263,20.47,4.26,4.197584033613445,4.37010752688172,4.77,4.271962307252998 -2014,1,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,49,43,49,60,18,26,24,22.92076887026355,9.0,34.205542556807536,16.7904752168425,4.479746230231703,4.76,4.0,4.98,4.292467648371263,20.47,4.26,4.197584033613445,4.37010752688172,4.77,4.271962307252998 -2014,1,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,57,54,58,52,30,41,27,25.280512580175703,9.0,30.515092351436923,15.316665814737185,4.519971240755957,4.83,4.2,18.82,4.355845488924905,32.6,4.29,4.532733200507154,4.4213970983342294,4.82,4.2953345939699545 -2014,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,56,52,47,44,29,33,18,30.280512580175703,10.0,35.246399436630824,15.132142309473906,4.5843912264995526,10.07,4.14,10.61,4.538525202240199,16.05,4.45,4.566008230452675,4.506407185628742,7.04,4.366706098633203 -2014,1,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,41,37,41,60,19,23,20,30.201281450439254,10.0,47.25069335626249,21.501189320000464,4.5843912264995526,10.07,4.14,10.61,4.538525202240199,16.05,4.45,4.566008230452675,4.506407185628742,7.04,4.366706098633203 -2014,1,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,28,64,72,18,47,40,29.841537740527105,11.0,46.6948620511497,22.97499872210578,4.5843912264995526,10.07,4.14,10.61,4.538525202240199,16.05,4.45,4.566008230452675,4.506407185628742,7.04,4.366706098633203 -2014,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,59,68,61,41,52,34,27.561025160351402,12.0,39.54864512823179,21.027379917895153,4.713929778445363,7.18,4.55,43.05,5.093069666182874,34.25,4.69,5.8563615595491925,5.128052805280528,6.98,4.541233877901978 -2014,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,53,60,57,33,41,26,23.920768870263554,13.0,34.63756004946485,18.07976111368453,4.706405712774398,5.38,4.64,22.21,4.624536453645365,25.4,4.51,4.970377706126208,4.79396559739656,5.44,4.521650623885918 -2014,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,45,50,49,24,31,16,25.0,14.0,33.19763014443235,19.605951711579216,4.56700625,4.72,4.18,5.12,4.3970414572864325,19.3,4.32,4.284524564183835,4.417401215805471,4.73,4.297845973416732 -2014,1,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,43,36,38,39,17,20,9,21.640256290087848,11.0,31.56153664460941,17.895237608421247,4.368592120509849,4.43,3.77,4.06,4.096214689265537,9.09,4.06,3.8920479188527457,4.183245614035087,4.39,4.077694072657744 -2014,1,11,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,25,22,27,32,9,12,9,19.64025629008785,11.0,26.311095449577056,15.658332907368592,4.192216967188886,4.26,3.61,3.79,3.9496901893287437,4.66,3.92,3.7188149748020156,4.041603626133167,4.22,3.9117833418497705 -2014,1,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,24,29,28,13,20,11,22.719487419824297,13.0,26.904420160548227,14.658332907368592,4.192216967188886,4.26,3.61,3.79,3.9496901893287437,4.66,3.92,3.7188149748020156,4.041603626133167,4.22,3.9117833418497705 -2014,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,26,26,29,15,20,9,20.719487419824297,10.0,29.348119172038565,16.842856412631875,4.192216967188886,4.26,3.61,3.79,3.9496901893287437,4.66,3.92,3.7188149748020156,4.041603626133167,4.22,3.9117833418497705 -2014,1,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,25,32,34,13,18,15,20.719487419824297,8.0,29.77960167586158,16.842856412631875,4.413929411764706,4.55,3.99,4.22,4.202374710871241,5.91,4.17,4.062646514497224,4.2790832553788585,4.48,4.145912052117264 -2014,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,29,42,42,18,28,20,21.280512580175703,5.0,29.279491520852122,15.553570515789842,4.540671444737835,4.76,4.26,4.51,4.3199319727891154,7.23,4.27,4.321961843052556,4.397605140186917,4.66,4.315397549843863 -2014,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,32,41,37,24,31,16,23.201281450439254,4.0,30.709963149472852,14.316665814737185,4.5819556585043015,4.81,4.42,4.74,4.3507597535934295,7.02,4.33,4.460046342270771,4.433262316910786,4.72,4.373063773035887 -2014,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,33,44,47,23,31,18,24.481794030614957,4.0,30.97643902482882,14.027379917895155,4.689259135098895,5.12,4.52,4.8,4.512156045265038,6.6,4.47,4.552682534001431,4.5272,4.96,4.478539068756435 -2014,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,36,49,41,26,33,16,23.84153774052711,6.0,30.043718679787506,14.316665814737185,4.544485337531982,5.18,4.48,10.09,4.3987343260188085,21.29,4.35,4.78239729397294,4.458881424252604,5.06,4.355023092712966 -2014,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,38,42,32,23,28,15,25.841537740527105,6.0,28.668506114770434,14.07976111368453,4.544485337531982,5.18,4.48,10.09,4.3987343260188085,21.29,4.35,4.78239729397294,4.458881424252604,5.06,4.355023092712966 -2014,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,32,38,35,17,20,11,24.201281450439254,7.0,30.634137612426233,13.605951711579218,4.544485337531982,5.18,4.48,10.09,4.3987343260188085,21.29,4.35,4.78239729397294,4.458881424252604,5.06,4.355023092712966 -2014,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,45,55,56,19,28,18,25.201281450439257,8.0,30.78257910199517,13.553570515789843,4.544485337531982,5.18,4.48,10.09,4.3987343260188085,21.29,4.35,4.78239729397294,4.458881424252604,5.06,4.355023092712966 -2014,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,58,60,53,34,42,21,25.920768870263554,6.0,34.3313964497957,12.501189320000467,4.64202089634314,6.71,4.9,68.61,4.549110350727117,57.14,4.48,6.767605349945034,4.598538122243226,6.16,4.573868156424581 -2014,1,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,56,61,61,34,43,25,25.280512580175703,10.0,39.26298158142727,16.974998722105777,4.83771506038945,8.99,5.23,85.52,4.794635535307518,81.55,4.65,6.436516549104721,4.833724256292905,7.48,4.899774119196575 -2014,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,55,55,47,36,46,35,24.201281450439254,9.0,35.024340667731025,18.211903423158436,4.97119431891543,6.55,5.49,35.25,5.01465472191116,34.33,4.78,6.169384057971015,4.985547445255475,6.33,5.4058259539526645 -2014,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,48,47,40,30,36,22,23.84153774052711,4.0,29.71455056024329,11.738094021053122,4.893059360730594,10.12,5.46,46.87,4.884439183190293,42.2,4.73,6.971412012644889,4.826579209564929,8.31,5.100218664584148 -2014,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,45,46,36,24,26,13,24.76230661079066,9.0,30.275693629820484,12.605951711579218,4.893059360730594,10.12,5.46,46.87,4.884439183190293,42.2,4.73,6.971412012644889,4.826579209564929,8.31,5.100218664584148 -2014,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,38,58,62,16,30,21,27.561025160351402,10.0,38.0644740999123,14.027379917895155,4.893059360730594,10.12,5.46,46.87,4.884439183190293,42.2,4.73,6.971412012644889,4.826579209564929,8.31,5.100218664584148 -2014,1,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,51,54,67,61,28,46,34,25.280512580175703,9.0,40.307887537764074,15.738094021053122,4.948808593750001,38.93,6.04,80.75,5.02128659197687,71.96,4.83,7.242152435919198,5.074217753800882,34.91,5.5445365786578655 -2014,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,53,58,49,34,48,32,22.92076887026355,7.0,33.02226483299406,16.264284618947812,4.964000631512472,6.66,5.32,23.48,4.876290120883702,29.68,4.76,5.732738319715064,4.905005117707268,5.95,5.128816399286987 -2014,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,50,47,44,34,41,24,25.64025629008785,12.0,29.293260025830843,11.132142309473906,5.2009731543624165,6.44,5.11,9.9,5.0514244326412365,14.84,5.01,5.359964546864614,5.068448098663926,6.02,5.173076749943732 -2014,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,42,43,51,25,31,12,27.359743709912152,15.0,36.28787103786091,11.421428206315937,5.377269938650307,6.62,4.96,6.22,5.28929542645241,10.41,5.25,5.075510204081632,5.2479614052449275,6.28,5.206720858217208 -2014,2,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,32,38,48,19,18,10,29.201281450439254,18.0,40.59681419585484,16.421428206315937,5.224889947437583,6.94,4.89,5.31,5.268861467588022,11.08,5.13,4.961463974300137,5.196316680779001,6.7,4.96832420694864 -2014,2,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,28,43,55,12,18,18,30.561025160351406,21.0,44.018917528571826,23.132142309473906,5.224889947437583,6.94,4.89,5.31,5.268861467588022,11.08,5.13,4.961463974300137,5.196316680779001,6.7,4.96832420694864 -2014,2,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,34,52,55,11,28,28,32.561025160351406,20.0,42.44640427355437,22.132142309473906,5.224889947437583,6.94,4.89,5.31,5.268861467588022,11.08,5.13,4.961463974300137,5.196316680779001,6.7,4.96832420694864 -2014,2,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,41,42,52,55,18,25,23,37.201281450439254,20.0,44.30899382720739,22.895237608421247,6.216683513838748,7.21,4.96,5.5,6.276232718894009,11.74,6.46,5.015274094597269,6.168327157226046,7.2,5.19447362223269 -2014,2,5,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,41,40,47,59,14,26,30,41.201281450439254,18.0,53.43790717887967,23.264284618947812,7.924122371840302,8.68,5.86,6.43,8.235193763919822,22.39,8.25,5.866468205037872,8.074021586109806,9.36,6.160602225949077 -2014,2,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,44,57,65,22,37,38,44.201281450439254,20.0,52.94221096053843,24.738094021053122,20.190938786714245,24.89,8.0,9.97,30.152769784172662,27.48,24.86,8.073477438136827,24.50931939718036,36.23,11.991106214520466 -2014,2,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,48,45,61,61,21,37,35,40.92076887026356,16.0,44.04107955951656,18.316665814737185,7.372579572446555,9.25,6.71,9.84,7.880403114979385,23.61,7.88,7.020752188672503,8.101050705697856,9.03,7.08313623725672 -2014,2,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,48,47,56,56,20,31,25,37.201281450439254,13.0,34.97901876384822,14.369047010526561,6.672266945130056,12.28,5.82,9.4,6.768009444242644,22.06,7.34,6.051119645494831,6.586934573231485,10.87,6.208739191303632 -2014,2,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,46,50,55,19,27,19,33.12205032070281,11.0,33.72195405020211,10.89523760842125,6.672266945130056,12.28,5.82,9.4,6.768009444242644,22.06,7.34,6.051119645494831,6.586934573231485,10.87,6.208739191303632 -2014,2,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,46,58,62,21,31,23,29.561025160351406,9.0,32.90092530904909,10.842856412631875,6.672266945130056,12.28,5.82,9.4,6.768009444242644,22.06,7.34,6.051119645494831,6.586934573231485,10.87,6.208739191303632 -2014,2,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,52,51,61,60,24,36,31,24.64025629008785,9.0,32.79352720661462,12.027379917895153,7.801855704697986,15.99,7.89,21.85,8.30303949903661,27.28,7.73,8.562501512401694,8.107667057444313,15.189999999999998,8.094996781609195 -2014,2,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,52,52,57,51,27,35,26,21.640256290087848,7.0,29.080437132434753,11.553570515789843,6.203341103341103,8.34,7.53,17.5,6.291768569984841,22.69,6.05,8.089151903505465,6.398463966333509,8.28,7.498113534094842 -2014,2,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,45,48,39,24,29,20,20.280512580175703,4.0,22.714260275134528,7.132142309473906,5.442508532423208,7.07,5.86,7.14,5.306639717028801,15.41,5.25,6.013152030217186,5.360056274620146,6.990000000000001,5.80780604853314 -2014,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,34,46,45,20,26,13,21.280512580175703,3.0,23.36082292657153,4.132142309473906,5.390213068181819,7.12,5.39,5.89,5.17057800511509,18.16,5.12,5.388687643898694,5.215926501035196,7.52,5.251909552553416 -2014,2,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7630952989473438,38,36,50,45,20,31,13,23.201281450439254,5.0,20.829990361698034,2.895237608421249,5.5718387609213655,7.37,5.5,7.31,5.323031429537006,22.27,5.26,5.683255738764952,5.43307120085016,7.67,5.481048928427011 -2014,2,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,44,48,43,21,25,8,25.64025629008785,6.0,19.31112381597304,4.132142309473906,5.5718387609213655,7.37,5.5,7.31,5.323031429537006,22.27,5.26,5.683255738764952,5.43307120085016,7.67,5.481048928427011 -2014,2,17,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,46,46,46,33,21,19,4,24.64025629008785,9.0,22.251352753000546,5.132142309473905,5.5718387609213655,7.37,5.5,7.31,5.323031429537006,22.27,5.26,5.683255738764952,5.43307120085016,7.67,5.481048928427011 -2014,2,18,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,48,40,36,26,14,15,4,24.280512580175703,11.0,22.290431540700236,5.132142309473905,5.5718387609213655,7.37,5.5,7.31,5.323031429537006,22.27,5.26,5.683255738764952,5.43307120085016,7.67,5.481048928427011 -2014,2,19,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,42,33,30,29,9,11,4,26.719487419824297,10.0,22.94984612101383,5.895237608421249,5.556185910796166,7.71,5.46,5.66,5.314148148148148,13.67,5.18,5.581088035287631,5.41454802259887,7.39,5.588206546377732 -2014,2,20,0,0,0,0,1,1,4,0.0,0.0,0.0,0.0,32,30,26,27,7,4,2,25.719487419824297,8.0,32.18792326130197,10.605951711579218,5.855019642077696,9.32,5.52,5.86,5.588472775564409,13.88,5.6,5.684756160606582,5.607660818713451,8.31,5.782093401676024 -2014,2,21,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,26,30,36,7,16,13,25.561025160351406,7.0,28.652851906573773,12.316665814737187,6.312210874136377,10.51,5.79,5.98,6.142450558899398,14.66,6.41,5.866057627118645,6.045373226403454,10.82,5.882927995971802 -2014,2,22,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,25,32,38,11,16,10,29.122050320702808,8.0,28.55538594572623,10.369047010526561,7.375222144684811,22.62,6.26,6.66,7.066642289348172,22.08,7.6,6.31732985809441,6.7299173269032035,23.58,6.194416580145356 -2014,2,23,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,26,25,39,44,11,15,6,27.841537740527105,8.0,28.403016999695353,9.369047010526561,7.375222144684811,22.62,6.26,6.66,7.066642289348172,22.08,7.6,6.31732985809441,6.7299173269032035,23.58,6.194416580145356 -2014,2,24,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,34,45,47,12,21,10,26.042819190966362,7.0,24.877330391777566,6.605951711579218,7.375222144684811,22.62,6.26,6.66,7.066642289348172,22.08,7.6,6.31732985809441,6.7299173269032035,23.58,6.194416580145356 -2014,2,25,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,43,41,47,53,16,22,11,22.76230661079066,8.0,28.895413655583024,8.132142309473906,7.03623150887574,23.48,6.1,7.63,6.723218342448464,29.39,7.1,6.315573022312373,6.775668559628291,22.81,6.046821873927468 -2014,2,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,44,54,53,19,31,22,22.92076887026355,12.0,29.721677077087527,8.07976111368453,5.349910581222057,19.47,5.23,13.41,5.1986129334582944,27.75,5.23,6.000038482682793,5.149534206695779,16.18,4.970477874209793 -2014,2,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,49,48,55,56,22,33,24,23.280512580175703,9.0,26.56515555553078,7.895237608421249,5.388615759050807,23.15,5.05,15.0,5.3357831325301195,29.27,5.33,6.198799629229105,5.2141095132743365,21.53,4.829683426443204 -2014,2,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,53,53,47,25,29,14,20.280512580175703,12.0,25.86470769404688,6.895237608421249,5.808957885029204,21.81,4.73,11.64,5.476486104569006,30.29,6.58,5.3370781962506335,5.3327948839412604,19.73,4.588502378892733 -2014,3,1,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,47,44,45,53,19,18,6,26.841537740527105,13.0,32.74051570944252,9.18452350526328,6.2096856581532425,40.21,4.76,6.52,6.841637723106609,30.44,7.13,5.009490566037735,5.824789029535865,38.9,4.94627128403389 -2014,3,2,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,39,39,51,64,12,12,15,27.122050320702808,13.0,35.18200848440995,13.895237608421247,6.2096856581532425,40.21,4.76,6.52,6.841637723106609,30.44,7.13,5.009490566037735,5.824789029535865,38.9,4.94627128403389 -2014,3,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,47,58,61,16,31,35,21.841537740527105,11.0,26.804759184282815,12.316665814737187,6.2096856581532425,40.21,4.76,6.52,6.841637723106609,30.44,7.13,5.009490566037735,5.824789029535865,38.9,4.94627128403389 -2014,3,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,50,49,52,51,26,36,31,19.841537740527105,10.0,22.655772669611707,10.316665814737185,8.264915074309979,32.66,6.89,19.8,9.39518415841584,36.59,8.04,7.599731295253419,8.59963503649635,28.570000000000004,7.450883530785917 -2014,3,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,43,47,44,22,28,24,17.280512580175703,7.0,22.073865258782725,7.842856412631874,6.936824902723735,12.66,7.97,8.56,7.279826464208243,28.7,6.76,8.04761685319289,7.189893095768373,12.25,7.895135918193438 -2014,3,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,45,43,37,22,25,17,17.719487419824297,6.0,18.999182392650443,7.842856412631874,5.462418604651162,9.94,6.07,7.05,5.342496842105263,28.54,5.17,6.37459549071618,5.391347626339969,8.61,6.171346991037132 -2014,3,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,39,35,32,19,19,14,16.0,7.0,21.812725680990397,7.132142309473906,5.010098595757395,7.7,4.73,5.06,4.840712886799843,14.98,4.8,4.86248052407932,4.755673076923077,6.72,4.7851557540848715 -2014,3,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,29,34,36,14,16,14,20.280512580175703,5.0,22.872632930542125,9.553570515789842,4.816053785442853,10.91,4.62,5.03,4.618857262452909,15.81,4.5,4.736628253796095,4.602772277227722,10.09,4.718611960763633 -2014,3,9,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,33,31,36,28,11,16,15,15.640256290087851,4.0,18.557944078891197,8.790475216842498,4.816053785442853,10.91,4.62,5.03,4.618857262452909,15.81,4.5,4.736628253796095,4.602772277227722,10.09,4.718611960763633 -2014,3,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,25,25,19,9,12,9,19.35974370991215,5.0,15.555673721768029,7.605951711579218,4.816053785442853,10.91,4.62,5.03,4.618857262452909,15.81,4.5,4.736628253796095,4.602772277227722,10.09,4.718611960763633 -2014,3,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,18,20,19,5,7,2,21.35974370991215,7.0,22.852193095284676,7.658332907368592,4.870275435638,5.4,4.39,4.55,4.531852770885029,7.25,4.42,4.490182115817475,4.6045360290305855,5.57,4.549898008742108 -2014,3,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,22,32,31,5,9,9,19.280512580175703,6.0,26.60956450751929,10.027379917895153,4.822118683356513,6.18,4.64,4.89,4.67553534518396,8.38,4.47,4.706983129935391,4.620481927710843,5.9,4.646902003379195 -2014,3,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,44,42,24,20,24,14,19.280512580175703,7.0,22.890082097368108,7.5535705157898425,4.806179900055524,5.73,4.71,10.53,4.4945958986731,23.73,4.43,5.289402013025459,4.608234456573327,5.05,4.599094437257438 -2014,3,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,35,29,22,17,18,9,17.280512580175703,7.0,20.875664928882237,7.605951711579218,4.691345029239766,4.84,4.19,4.39,4.243592233009709,8.93,4.25,4.295683440073193,4.343124387855044,4.52,4.3125970086811005 -2014,3,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,24,28,26,10,12,5,17.201281450439254,3.0,22.03763955900918,7.842856412631874,4.606753121998079,5.05,4.22,4.95,4.22486463257413,20.14,4.19,4.396244421558531,4.27985606060606,4.83,4.3264329544311435 -2014,3,16,0,0,0,0,1,0,1,0.0,2.0,0.0,0.0,35,35,41,37,13,13,8,18.201281450439254,1.0,19.71979248901046,7.790475216842498,4.606753121998079,5.05,4.22,4.95,4.22486463257413,20.14,4.19,4.396244421558531,4.27985606060606,4.83,4.3264329544311435 -2014,3,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,43,40,40,33,19,24,16,23.719487419824297,5.0,17.194931642909868,6.369047010526561,4.606753121998079,5.05,4.22,4.95,4.22486463257413,20.14,4.19,4.396244421558531,4.27985606060606,4.83,4.3264329544311435 -2014,3,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,34,31,28,19,19,8,23.280512580175703,7.0,28.685165343679795,7.369047010526562,4.917058823529412,4.96,4.41,4.67,4.421700493691716,13.95,4.41,4.521517578994215,4.566548089591567,4.78,4.483771832032701 -2014,3,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,31,27,27,15,14,8,22.64025629008785,6.0,26.99213449323782,9.553570515789842,4.7377655889145505,5.02,4.34,4.48,4.395742211362248,6.89,4.4,4.404604012671595,4.469016393442622,4.83,4.388372889960656 -2014,3,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,24,27,23,10,14,7,25.0,6.0,22.78433970034631,8.369047010526561,4.709423929098966,4.96,4.26,4.34,4.399294585196225,5.39,4.36,4.3448837714534,4.519721463681049,4.69,4.359019457245264 -2014,3,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,26,25,23,11,13,4,25.280512580175703,8.0,24.933971602798252,5.421428206315937,4.7620606644198356,4.77,4.16,4.23,4.388900592495062,5.32,4.45,4.245274587596576,4.470110120608285,4.66,4.305845374830184 -2014,3,22,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,27,22,28,37,7,10,4,24.201281450439254,8.0,27.374291946529276,6.369047010526561,4.692333333333333,5.72,4.24,4.44,4.4267862838915475,8.16,4.41,4.324197888283379,4.4569676366603215,5.82,4.309447592067989 -2014,3,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,31,39,41,11,16,10,20.92076887026355,8.0,25.07753888130322,6.553570515789842,4.692333333333333,5.72,4.24,4.44,4.4267862838915475,8.16,4.41,4.324197888283379,4.4569676366603215,5.82,4.309447592067989 -2014,3,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7630952989473438,43,41,40,39,18,22,13,15.920768870263554,6.0,23.68154364490625,4.842856412631874,4.692333333333333,5.72,4.24,4.44,4.4267862838915475,8.16,4.41,4.324197888283379,4.4569676366603215,5.82,4.309447592067989 -2014,3,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7630952989473438,42,39,41,39,19,26,13,18.64025629008785,8.0,19.219706727707617,5.316665814737187,4.780305973773676,5.92,4.41,5.06,4.528126410835214,12.56,4.44,4.53494405072734,4.5710894552723635,5.96,4.394455768979486 -2014,3,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,38,40,32,23,28,13,21.35974370991215,12.0,18.584312142427464,5.895237608421249,4.967117782909931,6.18,4.59,5.48,4.690117924528302,15.68,4.78,4.661401823510258,4.710061728395062,6.2,4.460558793715155 -2014,3,27,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,36,35,30,26,18,17,3,20.719487419824297,12.0,22.46983596208047,7.947618804210625,4.864822842851187,5.15,4.25,4.48,4.53994404029099,7.27,4.58,4.342281141534902,4.6243678160919535,5.03,4.3333777885548015 -2014,3,28,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,27,25,23,30,11,10,2,21.0,10.0,22.329589433705674,8.421428206315937,4.755641025641026,4.8,4.01,4.08,4.384240619416319,5.0,4.38,4.133741223671013,4.535223073456512,4.75,4.319583691514183 -2014,3,29,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,22,22,28,26,5,10,5,20.0,8.0,18.276575775948125,6.369047010526561,4.745673003802281,4.69,3.97,4.07,4.398095238095237,4.89,4.4,4.1047881176967485,4.524766355140187,4.58,4.40089118378275 -2014,3,30,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,23,26,18,11,15,5,20.719487419824297,11.0,16.60476515028649,4.4214282063159365,4.745673003802281,4.69,3.97,4.07,4.398095238095237,4.89,4.4,4.1047881176967485,4.524766355140187,4.58,4.40089118378275 -2014,3,31,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,28,23,20,14,8,11,2,21.438974839648594,14.0,22.503096153788523,6.421428206315937,4.745673003802281,4.69,3.97,4.07,4.398095238095237,4.89,4.4,4.1047881176967485,4.524766355140187,4.58,4.40089118378275 -2014,4,1,0,0,0,0,0,0,4,0.0,0.0,0.0,0.0,23,21,19,30,6,5,1,20.438974839648594,17.0,23.861355023009185,6.947618804210624,4.796866666666667,4.74,4.22,4.28,4.366151029748284,6.09,4.4,4.294678751258812,4.479579196217495,4.83,4.3478451906659075 -2014,4,2,0,0,0,0,1,1,7,0.0,0.0,0.0,0.0,24,20,22,28,4,2,0,18.359743709912152,16.0,24.94292562644607,10.0,4.773269715520345,4.7,4.17,4.27,4.374784,5.32,4.34,4.234263959390863,4.4960195936139336,4.68,4.280444383860415 -2014,4,3,0,0,0,0,2,3,9,0.0,0.0,0.0,0.0,24,18,23,24,3,1,0,20.0,14.0,25.706313920658985,14.18452350526328,4.721802575107296,4.73,4.23,4.3,4.3814844533600805,5.12,4.35,4.284738918542586,4.473326141675656,4.68,4.314026966916876 -2014,4,4,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,25,22,20,27,3,3,6,20.0,14.0,24.23805135265543,12.369047010526561,4.808251231527094,4.79,4.29,4.36,4.4522240709927905,5.21,4.39,4.3574262485482,4.557144495412845,4.74,4.397253641254428 -2014,4,5,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,22,22,25,24,5,13,8,20.0,12.0,21.25481993506674,9.89523760842125,4.809703187980945,4.69,4.25,4.31,4.375988315481986,4.85,4.33,4.336572593289432,4.516659981768459,4.61,4.40984949832776 -2014,4,6,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,22,22,23,20,9,12,9,15.280512580175703,7.0,20.25285150233521,8.07976111368453,4.809703187980945,4.69,4.25,4.31,4.375988315481986,4.85,4.33,4.336572593289432,4.516659981768459,4.61,4.40984949832776 -2014,4,7,0,0,0,0,4,0,0,0.0,1.0,0.0,0.7630952989473438,22,23,21,17,9,10,7,8.640256290087851,1.0,17.989102494897708,5.316665814737187,4.809703187980945,4.69,4.25,4.31,4.375988315481986,4.85,4.33,4.336572593289432,4.516659981768459,4.61,4.40984949832776 -2014,4,8,0,0,0,0,3,0,0,0.0,3.0,0.39293870495763056,3.0523811957893754,19,18,17,18,7,11,6,11.920768870263554,1.0,13.132610880025268,3.605951711579218,4.81381810733306,4.71,4.41,4.43,4.39757608115323,4.83,4.33,4.456434571175951,4.589050960118168,4.61,4.480684400110834 -2014,4,9,0,0,0,0,1,0,0,0.0,3.0,0.5894080574364459,3.8154764947367195,21,19,18,12,6,9,3,14.280512580175701,1.0,11.10587677149711,1.8952376084212492,4.794492519207441,4.7,4.46,4.56,4.354436958614052,5.26,4.31,4.505853170634127,4.579414381022979,4.55,4.494494101318528 -2014,4,10,0,0,0,0,1,0,1,0.0,1.0,0.7858774099152611,3.8154764947367195,22,18,13,14,6,6,1,15.280512580175703,1.0,12.455920467595295,1.421428206315937,4.848971820258949,4.67,4.44,4.48,4.425162023877204,4.98,4.39,4.479027050610821,4.644329513781357,4.61,4.5465491882891635 -2014,4,11,0,0,0,0,2,0,2,0.0,0.0,0.7858774099152611,4.578571793684063,16,14,13,11,4,4,0,14.280512580175701,1.0,10.75370831385612,1.658332907368593,4.846282260699119,4.61,4.24,4.25,4.462656926406926,4.64,4.43,4.322187839305103,4.624184100418411,4.55,4.477702623906706 -2014,4,12,0,0,0,0,3,1,4,0.0,0.0,0.39293870495763056,2.2892858968420313,14,12,10,9,2,1,0,14.640256290087851,6.0,12.610412781242884,2.6583329073685933,4.959729729729729,4.74,3.98,3.79,4.504077312471237,4.18,4.48,4.158710908823961,4.668435639028859,4.71,4.5508860323654305 -2014,4,13,0,0,0,0,3,2,4,0.0,0.0,0.19646935247881528,0.7630952989473438,17,8,9,14,1,0,0,12.0,6.0,21.43112182544658,2.895237608421249,4.959729729729729,4.74,3.98,3.79,4.504077312471237,4.18,4.48,4.158710908823961,4.668435639028859,4.71,4.5508860323654305 -2014,4,14,0,0,0,0,4,1,2,0.0,0.0,0.0,0.7630952989473438,12,6,15,29,1,2,8,12.0,2.0,24.6652673274945,6.26428461894781,4.959729729729729,4.74,3.98,3.79,4.504077312471237,4.18,4.48,4.158710908823961,4.668435639028859,4.71,4.5508860323654305 -2014,4,15,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7630952989473438,14,11,31,29,3,18,14,16.35974370991215,2.0,19.16043692055799,5.316665814737187,4.817834549878345,4.88,4.4,4.33,4.494728789986092,5.21,4.47,4.444354066985646,4.606716016150741,4.82,4.55948992248062 -2014,4,16,0,0,0,0,1,0,0,0.0,0.0,0.39293870495763056,1.5261905978946877,29,29,27,25,14,16,11,17.64025629008785,2.0,19.17464876373043,3.605951711579218,4.876509357200976,4.9,4.54,4.73,4.538068965517241,6.7,4.49,4.609316888045541,4.646336441336441,4.85,4.584754942681508 -2014,4,17,0,0,0,0,2,0,0,0.0,0.0,0.5894080574364459,2.2892858968420313,28,25,19,23,11,11,9,17.719487419824297,4.0,15.61561533159794,3.605951711579218,4.874030206677265,4.82,4.41,4.52,4.485151515151515,5.5,4.47,4.489348974846756,4.618853868194843,4.77,4.522762475696695 -2014,4,18,0,0,0,0,2,0,0,0.0,0.0,0.19646935247881528,0.7630952989473438,27,23,16,18,11,9,3,16.0,4.0,12.819592857885121,2.895237608421249,4.755128075069744,4.6,3.99,3.7,4.343992690726359,4.34,4.3,4.0981869186475715,4.482499506416585,4.53,4.447609181871689 -2014,4,19,0,0,0,0,2,0,1,0.0,0.0,0.19646935247881528,0.7630952989473438,20,17,16,12,8,4,1,18.359743709912152,4.0,11.836289792495283,4.605951711579218,4.755128075069744,4.6,3.99,3.7,4.343992690726359,4.34,4.3,4.0981869186475715,4.482499506416585,4.53,4.447609181871689 -2014,4,20,0,0,0,0,1,0,1,0.0,0.0,0.5894080574364459,2.2892858968420313,22,17,10,6,6,2,1,14.640256290087851,2.0,11.401690609322033,2.895237608421249,4.755128075069744,4.6,3.99,3.7,4.343992690726359,4.34,4.3,4.0981869186475715,4.482499506416585,4.53,4.447609181871689 -2014,4,21,0,0,0,0,1,0,3,0.0,0.0,0.9823467623940764,3.8154764947367195,17,14,7,7,4,2,0,15.0,2.0,11.488948431216334,1.421428206315937,4.755128075069744,4.6,3.99,3.7,4.343992690726359,4.34,4.3,4.0981869186475715,4.482499506416585,4.53,4.447609181871689 -2014,4,22,0,0,0,0,1,1,5,0.0,0.0,0.7858774099152611,5.578571793684063,11,11,12,12,3,2,0,19.07923112973645,7.0,9.285109879360576,0.4738094021053123,4.962953367875649,4.78,4.46,4.36,4.574139420111043,4.58,4.51,4.514085964446803,4.769382967873534,4.69,4.67197656138345 -2014,4,23,0,0,0,0,2,1,6,0.0,0.0,0.0,2.5261905978946873,15,16,20,13,4,6,0,20.719487419824297,8.0,14.632877503238612,1.2369047010526562,4.9212371134020625,4.78,4.49,4.38,4.541326808047852,4.63,4.48,4.52626772829062,4.696677172444845,4.7,4.642212210866057 -2014,4,24,0,0,0,0,3,1,5,0.0,0.0,0.0,3.0523811957893754,16,16,17,13,5,4,0,18.359743709912152,6.0,14.88595454281559,2.1845235052632805,4.95132530120482,4.8,4.54,4.4,4.6141211225997045,4.82,4.59,4.58086428744841,4.744641909814324,4.71,4.691879606879607 -2014,4,25,0,0,0,0,4,2,6,0.0,0.0,0.0,2.2892858968420313,17,16,12,10,4,3,1,19.07923112973645,10.0,12.701043695192133,2.1845235052632805,5.075790013679891,4.81,4.36,4.09,4.688616517622305,4.58,4.69,4.422180070814366,4.8508781645569625,4.74,4.687774371551196 -2014,4,26,0,0,0,0,4,1,7,0.0,0.0,0.0,0.0,20,13,13,9,2,2,0,20.438974839648594,13.0,15.55738908721747,4.236904701052656,4.920523809523809,4.7,4.06,3.75,4.523625730994152,4.33,4.52,4.225842806105878,4.635953428201811,4.63,4.584529542695265 -2014,4,27,0,0,0,1,5,2,11,0.0,0.0,0.0,0.0,20,16,15,10,2,1,0,20.719487419824297,11.0,20.415393251292883,8.658332907368592,4.920523809523809,4.7,4.06,3.75,4.523625730994152,4.33,4.52,4.225842806105878,4.635953428201811,4.63,4.584529542695265 -2014,4,28,0,0,0,0,6,4,10,0.0,0.0,0.0,0.0,17,16,14,13,4,1,0,17.0,5.0,20.970101261064023,4.369047010526561,4.920523809523809,4.7,4.06,3.75,4.523625730994152,4.33,4.52,4.225842806105878,4.635953428201811,4.63,4.584529542695265 -2014,4,29,0,0,0,0,6,3,5,0.0,2.0,0.0,0.7630952989473438,21,18,9,19,4,0,2,10.0,1.0,20.888410013323842,5.316665814737187,4.934558898521163,4.8,4.52,4.43,4.630155844155844,5.04,4.57,4.575839750260145,4.770154346060114,4.76,4.671269819193324 -2014,4,30,0,0,0,0,6,1,1,0.0,4.0,0.0,1.5261905978946877,22,17,13,22,2,4,5,4.280512580175702,0.0,18.370482694999982,5.553570515789842,5.014979641693811,4.87,4.45,4.35,4.617708333333334,4.86,4.56,4.5356864020819785,4.8031789568345316,4.84,4.7075114613180515 -2014,5,1,0,0,0,0,6,0,0,1.079231129736447,6.0,0.19646935247881528,3.0523811957893754,12,7,18,20,1,9,7,1.0,0.0,15.034151049873769,4.07976111368453,5.024583333333333,4.9,4.37,4.24,4.6518081918081915,4.55,4.56,4.464671258609894,4.787534657174972,4.82,4.6780307729007635 -2014,5,2,0,0,0,0,3,0,0,0.0,7.0,0.7858774099152611,3.8154764947367195,10,10,16,14,3,9,3,5.6402562900878515,0.0,9.60884559013708,2.605951711579218,5.075634178905207,4.88,4.31,4.11,4.636255364806867,4.4,4.55,4.400788546255506,4.809928003031451,4.8,4.690206053716072 -2014,5,3,0,0,0,0,3,0,3,0.0,5.0,1.375285467351707,6.104762391578751,12,11,11,10,2,5,0,13.359743709912149,1.0,6.589431196609581,0.9476188042106246,4.899866828087168,4.79,4.13,3.9,4.525864909390444,4.11,4.46,4.223490148159462,4.662994117647059,4.69,4.620521419828642 -2014,5,4,0,0,0,1,3,2,6,0.0,1.0,1.9646935247881527,7.867857690526095,12,12,12,10,1,1,0,15.0,2.0,5.309792058984262,0.23690470105265615,4.899866828087168,4.79,4.13,3.9,4.525864909390444,4.11,4.46,4.223490148159462,4.662994117647059,4.69,4.620521419828642 -2014,5,5,0,0,0,2,4,4,8,0.0,0.0,1.375285467351707,7.341667092631408,11,11,14,7,3,0,0,14.719487419824297,6.0,6.918107260243143,0.4738094021053123,4.899866828087168,4.79,4.13,3.9,4.525864909390444,4.11,4.46,4.223490148159462,4.662994117647059,4.69,4.620521419828642 -2014,5,6,0,0,0,3,5,5,9,0.0,0.0,0.0,3.2892858968420313,14,11,11,6,1,0,0,14.719487419824297,10.0,10.582989933832419,1.2369047010526562,5.003847736625514,4.78,4.32,4.09,4.569899175068745,4.9,4.51,4.3670171719313124,4.746328958162428,4.67,4.641036092097075 -2014,5,7,0,0,1,4,6,5,10,0.0,0.0,0.0,0.0,14,12,6,4,2,0,0,13.079231129736447,9.0,14.806352093325025,5.0,5.084246679316888,4.81,4.36,4.05,4.5848545258620685,4.42,4.52,4.4620098039215685,4.77954089388872,4.69,4.683095296724945 -2014,5,8,0,0,4,4,8,7,9,0.0,0.0,0.0,0.0,13,8,1,5,0,0,0,16.079231129736446,7.0,16.786921390862243,5.132142309473905,5.015208443271768,4.77,4.44,4.15,4.584872241579559,4.45,4.5,4.492917184265011,4.786274930960418,4.64,4.680163212435233 -2014,5,9,0,0,3,1,8,4,9,0.0,0.0,0.19646935247881528,0.7630952989473438,12,5,1,8,0,0,0,16.079231129736446,5.0,14.415150220278655,2.895237608421249,4.985378486055777,4.7,4.29,3.95,4.508893879842785,4.16,4.43,4.344092402014452,4.7023022551329525,4.57,4.604539380701529 -2014,5,10,1,2,0,1,9,6,9,0.0,0.0,0.5894080574364459,3.8154764947367195,1,0,3,5,0,0,0,16.719487419824297,6.0,14.51105331119128,0.7107141031579685,4.826001964636543,4.53,3.93,3.72,4.325992456388496,3.9,4.28,4.033058066493029,4.502325518728105,4.41,4.4538401149933655 -2014,5,11,1,1,2,3,9,8,12,0.0,0.0,0.0,1.2369047010526562,1,1,1,4,0,0,0,12.719487419824297,4.0,19.275948300117584,1.2369047010526562,4.826001964636543,4.53,3.93,3.72,4.325992456388496,3.9,4.28,4.033058066493029,4.502325518728105,4.41,4.4538401149933655 -2014,5,12,0,1,5,3,10,10,12,0.0,1.0,0.0,0.7630952989473438,1,0,1,8,0,0,0,8.0,1.0,21.311227872555843,4.605951711579218,4.826001964636543,4.53,3.93,3.72,4.325992456388496,3.9,4.28,4.033058066493029,4.502325518728105,4.41,4.4538401149933655 -2014,5,13,0,2,5,0,11,10,3,0.0,5.0,0.0,2.2892858968420313,10,1,2,14,0,0,3,3.640256290087851,0.0,18.556662433545444,5.790475216842498,4.96640943877551,4.54,3.95,3.52,4.370148791072536,4.09,4.28,4.051966292134831,4.582755905511811,4.47,4.393331879633668 -2014,5,14,0,1,1,0,9,5,1,1.438974839648596,9.0,0.7858774099152611,4.578571793684063,9,4,9,16,0,0,4,1.0,0.0,15.012555371100413,4.5535705157898425,4.840245003223727,4.54,3.73,3.34,4.304418604651162,3.83,4.22,3.8505155820348307,4.548392626131953,4.47,4.37090046679717 -2014,5,15,0,1,0,0,7,0,0,0.719487419824298,10.0,1.375285467351707,7.630952989473439,3,1,13,18,0,7,3,0.0,0.0,10.649991291446735,2.3690470105265615,4.819584164055825,4.51,3.68,3.24,4.295604703247481,4.09,4.24,3.8379160636758325,4.508731582319026,4.47,4.32606693877551 -2014,5,16,0,0,0,0,2,0,2,0.0,9.0,1.9646935247881527,9.157143587368125,2,3,20,19,2,9,1,5.3597437099121485,0.0,8.261941782258567,0.7107141031579685,4.749600448095594,4.5,3.72,3.16,4.268967774420947,4.04,4.17,3.7240337654507085,4.462959322033898,4.43,4.277390221114917 -2014,5,17,0,0,0,0,2,0,4,0.0,5.0,1.9646935247881527,11.394048288420782,2,10,17,15,5,9,1,8.0,0.0,6.612505482485562,0.23690470105265615,4.731280891054647,4.46,3.48,3.02,4.257443137254902,3.4,4.2,3.6051605311817108,4.448998197270152,4.37,4.32888857426023 -2014,5,18,0,0,0,0,2,1,6,0.0,1.0,2.1694840584687873,10.867857690526094,9,12,12,9,5,6,1,11.719487419824297,1.0,5.057164003001681,0.23690470105265615,4.731280891054647,4.46,3.48,3.02,4.257443137254902,3.4,4.2,3.6051605311817108,4.448998197270152,4.37,4.32888857426023 -2014,5,19,0,0,0,1,3,2,8,0.0,0.0,1.74834448625216,9.341667092631408,10,10,9,4,4,3,0,9.359743709912149,4.0,5.840279348364642,0.23690470105265615,4.731280891054647,4.46,3.48,3.02,4.257443137254902,3.4,4.2,3.6051605311817108,4.448998197270152,4.37,4.32888857426023 -2014,5,20,0,0,2,4,4,4,11,0.0,0.0,0.19646935247881528,6.8154764947367195,6,6,2,1,1,0,0,8.359743709912149,7.0,5.910340443448313,0.23690470105265615,4.732363636363636,4.51,3.75,3.19,4.220495743615423,3.69,4.23,3.825317990596387,4.487727981293842,4.37,4.393597508219415 -2014,5,21,0,0,5,5,6,7,12,0.0,0.0,0.0,5.289285896842031,7,4,0,3,0,0,0,8.0,5.0,5.851790738518073,0.23690470105265615,4.755229681978799,4.52,3.71,3.22,4.291086330935252,3.75,4.24,3.8226292134831463,4.51121653543307,4.43,4.422526096033403 -2014,5,22,0,1,1,3,9,8,11,0.0,0.0,0.19646935247881528,3.5261905978946877,9,3,2,3,0,0,0,3.0,3.0,4.341596294888689,0.23690470105265615,4.85386855862584,4.57,3.81,3.28,4.303218066337332,3.68,4.29,3.9655617834394907,4.5323245350929815,4.49,4.461760379208892 -2014,5,23,0,0,0,2,9,8,10,0.0,1.0,0.39293870495763056,4.052381195789375,8,5,5,2,0,0,0,6.0,1.0,4.445773452301208,0.4738094021053123,4.767566425120773,4.5,3.74,3.17,4.276658576051781,3.65,4.24,3.8713289555972485,4.420499139414802,4.44,4.377687211403332 -2014,5,24,0,0,0,2,8,7,11,0.0,2.0,0.7858774099152611,3.0523811957893754,7,4,4,0,0,0,0,7.280512580175702,1.0,5.188906606463928,0.9476188042106246,4.628609523809525,4.38,3.33,2.96,4.179887450759708,3.24,4.14,3.55209691438505,4.283014705882353,4.3,4.2906312611499935 -2014,5,25,0,0,1,5,8,7,10,0.0,5.0,1.375285467351707,6.867857690526095,6,2,1,0,0,0,0,9.561025160351404,0.0,5.272625180313051,1.658332907368593,4.628609523809525,4.38,3.33,2.96,4.179887450759708,3.24,4.14,3.55209691438505,4.283014705882353,4.3,4.2906312611499935 -2014,5,26,0,3,5,7,9,9,9,0.0,6.0,2.570743944628237,9.92023888631547,1,0,0,0,0,0,0,8.920768870263553,0.0,3.491404738080242,0.9476188042106246,4.628609523809525,4.38,3.33,2.96,4.179887450759708,3.24,4.14,3.55209691438505,4.283014705882353,4.3,4.2906312611499935 -2014,5,27,2,6,8,6,11,10,8,0.0,6.0,3.4870253707791132,13.683334185262813,1,0,0,0,0,0,0,11.0,0.0,1.7843654879790252,0.23690470105265615,4.628609523809525,4.38,3.33,2.96,4.179887450759708,3.24,4.14,3.55209691438505,4.283014705882353,4.3,4.2906312611499935 -2014,5,28,0,1,5,6,12,9,9,0.0,4.0,4.480934959199434,14.394048288420782,14,4,0,0,0,0,0,13.719487419824299,1.0,1.4318856969452736,0.0,4.736241610738255,4.51,3.78,3.27,4.270150425114454,3.76,4.21,3.8386581808538844,4.436475409836065,4.43,4.344195455385183 -2014,5,29,0,0,3,7,8,8,10,0.0,3.0,2.583187104678204,13.867857690526094,13,8,1,0,1,0,0,11.0,0.0,2.25516423481159,0.0,4.878406249999999,4.61,3.86,3.4,4.3663030698889616,4.49,4.32,3.9214988687782806,4.576830203142967,4.56,4.45204625346901 -2014,5,30,0,0,3,8,8,10,12,0.0,3.0,2.747333611049875,13.867857690526094,9,3,0,0,0,0,0,8.640256290087851,1.0,3.3075518803609962,0.0,4.945497044599677,4.6,3.78,3.39,4.45950598023921,3.65,4.42,3.8515968960588114,4.616200972447325,4.53,4.5007730673316715 -2014,5,31,0,0,5,8,8,10,12,0.0,3.0,2.988646193191326,15.630952989473439,9,4,0,0,0,0,0,7.0,1.0,2.2035310517597515,0.0,4.945497044599677,4.6,3.78,3.39,4.45950598023921,3.65,4.42,3.8515968960588114,4.616200972447325,4.53,4.5007730673316715 -2014,6,1,0,0,7,9,7,10,14,0.0,3.0,2.346073724890425,14.578571793684063,6,3,0,0,0,0,0,6.3597437099121485,0.0,2.534302116614045,0.0,4.81134059687352,4.52,3.73,3.27,4.359963931469792,3.58,4.3,3.8679782790309107,4.495274115197779,4.47,4.402724742891712 -2014,6,2,0,1,8,6,6,9,14,0.0,2.0,2.54254307736924,15.104762391578749,2,1,0,0,0,0,0,4.0,1.0,2.058861038323001,0.0,4.81134059687352,4.52,3.73,3.27,4.359963931469792,3.58,4.3,3.8679782790309107,4.495274115197779,4.47,4.402724742891712 -2014,6,3,2,6,9,6,8,11,15,0.0,3.0,4.38985338894448,16.578571793684063,1,0,0,1,0,0,0,7.0,0.0,1.0854966659727239,0.0,4.974500390320062,4.64,3.81,3.3,4.477001023541454,4.14,4.41,3.958455661664393,4.655969534787979,4.59,4.481378219611388 -2014,6,4,0,4,2,6,11,12,16,0.0,3.0,2.747333611049875,15.815476494736718,4,1,2,0,0,0,0,6.640256290087851,0.0,1.2314549459041677,0.0,5.103754928723082,4.75,4.11,3.59,4.582992441084927,3.92,4.54,4.1739744552967695,4.746056338028169,4.71,4.582386363636363 -2014,6,5,0,1,0,4,11,10,16,0.0,5.0,2.7390124298480556,14.578571793684063,4,1,2,0,0,0,0,6.0,0.0,2.2745294924443282,0.0,5.0299901607084285,4.73,3.92,3.42,4.538832891246685,5.12,4.49,4.019923002887392,4.706468965517241,4.65,4.539535648994515 -2014,6,6,0,0,1,5,10,10,16,0.0,5.0,3.140272316007506,14.578571793684063,2,2,1,1,0,0,0,5.6402562900878515,0.0,2.3085042106673956,0.0,5.037251861042185,4.74,4.04,3.35,4.576841839312784,4.02,4.5,4.116876239025771,4.763150543197103,4.66,4.580043929010719 -2014,6,7,2,1,2,3,10,11,16,0.0,5.0,2.9636826495858677,13.341667092631408,0,0,0,2,0,0,0,4.6402562900878515,0.0,4.556870964888883,0.0,5.02731320754717,4.74,3.73,3.15,4.546033153430995,3.35,4.47,3.8826653102746693,4.702253851306096,4.66,4.586946668308904 -2014,6,8,4,3,1,1,11,9,13,0.0,8.0,3.151830820862864,13.630952989473439,0,0,1,3,0,0,0,3.280512580175702,0.0,4.70039872558913,0.23690470105265615,5.02731320754717,4.74,3.73,3.15,4.546033153430995,3.35,4.47,3.8826653102746693,4.702253851306096,4.66,4.586946668308904 -2014,6,9,2,1,1,1,12,8,11,0.0,10.0,3.6585311796524707,14.92023888631547,0,1,1,2,0,0,0,3.640256290087851,0.0,5.37005580513415,0.23690470105265615,5.02731320754717,4.74,3.73,3.15,4.546033153430995,3.35,4.47,3.8826653102746693,4.702253851306096,4.66,4.586946668308904 -2014,6,10,3,5,1,1,14,8,11,0.0,7.0,4.272902780694374,15.683334185262813,0,0,1,1,0,0,0,7.280512580175702,0.0,2.7949664353051373,0.23690470105265615,5.069200710479574,4.71,3.97,3.4,4.565086206896551,3.79,4.49,4.115537780803268,4.774915984489444,4.64,4.593531619440796 -2014,6,11,0,2,3,3,12,8,13,0.0,5.0,3.533211020965136,15.867857690526094,2,1,1,1,0,0,0,5.280512580175702,0.0,1.7522503368596645,0.0,4.97893448524118,4.62,3.83,3.37,4.4842383209207854,4.99,4.42,4.008849862258954,4.687734248788368,4.56,4.50323458073458 -2014,6,12,0,1,4,1,11,8,13,0.0,4.0,3.7972563770899046,15.630952989473439,4,1,0,2,0,0,0,7.438974839648596,0.0,2.947529903722222,0.0,4.948478561549101,4.57,3.8,3.25,4.439309231762428,4.5,4.41,3.9348642235697335,4.655405183052242,4.51,4.456335559265442 -2014,6,13,0,5,1,0,11,7,13,0.0,3.0,3.9917572968371884,16.63095298947344,3,0,2,3,0,0,0,11.719487419824297,0.0,1.6749236808040275,0.0,4.8945454545454545,4.58,3.63,3.12,4.410144356955381,3.99,4.39,3.8133400402414486,4.631499292786422,4.51,4.431802552286423 -2014,6,14,1,2,0,2,10,6,14,0.0,3.0,2.1412831912097903,16.104762391578753,1,2,3,2,0,0,0,10.719487419824297,0.0,5.375642660912912,0.0,4.949808135072909,4.7,3.73,3.14,4.498913755458515,4.53,4.49,3.9093729023140784,4.690337078651686,4.65,4.599102257636122 -2014,6,15,0,1,3,4,10,10,16,0.0,2.0,2.1694840584687873,11.578571793684063,1,1,0,1,0,0,0,10.719487419824297,1.0,6.0196504549112655,0.23690470105265615,4.949808135072909,4.7,3.73,3.14,4.498913755458515,4.53,4.49,3.9093729023140784,4.690337078651686,4.65,4.599102257636122 -2014,6,16,0,3,9,7,13,12,17,0.0,1.0,2.54254307736924,13.341667092631408,0,0,0,0,0,0,0,13.079231129736447,1.0,3.9481503402259963,0.0,4.949808135072909,4.7,3.73,3.14,4.498913755458515,4.53,4.49,3.9093729023140784,4.690337078651686,4.65,4.599102257636122 -2014,6,17,5,9,13,10,14,14,18,0.0,0.0,2.719132743790878,14.341667092631408,0,0,0,0,0,0,0,12.438974839648596,1.0,5.824413751276052,0.0,5.045644264780192,4.77,3.96,3.67,4.54742944317315,5.35,4.5,4.171536129358262,4.782412261217237,4.69,4.645262393317596 -2014,6,18,8,12,11,11,15,15,18,0.0,1.0,2.121403505152613,13.341667092631408,0,0,0,0,0,0,0,8.0,0.0,7.707264020683633,0.0,4.977294818890417,4.84,4.11,3.81,4.540664819944598,6.07,4.51,4.2201173020527865,4.692366803278689,4.74,4.652834467120181 -2014,6,19,6,6,8,9,14,15,17,0.0,4.0,1.5717548198305222,12.341667092631406,0,0,0,0,0,0,0,4.0,0.0,4.6983224029780395,0.0,5.017702523240373,4.85,3.98,3.49,4.616089139987445,5.17,4.52,4.164809661328433,4.748996539792388,4.76,4.679539380153541 -2014,6,20,0,2,7,10,13,15,16,0.0,7.0,3.316861982429143,15.630952989473439,3,1,1,0,0,0,0,7.280512580175702,0.0,1.0076160636879257,0.0,5.028192705498095,4.75,3.35,2.83,4.552544045102184,4.77,4.47,3.5800522388059703,4.692711111111111,4.69,4.594165766321963 -2014,6,21,0,1,6,10,13,14,16,0.0,7.0,4.634403294739469,17.394048288420784,5,1,0,0,0,0,0,7.280512580175702,0.0,0.593913017478509,0.0,4.830022153300842,4.6,3.09,2.43,4.398371873525248,2.86,4.33,3.350131744040151,4.558135593220339,4.51,4.4677736667517225 -2014,6,22,0,2,7,8,13,14,16,0.0,5.0,4.776365815830442,17.341667092631408,3,1,0,0,0,0,0,3.280512580175702,0.0,1.0057738509640706,0.0,4.830022153300842,4.6,3.09,2.43,4.398371873525248,2.86,4.33,3.350131744040151,4.558135593220339,4.51,4.4677736667517225 -2014,6,23,0,3,8,7,12,13,15,0.640256290087851,5.0,4.31227791708133,15.867857690526094,1,0,0,0,0,0,0,2.280512580175702,0.0,2.1349635484841993,0.0,4.830022153300842,4.6,3.09,2.43,4.398371873525248,2.86,4.33,3.350131744040151,4.558135593220339,4.51,4.4677736667517225 -2014,6,24,2,6,9,7,12,12,15,0.0,6.0,5.094918003343052,15.104762391578749,0,0,0,0,0,0,0,2.359743709912149,0.0,1.195638014957245,0.0,4.820926251097454,4.55,3.26,2.89,4.408304828973843,3.37,4.3,3.484454877412624,4.588375611927014,4.45,4.4135314266141465 -2014,6,25,7,9,7,6,15,13,13,0.0,5.0,6.169178300780397,16.104762391578753,0,0,0,1,0,0,0,2.438974839648596,0.0,0.1831948549072785,0.0,4.872988980716253,4.57,3.63,3.4,4.419874092009685,3.86,4.28,3.8298263318469843,4.619657794676805,4.519999999999999,4.452773913043479 -2014,6,26,8,10,6,7,15,11,13,0.0,4.0,5.405334123038928,15.578571793684063,0,0,0,0,0,0,0,4.719487419824298,0.0,0.5532689901695453,0.0,4.985954518252543,4.66,3.95,3.87,4.4840122982321295,4.21,4.42,4.116049046321526,4.660029013539652,4.59,4.5181051677243875 -2014,6,27,3,7,8,8,14,12,15,0.0,5.0,3.3085408012273243,15.815476494736718,0,0,0,0,0,0,0,5.3597437099121485,0.0,1.1985437932896814,0.0,4.905391527599487,4.62,3.86,3.69,4.435672354948806,3.76,4.35,4.017867197875166,4.637612114152591,4.54,4.478907291071769 -2014,6,28,3,6,10,10,13,12,16,0.0,6.0,3.7296803734439514,17.341667092631408,0,0,0,0,0,0,0,5.0,0.0,0.9315135535267272,0.0,4.712528833831695,4.42,3.17,2.92,4.238378378378378,3.11,4.19,3.4430305796439984,4.39837962962963,4.33,4.308347736926907 -2014,6,29,4,7,11,8,13,12,18,0.0,7.0,4.335730793284036,19.10476239157875,0,0,0,0,0,0,0,5.6402562900878515,0.0,1.0434329946348482,0.0,4.712528833831695,4.42,3.17,2.92,4.238378378378378,3.11,4.19,3.4430305796439984,4.39837962962963,4.33,4.308347736926907 -2014,6,30,6,8,12,10,13,14,19,0.359743709912149,9.0,6.158077561253817,19.578571793684063,0,0,0,0,0,0,0,1.280512580175702,0.0,0.7871205132045573,0.0,4.712528833831695,4.42,3.17,2.92,4.238378378378378,3.11,4.19,3.4430305796439984,4.39837962962963,4.33,4.308347736926907 -2014,7,1,10,12,10,6,16,16,17,5.3597437099121485,10.0,5.687563384433037,20.157143587368125,0,0,0,0,0,0,0,0.0,0.0,1.3175700968841362,0.0,4.843229461756374,4.51,3.86,3.88,4.3767628205128215,4.89,4.25,4.055617768595042,4.666443594646272,4.43,4.354033918837069 -2014,7,2,13,14,5,1,17,14,16,3.0,10.0,7.033047548282637,18.683334185262815,0,0,1,2,0,0,0,0.0,0.0,0.4949911008273439,0.0,4.8727462121212115,4.47,3.91,3.85,4.283168316831683,4.61,4.2,4.053114754098361,4.632760115606937,4.36,4.353065326633166 -2014,7,3,12,12,1,1,16,9,14,1.640256290087851,10.0,9.423759804789015,19.683334185262815,0,0,1,1,0,0,0,2.640256290087851,0.0,0.0,0.0,4.886166344294004,4.42,3.53,3.11,4.233835294117648,4.01,4.2,3.768873917228104,4.584747882210569,4.32,4.303205018534359 -2014,7,4,5,4,0,3,12,6,14,1.0,10.0,11.134293139730008,14.867857690526094,0,0,1,0,0,0,0,1.920768870263553,0.0,0.0,0.0,4.725233536408472,4.34,2.89,2.42,4.11695854320031,3.16,4.11,3.1251854775059194,4.424775799184725,4.22,4.220078921806702 -2014,7,5,3,4,1,7,10,6,14,2.079231129736447,12.0,11.101819540515962,16.867857690526094,0,0,0,0,0,0,0,1.280512580175702,0.0,0.0,0.0,4.725233536408472,4.34,2.89,2.42,4.11695854320031,3.16,4.11,3.1251854775059194,4.424775799184725,4.22,4.220078921806702 -2014,7,6,4,4,5,12,10,9,15,4.3597437099121485,12.0,11.716264671159244,17.104762391578753,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.725233536408472,4.34,2.89,2.42,4.11695854320031,3.16,4.11,3.1251854775059194,4.424775799184725,4.22,4.220078921806702 -2014,7,7,8,9,10,11,13,11,17,5.719487419824298,12.0,11.307388721311867,17.63095298947344,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.725233536408472,4.34,2.89,2.42,4.11695854320031,3.16,4.11,3.1251854775059194,4.424775799184725,4.22,4.220078921806702 -2014,7,8,11,12,8,6,16,13,18,6.719487419824298,11.0,9.525078298571023,17.63095298947344,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.7344489795918365,4.34,3.76,3.6,4.176506734006734,4.11,4.09,3.8938475499092564,4.4307535545023695,4.23,4.203268954509178 -2014,7,9,11,9,4,4,15,12,17,5.079231129736447,10.0,10.049743228359315,15.341667092631406,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.678552593026663,4.25,3.52,3.03,4.125945363048166,3.41,4.06,3.666762571280456,4.3996655518394645,4.15,4.123881905875475 -2014,7,10,6,6,3,5,13,12,16,3.719487419824298,8.0,9.691557888740025,17.104762391578753,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.696739726027397,4.25,3.09,2.65,4.124604370761116,3.0,4.09,3.3730806490675707,4.373762723762724,4.22,4.120345916463327 -2014,7,11,4,6,4,9,13,13,16,4.280512580175702,7.0,9.710796577883563,18.104762391578753,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.656451897616947,4.22,2.92,2.32,4.087798369162343,2.77,4.08,3.2162320850670363,4.380451075641915,4.2,4.085349531116794 -2014,7,12,4,7,7,11,14,13,17,7.3597437099121485,9.0,9.34206298134446,18.157143587368125,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.557438330170777,4.17,2.77,2.22,4.040304461942257,2.7,4.02,3.0260694606779097,4.3234041155866905,4.11,4.029093583636873 -2014,7,13,7,9,10,9,15,15,18,5.561025160351404,11.0,10.545968859830484,19.157143587368125,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.557438330170777,4.17,2.77,2.22,4.040304461942257,2.7,4.02,3.0260694606779097,4.3234041155866905,4.11,4.029093583636873 -2014,7,14,10,10,7,5,16,15,19,6.3597437099121485,11.0,10.741874438901187,16.104762391578753,0,0,0,2,0,0,0,0.0,0.0,0.0,0.0,4.557438330170777,4.17,2.77,2.22,4.040304461942257,2.7,4.02,3.0260694606779097,4.3234041155866905,4.11,4.029093583636873 -2014,7,15,9,10,1,0,15,10,15,7.719487419824297,11.0,8.922638774577269,14.867857690526094,0,0,2,3,0,0,0,0.0,0.0,0.44433443269961037,0.0,4.677036688617121,4.2,3.55,3.24,4.106566852367688,3.75,4.1,3.6648324690865577,4.333975903614458,4.18,4.071453129591537 -2014,7,16,7,6,0,0,11,4,13,8.079231129736446,9.0,8.288091138790922,16.63095298947344,0,0,3,2,0,0,0,0.0,0.0,0.8680501197277969,0.0,4.668968515742129,4.17,3.23,2.94,4.078807339449542,3.59,4.08,3.421214681806179,4.400668036998972,4.16,4.048246229393195 -2014,7,17,5,3,0,0,10,4,11,3.359743709912149,7.0,7.492176554957662,17.394048288420784,0,1,1,1,0,0,0,0.0,0.0,0.7461180378009059,0.0,4.625526742301458,4.18,3.17,2.7,4.0327385377943,3.03,4.02,3.316149393605292,4.374538074990336,4.15,4.034633948817622 -2014,7,18,2,2,1,2,10,3,9,2.0,6.0,8.75048242039654,17.104762391578753,0,0,0,0,0,0,0,1.280512580175702,0.0,0.0,0.0,4.453526427061311,4.09,2.89,2.49,3.9228017510944335,2.69,3.92,3.114189267166763,4.184826823876198,4.02,3.937763700198443 -2014,7,19,1,3,2,4,10,6,11,3.079231129736447,7.0,10.249197464476316,18.341667092631408,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.3481529673119645,3.97,2.73,2.39,3.7899999999999996,2.65,3.81,2.935769467844668,4.10182902584493,3.91,3.833134865688175 -2014,7,20,3,5,4,8,12,10,14,1.0,8.0,11.056850090845648,18.578571793684063,0,0,0,0,0,0,0,2.561025160351404,0.0,0.0,0.0,4.3481529673119645,3.97,2.73,2.39,3.7899999999999996,2.65,3.81,2.935769467844668,4.10182902584493,3.91,3.833134865688175 -2014,7,21,3,6,8,13,12,12,17,0.0,7.0,10.542971221768553,18.578571793684063,0,0,0,0,0,0,0,2.640256290087851,0.0,0.0,0.0,4.3481529673119645,3.97,2.73,2.39,3.7899999999999996,2.65,3.81,2.935769467844668,4.10182902584493,3.91,3.833134865688175 -2014,7,22,7,9,11,13,13,13,18,1.0,8.0,10.498754004314062,20.867857690526094,0,0,0,0,0,0,0,2.920768870263553,0.0,0.0,0.0,4.421767366720517,3.94,3.12,2.93,3.788060695780903,3.24,3.76,3.27817374136229,4.116062246278755,3.9,3.7851677631578946 -2014,7,23,11,12,6,8,15,13,18,0.640256290087851,9.0,12.050885899273645,21.157143587368125,0,0,0,0,0,0,0,5.3597437099121485,0.0,0.0,0.0,4.364991334488735,3.94,3.12,3.03,3.7739494584837545,3.44,3.74,3.2782268184987218,4.0752730049637265,3.89,3.7751888908055893 -2014,7,24,7,6,1,6,14,11,17,0.0,12.0,11.868134173471176,22.683334185262815,0,0,0,0,0,0,0,6.640256290087851,0.0,0.18503706763113342,0.0,4.36765655261459,3.92,2.99,2.65,3.779938236945536,2.92,3.72,3.133803809026872,4.066281540504648,3.88,3.759303761931499 -2014,7,25,2,3,0,9,12,9,18,0.0,12.0,10.722954540655005,21.630952989473435,0,1,1,0,0,0,0,3.280512580175702,0.0,0.25631248143029084,0.0,4.353273976882224,3.86,2.8,2.56,3.7709446022727273,2.82,3.72,3.0799754826846457,4.052976313079299,3.8500000000000005,3.7517579471466873 -2014,7,26,4,4,5,12,14,12,20,1.0,13.0,9.792498977032489,19.815476494736718,0,0,0,0,0,0,0,1.280512580175702,0.0,0.07127541379915742,0.0,4.27120970042796,3.85,2.6,2.39,3.7326414027149317,2.75,3.67,2.8572698141422777,4.038843049327354,3.82,3.7248624 -2014,7,27,5,9,9,9,15,15,20,2.719487419824298,13.0,9.331593829730394,17.578571793684063,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.27120970042796,3.85,2.6,2.39,3.7326414027149317,2.75,3.67,2.8572698141422777,4.038843049327354,3.82,3.7248624 -2014,7,28,7,6,1,3,15,12,18,6.438974839648596,13.0,8.50193675576108,16.63095298947344,0,0,1,0,0,0,0,0.0,0.0,0.0,0.0,4.27120970042796,3.85,2.6,2.39,3.7326414027149317,2.75,3.67,2.8572698141422777,4.038843049327354,3.82,3.7248624 -2014,7,29,3,1,1,2,10,5,16,7.719487419824297,14.0,6.655565253409142,17.920238886315467,0,1,2,0,0,0,0,0.0,0.0,0.040644027308963646,0.0,4.374851380042463,3.87,2.86,2.52,3.7352448979591837,2.77,3.72,3.191344792719919,4.069374471682163,3.85,3.7580655355954753 -2014,7,30,2,2,1,2,10,5,15,6.719487419824298,14.0,6.5478204815554655,19.157143587368125,0,1,1,0,0,0,0,0.0,0.0,1.5328801029107755,0.0,4.3606181202370875,3.79,2.68,2.33,3.6955025380710658,2.92,3.67,3.0555880815473078,4.0176200067136625,3.7600000000000002,3.690202138322753 -2014,7,31,2,3,3,4,10,6,14,6.719487419824298,14.0,6.906594127682096,18.446429484210157,0,0,0,0,0,0,0,0.0,0.0,0.4137030462094166,0.0,4.340563879052029,3.76,2.46,2.23,3.676885714285714,2.9,3.65,2.809554701627486,4.008141999293536,3.72,3.6768734112862225 -2014,8,1,5,6,5,6,10,9,13,7.438974839648596,14.0,7.089074456074357,14.446429484210158,0,0,0,0,0,0,0,0.0,0.0,0.37305901890045295,0.0,4.281715867158672,3.76,2.62,2.26,3.774053700065488,2.51,3.75,2.9083164910771875,4.0822060682680155,3.73,3.670570801317234 -2014,8,2,3,4,4,7,10,11,12,6.3597437099121485,12.0,7.561906104720231,12.394048288420784,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.284713060686016,3.79,2.54,2.18,3.725522309711286,2.43,3.68,2.8358822643781996,4.076510215350635,3.74,3.688489534883721 -2014,8,3,1,4,6,7,12,11,14,7.0,9.0,7.70887525985396,11.867857690526094,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.284713060686016,3.79,2.54,2.18,3.725522309711286,2.43,3.68,2.8358822643781996,4.076510215350635,3.74,3.688489534883721 -2014,8,4,6,7,7,8,12,11,15,8.0,8.0,5.405070531614836,12.867857690526096,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.284713060686016,3.79,2.54,2.18,3.725522309711286,2.43,3.68,2.8358822643781996,4.076510215350635,3.74,3.688489534883721 -2014,8,5,8,8,6,8,13,11,16,4.0,7.0,5.840072907910342,14.867857690526094,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.310420560747663,3.86,2.79,2.77,3.7743430369787565,2.83,3.7,2.9927394922125026,4.064240317775571,3.8400000000000003,3.7521421197522367 -2014,8,6,7,6,5,8,13,13,18,3.0,7.0,5.880294366524363,15.867857690526094,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.343112033195021,3.95,3.0,2.63,3.828272980501393,2.93,3.78,3.166663961038961,4.0887697929354445,3.93,3.837276205049732 -2014,8,7,2,3,3,7,14,14,20,2.359743709912149,8.0,5.188809380118975,15.394048288420782,0,0,0,0,0,0,0,0.0,0.0,0.040644027308963646,0.0,4.3657044334975375,3.96,2.83,2.61,3.8285714285714283,2.83,3.78,3.1235079780900215,4.096234413965087,3.93,3.875519116099614 -2014,8,8,2,2,4,8,11,13,20,1.0,8.0,5.723584386159903,16.157143587368125,0,0,0,0,0,0,0,0.640256290087851,0.0,0.040644027308963646,0.0,4.3960669908157755,4.01,2.65,2.46,3.846313465783665,2.75,3.81,2.9716892642809514,4.0991938250428825,3.96,3.922729905865315 -2014,8,9,4,4,5,8,12,14,19,1.359743709912149,9.0,6.39783870365431,16.394048288420784,0,0,0,0,0,0,0,0.640256290087851,0.0,0.0,0.0,4.3370699925539835,3.94,2.62,2.41,3.7520072992700726,2.65,3.74,3.008751857355126,3.9919754035357418,3.8599999999999994,3.8584344219803004 -2014,8,10,5,6,7,7,12,14,19,5.438974839648596,9.0,6.587201193646791,16.394048288420784,0,0,0,0,0,0,0,0.0,0.0,0.37305901890045295,0.0,4.3370699925539835,3.94,2.62,2.41,3.7520072992700726,2.65,3.74,3.008751857355126,3.9919754035357418,3.8599999999999994,3.8584344219803004 -2014,8,11,5,5,6,6,12,13,19,9.079231129736447,9.0,7.337235884982418,16.92023888631547,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.3370699925539835,3.94,2.62,2.41,3.7520072992700726,2.65,3.74,3.008751857355126,3.9919754035357418,3.8599999999999994,3.8584344219803004 -2014,8,12,4,4,3,2,13,12,17,5.920768870263553,9.0,7.864001043214287,14.867857690526094,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.443716960352424,4.0,2.91,2.86,3.8195623987034035,2.98,3.78,3.1169881269687427,4.122202339986235,3.94,3.9029282634261078 -2014,8,13,2,6,2,3,13,6,15,0.640256290087851,8.0,6.9920630545255795,11.81547649473672,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,4.448951578947368,3.98,2.88,2.61,3.7955378787878784,2.68,3.8,3.095777930089102,4.124198988195616,3.94,3.89100546975547 -2014,8,14,1,2,1,4,10,6,15,0.640256290087851,8.0,7.064043585838631,13.867857690526094,0,1,2,0,0,0,0,2.0,0.0,0.0,0.0,4.38993288590604,3.91,2.77,2.49,3.7497867298578194,2.7,3.75,2.995886524822695,4.034345156889495,3.88,3.8425136201390195 -2014,8,15,0,0,0,5,10,8,17,1.359743709912149,10.0,7.732333711761035,15.630952989473439,3,4,3,0,0,0,0,0.0,0.0,0.0,0.0,4.328914600550965,3.89,2.59,2.35,3.7395245901639345,2.53,3.74,2.8553107476635513,4.02913409703504,3.85,3.806206764027671 -2014,8,16,0,0,1,9,11,9,19,3.079231129736447,11.0,7.954520721861353,17.63095298947344,1,2,1,0,0,0,0,0.0,0.0,0.07127541379915742,0.0,4.176106807990216,3.82,2.44,2.14,3.6908915304606245,2.25,3.68,2.8002206619859575,3.915398394070414,3.7900000000000005,3.7361887477313975 -2014,8,17,3,3,4,8,13,11,19,4.079231129736447,11.0,8.60561412097313,18.39404828842078,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.176106807990216,3.82,2.44,2.14,3.6908915304606245,2.25,3.68,2.8002206619859575,3.915398394070414,3.7900000000000005,3.7361887477313975 -2014,8,18,0,2,7,9,13,12,18,5.719487419824298,10.0,8.507352158630463,14.341667092631408,1,1,0,0,0,0,0,0.0,0.0,0.0,0.0,4.176106807990216,3.82,2.44,2.14,3.6908915304606245,2.25,3.68,2.8002206619859575,3.915398394070414,3.7900000000000005,3.7361887477313975 -2014,8,19,0,3,8,10,14,14,18,5.3597437099121485,6.0,6.273655640176936,11.81547649473672,2,0,0,0,0,0,0,0.0,0.0,0.040644027308963646,0.0,4.24761413843888,3.84,2.81,2.66,3.71781226343679,2.62,3.68,3.057769852591536,3.966767850983098,3.8100000000000005,3.770966641394996 -2014,8,20,1,5,8,10,15,16,19,1.0,6.0,5.380112563713748,11.81547649473672,0,0,0,0,0,0,0,1.280512580175702,0.0,0.11191944110812106,0.0,4.266756433273489,3.94,2.92,2.6,3.781090909090909,2.75,3.74,3.1489558058925478,4.03962291515591,3.91,3.856418631902739 -2014,8,21,1,6,8,12,15,15,21,0.0,7.0,4.649699542715576,10.289285896842031,1,0,0,0,0,0,0,2.280512580175702,0.0,0.4088759498473755,0.0,4.241456636320077,3.93,2.95,2.35,3.7752251184834122,2.47,3.72,3.0234423604757548,4.0091659886086255,3.8800000000000003,3.833655642888922 -2014,8,22,1,5,11,13,15,16,21,0.0,7.0,2.8610952648818513,8.578571793684063,1,0,0,0,0,0,0,2.640256290087851,0.0,1.7082629778178267,0.0,4.300899696048632,3.95,2.73,2.35,3.7750601829561865,2.43,3.73,2.966946626384693,4.024617817606747,3.9,3.8594665957823855 -2014,8,23,1,3,11,13,15,17,20,0.719487419824298,6.0,2.3377525436886057,10.341667092631406,0,0,0,0,0,0,0,0.359743709912149,0.0,3.6363596700103007,0.0,4.2750703093611895,3.94,2.38,1.87,3.7398434516991217,2.26,3.72,2.6486050701325436,3.9889734513274333,3.9,3.8525348114100306 -2014,8,24,1,3,10,14,13,16,20,0.719487419824298,6.0,2.7390124298480556,13.10476239157875,0,0,0,0,0,0,0,0.640256290087851,0.0,3.036637465541276,0.0,4.2750703093611895,3.94,2.38,1.87,3.7398434516991217,2.26,3.72,2.6486050701325436,3.9889734513274333,3.9,3.8525348114100306 -2014,8,25,5,4,12,11,10,15,20,3.079231129736447,5.0,2.7390124298480556,13.10476239157875,0,0,0,1,0,0,0,0.0,0.0,2.486347783305547,0.0,4.2750703093611895,3.94,2.38,1.87,3.7398434516991217,2.26,3.72,2.6486050701325436,3.9889734513274333,3.9,3.8525348114100306 -2014,8,26,5,6,11,8,11,13,19,5.719487419824298,7.0,2.8527740836800315,11.867857690526094,0,0,0,2,0,0,0,0.0,0.0,1.4925945236964995,0.0,4.368438769587928,3.96,2.89,2.58,3.8086493083807973,3.19,3.77,3.0425354262044912,4.057946389969736,3.94,3.8824768655247093 -2014,8,27,8,8,8,7,11,13,18,6.079231129736447,9.0,2.9582145563101885,12.630952989473439,0,0,0,1,0,0,0,0.0,0.0,1.4163318514272722,0.0,4.345267740531128,4.0,2.97,2.81,3.829422431161853,4.18,3.81,3.2095102593883085,4.070483162518301,3.9700000000000006,3.910308056872038 -2014,8,28,5,5,4,8,12,14,17,2.438974839648596,12.0,3.4900046787129293,14.157143587368125,0,0,0,1,0,0,0,0.0,0.0,1.9465831491201921,0.23690470105265615,4.376520681265207,4.01,2.96,2.67,3.873682983682984,2.9,3.84,3.160375558262282,4.106245614035088,3.9800000000000004,3.9287132352941176 -2014,8,29,0,0,7,8,12,14,16,1.0,11.0,4.335010691064648,14.92023888631547,2,1,0,0,0,0,0,1.920768870263553,0.0,1.2004651113192861,0.23690470105265615,4.314527845036319,4.01,2.59,2.02,3.873506172839506,2.74,3.84,2.81534799793779,4.101829700963,3.95,3.929620295141768 -2014,8,30,0,1,9,8,13,13,16,0.0,11.0,4.69492700810561,16.394048288420784,3,0,0,0,0,0,0,4.0,0.0,0.43950733633756933,0.0,4.314527845036319,4.01,2.59,2.02,3.873506172839506,2.74,3.84,2.81534799793779,4.101829700963,3.95,3.929620295141768 -2014,8,31,6,8,9,9,16,12,17,0.0,10.0,3.7296803734439514,16.867857690526094,0,0,0,0,0,0,0,4.0,0.0,2.0577183674086696,0.0,4.314527845036319,4.01,2.59,2.02,3.873506172839506,2.74,3.84,2.81534799793779,4.101829700963,3.95,3.929620295141768 -2014,9,1,11,12,10,6,17,15,19,0.0,10.0,3.151830820862864,16.867857690526094,0,0,0,0,0,0,0,2.280512580175702,0.0,2.921646508288319,0.0,4.3834573231484555,4.02,2.66,2.44,3.8443155452436195,3.83,3.81,3.076733345567994,4.104909293887803,3.97,3.9488360023724796 -2014,9,2,11,13,8,5,17,15,19,0.0,10.0,4.130940259603402,16.867857690526094,0,0,0,0,0,0,0,3.920768870263553,0.0,1.4925945236964995,0.0,4.3834573231484555,4.02,2.66,2.44,3.8443155452436195,3.83,3.81,3.076733345567994,4.104909293887803,3.97,3.9488360023724796 -2014,9,3,8,8,6,6,15,13,18,0.0,8.0,5.307403706017363,16.867857690526094,0,0,0,0,0,0,0,5.6402562900878515,0.0,1.6634913959563458,0.0,4.202631578947368,4.0,2.98,2.92,3.8103697571743926,4.24,3.76,3.2614077669902914,4.05487130600572,3.94,3.929826042025491 -2014,9,4,4,6,8,10,14,14,18,0.0,7.0,3.131951134805686,15.867857690526094,0,0,0,0,0,0,0,4.561025160351404,0.0,3.5886771522898404,0.0,4.198327645051195,3.92,3.09,2.99,3.769219219219219,4.28,3.73,3.2704011461318054,4.000109452736319,3.88,3.8378411566646866 -2014,9,5,7,9,12,6,15,14,18,1.079231129736447,8.0,2.7588921159052333,12.394048288420784,0,0,0,2,0,0,0,1.0,0.0,5.476005478965899,0.0,4.213001266357113,3.91,2.84,2.7,3.744808080808081,4.13,3.69,3.107877215737138,3.97720076603894,3.85,3.8157393061636915 -2014,9,6,12,12,3,0,15,14,15,4.438974839648596,10.0,3.478704189577294,13.683334185262813,0,0,0,3,0,0,0,0.0,0.0,3.2086694815145536,0.23690470105265615,4.138048327137547,3.86,2.51,2.09,3.6847087536609178,2.97,3.66,2.7816273584905655,3.92326173931354,3.8,3.751207142857143 -2014,9,7,3,3,0,0,12,11,13,2.719487419824298,11.0,4.206837444451174,13.683334185262813,0,1,1,2,0,0,0,0.0,0.0,1.2669134287564026,0.0,4.138048327137547,3.86,2.51,2.09,3.6847087536609178,2.97,3.66,2.7816273584905655,3.92326173931354,3.8,3.751207142857143 -2014,9,8,0,1,0,2,9,10,15,0.359743709912149,8.0,3.187968633596281,8.81547649473672,3,1,1,1,0,0,0,2.561025160351404,0.0,0.9244857963461433,0.0,4.138048327137547,3.86,2.51,2.09,3.6847087536609178,2.97,3.66,2.7816273584905655,3.92326173931354,3.8,3.751207142857143 -2014,9,9,0,1,2,5,10,11,17,0.0,8.0,2.1412831912097903,10.289285896842031,4,1,0,1,0,0,0,3.640256290087851,0.0,2.603346691094757,0.0,4.278317938745746,3.91,2.74,2.52,3.7291786447638606,2.79,3.71,2.983134902670892,3.98970297029703,3.85,3.7895488257107544 -2014,9,10,0,3,5,4,11,13,19,0.0,9.0,1.9646935247881527,11.341667092631408,2,0,0,5,0,0,0,3.920768870263553,0.0,5.4485322411271895,0.0,4.378839103869654,4.05,3.13,2.89,3.8196808510638296,3.13,3.89,3.337612806188225,4.100603448275862,4.0,3.9135167669819437 -2014,9,11,1,5,1,0,13,13,15,0.0,11.0,1.9646935247881527,11.867857690526094,1,0,8,12,0,0,0,5.201281450439255,0.0,10.268773623126851,0.23690470105265615,4.385533722782793,4.03,3.09,3.0,3.856868804664723,3.22,3.85,3.2894228356336264,4.0881132075471704,3.96,3.9080191693290733 -2014,9,12,0,1,0,0,11,8,10,1.079231129736447,12.0,2.365953410947603,12.683334185262813,3,3,11,15,0,0,1,4.841537740527105,0.0,13.590836901377568,0.4738094021053123,4.352207792207792,3.95,2.91,2.52,3.7868304278922347,2.81,3.78,3.1681815673289186,4.012277063459146,3.91,3.823941427699817 -2014,9,13,0,0,0,0,11,4,4,1.438974839648596,14.0,2.5624227634264183,11.446429484210158,9,7,12,16,0,1,2,2.920768870263553,0.0,7.764324245887726,0.9476188042106246,4.267233333333333,3.86,2.42,2.09,3.7201610468042277,2.57,3.76,2.6559348301212,3.940670427424604,3.82,3.741668107173725 -2014,9,14,0,0,0,0,7,4,5,1.438974839648596,14.0,3.160152002064683,12.446429484210158,9,9,12,11,2,1,0,1.280512580175702,0.0,3.3191051579935076,0.23690470105265615,4.267233333333333,3.86,2.42,2.09,3.7201610468042277,2.57,3.76,2.6559348301212,3.940670427424604,3.82,3.741668107173725 -2014,9,15,0,0,0,0,7,5,10,3.079231129736447,14.0,4.39498561572817,14.446429484210158,11,8,11,8,1,1,0,0.0,0.0,4.176784188807847,0.0,4.267233333333333,3.86,2.42,2.09,3.7201610468042277,2.57,3.76,2.6559348301212,3.940670427424604,3.82,3.741668107173725 -2014,9,16,0,0,0,0,10,6,13,0.0,14.0,5.200358475973209,10.157143587368127,9,6,9,8,0,1,0,1.280512580175702,0.0,1.448266070939826,0.0,4.423682361208714,3.98,2.88,2.55,3.780305084745762,2.65,3.92,3.069027624309392,4.140384068278805,3.95,3.8559011687512816 -2014,9,17,0,0,0,1,8,5,15,0.0,12.0,5.239733612360165,8.867857690526094,8,7,9,5,1,1,0,1.640256290087851,0.0,0.2544702687064359,0.23690470105265615,4.303271130625686,3.93,2.9,2.5,3.802985751295337,2.75,3.81,3.1375272261370917,4.05273249551167,3.89,3.8181915879192143 -2014,9,18,0,0,0,1,8,5,13,0.0,7.0,4.970146633358338,9.630952989473437,8,6,8,4,0,0,0,3.280512580175702,0.0,0.2544702687064359,0.0,4.481390106449593,4.07,2.97,2.45,3.933900662251656,2.98,3.9,3.168209302325581,4.19135611907387,4.03,3.9634687906371915 -2014,9,19,0,0,0,3,7,7,12,1.359743709912149,6.0,3.6760581972507174,11.394048288420782,14,9,6,2,1,0,0,0.0,0.0,0.3682319225384119,0.0,4.42,4.04,2.44,2.06,3.893428357089272,2.97,3.89,2.872720970537262,4.135078035782262,3.9899999999999998,3.9434014049991832 -2014,9,20,0,0,1,5,7,8,14,2.798718549560745,6.0,3.376116804873277,12.867857690526096,12,3,1,0,0,0,0,0.640256290087851,0.0,0.9344984371649132,0.0,4.21515898023489,3.91,2.1,1.72,3.759635933806147,2.96,3.74,2.426822328745941,3.9537223219628963,3.85,3.810931542461005 -2014,9,21,0,2,2,1,9,9,14,2.079231129736447,5.0,1.8819858261413134,11.867857690526094,2,0,2,4,0,0,0,0.0,0.0,2.3971666918851127,0.0,4.21515898023489,3.91,2.1,1.72,3.759635933806147,2.96,3.74,2.426822328745941,3.9537223219628963,3.85,3.810931542461005 -2014,9,22,1,1,0,0,6,3,11,0.0,7.0,2.2832457123007632,11.630952989473439,1,4,7,5,0,1,0,2.640256290087851,0.0,1.819317139304025,0.0,4.21515898023489,3.91,2.1,1.72,3.759635933806147,2.96,3.74,2.426822328745941,3.9537223219628963,3.85,3.810931542461005 -2014,9,23,0,0,0,0,4,1,7,0.0,7.0,2.9748569187138267,12.394048288420784,11,9,8,5,3,3,0,3.640256290087851,0.0,1.1243626011580876,0.0,4.301194312796209,3.95,2.6,2.08,3.819159891598916,3.28,3.78,2.854383902328736,4.059501455604075,3.9,3.8306831903400065 -2014,9,24,0,0,0,1,4,1,7,0.0,8.0,3.9509814738161784,13.394048288420782,10,8,6,4,3,2,0,6.3597437099121485,0.0,0.4137030462094166,0.0,4.263687943262412,3.96,2.48,1.98,3.8132840616966575,4.86,3.74,2.741057692307692,4.070586011342155,3.9,3.8300736032117766 -2014,9,25,0,0,0,3,4,3,7,0.0,7.0,3.5112837968706776,13.683334185262813,10,7,2,0,1,0,0,4.719487419824298,1.0,0.3508750336197549,0.0,4.144619315278487,3.89,2.48,1.85,3.725464150943396,5.29,3.67,2.6574609695973708,3.990675351388413,3.83,3.7735742716128007 -2014,9,26,0,0,0,4,6,4,8,0.0,4.0,3.5549127078178273,11.92023888631547,3,3,2,0,0,0,0,6.640256290087851,1.0,1.1737310027911279,0.0,4.167145981410607,3.89,2.4,1.84,3.720980781974818,3.67,3.67,2.567671816728822,3.9802623403520885,3.8300000000000005,3.7901629704301074 -2014,9,27,1,1,1,4,7,5,8,0.0,1.0,0.7858774099152611,9.394048288420782,1,1,1,0,0,0,0,6.079231129736447,2.0,3.3688673437476804,0.23690470105265615,4.192107438016529,3.92,2.25,1.62,3.726556812592228,3.1,3.7,2.4830898977211557,3.9664339994370947,3.85,3.84127923144988 -2014,9,28,1,1,1,4,7,6,9,0.0,0.0,0.0,5.8154764947367195,0,1,1,1,0,0,0,5.920768870263553,2.0,6.634366704179541,0.23690470105265615,4.192107438016529,3.92,2.25,1.62,3.726556812592228,3.1,3.7,2.4830898977211557,3.9664339994370947,3.85,3.84127923144988 -2014,9,29,0,1,2,3,6,8,10,0.0,1.0,0.19646935247881528,4.289285896842031,1,1,1,4,0,0,0,8.640256290087851,1.0,8.23296561330692,0.23690470105265615,4.192107438016529,3.92,2.25,1.62,3.726556812592228,3.1,3.7,2.4830898977211557,3.9664339994370947,3.85,3.84127923144988 -2014,9,30,0,1,0,2,7,6,11,0.0,2.0,0.39293870495763056,4.052381195789375,7,1,9,6,0,0,0,9.359743709912149,0.0,10.138904735118148,0.9476188042106246,4.337029501525941,4.07,2.48,2.02,3.828093503339405,3.84,3.75,2.7885311530871157,4.057762773722628,4.01,3.948989157631359 -2014,10,1,0,0,0,2,7,6,13,0.0,4.0,0.19646935247881528,3.8154764947367195,7,3,6,5,0,0,0,10.0,0.0,11.967374393145564,0.9476188042106246,4.422349514563106,4.08,2.61,2.08,3.9097379912663754,4.21,3.83,2.9107834627683875,4.132366239638282,4.01,4.030084452443583 -2014,10,2,0,0,1,1,8,8,15,0.0,7.0,0.19646935247881528,3.8154764947367195,7,3,3,5,0,0,0,9.920768870263553,0.0,13.696684261034127,1.421428206315937,4.422671489149414,4.09,2.91,2.23,3.908055893074119,4.23,3.85,2.996817610062893,4.108689655172413,4.04,4.024140172389431 -2014,10,3,0,0,0,0,7,4,6,0.0,10.0,0.7858774099152611,5.341667092631407,11,4,4,15,0,0,1,6.841537740527107,0.0,14.498169252318256,1.658332907368593,4.295657894736842,3.96,2.62,1.88,3.7806455493183644,3.19,3.69,2.8135438024231125,4.01599106287903,3.9199999999999995,3.875061711832573 -2014,10,4,0,0,0,0,5,0,2,0.719487419824298,11.0,1.1788161148728917,6.867857690526095,9,6,20,20,2,11,2,4.841537740527105,0.0,10.746403583560955,1.1845235052632808,4.236709979209979,3.94,2.13,1.53,3.695390681003584,2.04,3.66,2.576235276576711,3.9274227318045862,3.88,3.851158979924037 -2014,10,5,0,0,0,0,2,0,4,1.438974839648596,11.0,1.375285467351707,6.867857690526095,12,17,18,15,9,10,0,1.920768870263553,0.0,8.016544926969772,0.7107141031579685,4.236709979209979,3.94,2.13,1.53,3.695390681003584,2.04,3.66,2.576235276576711,3.9274227318045862,3.88,3.851158979924037 -2014,10,6,0,0,0,0,2,0,7,1.438974839648596,10.0,1.375285467351707,6.104762391578751,14,12,14,11,5,6,0,1.280512580175702,0.0,6.143158509678342,0.7107141031579685,4.236709979209979,3.94,2.13,1.53,3.695390681003584,2.04,3.66,2.576235276576711,3.9274227318045862,3.88,3.851158979924037 -2014,10,7,0,0,0,1,3,4,12,1.079231129736447,9.0,1.1788161148728917,5.578571793684063,8,7,11,9,2,2,0,2.561025160351404,0.0,5.2426347907364965,0.4738094021053123,4.134347826086957,3.93,2.58,1.86,3.6840352348993286,2.91,3.59,2.8864653397391904,3.901192325262677,3.88,3.8160031236688914 -2014,10,8,0,1,0,0,6,5,12,0.0,7.0,1.1788161148728917,2.2892858968420313,3,3,11,10,0,1,0,3.920768870263553,0.0,5.914492531100059,0.9476188042106246,4.182607913669064,3.93,2.6,1.83,3.7037738853503184,3.27,3.61,2.8723352435530085,3.911937037037037,3.88,3.813755937755938 -2014,10,9,0,0,0,0,6,5,13,0.0,4.0,0.9823467623940764,3.2892858968420313,12,10,15,13,2,2,0,5.280512580175702,0.0,8.763377491285697,0.7107141031579685,4.166454500248633,3.96,2.46,1.96,3.7196190476190476,3.39,3.61,2.8025884086444006,3.9399183673469387,3.92,3.8264383985159993 -2014,10,10,0,0,0,0,7,5,13,0.0,4.0,0.9823467623940764,3.8154764947367195,15,15,16,17,2,2,0,6.920768870263553,0.0,10.314868389331641,1.421428206315937,4.158439206668583,3.95,2.4,1.83,3.729069055944056,2.54,3.55,2.7699541751527494,3.8819272575250836,3.9,3.792748432055749 -2014,10,11,0,0,0,0,8,4,6,0.0,4.0,0.9823467623940764,4.578571793684063,17,14,17,17,2,3,3,7.6402562900878515,0.0,9.749665440313722,1.658332907368593,4.11789070657849,3.91,1.96,1.43,3.635323336457357,1.77,3.42,2.3586713286713286,3.784407643312102,3.8500000000000005,3.7701487400122926 -2014,10,12,0,0,0,0,6,4,5,0.0,5.0,0.7858774099152611,5.341667092631407,17,15,16,16,3,1,1,9.640256290087851,0.0,13.006123517324376,1.1845235052632808,4.11789070657849,3.91,1.96,1.43,3.635323336457357,1.77,3.42,2.3586713286713286,3.784407643312102,3.8500000000000005,3.7701487400122926 -2014,10,13,0,0,0,0,7,7,6,0.0,5.0,0.19646935247881528,3.8154764947367195,16,12,8,12,1,0,2,7.6402562900878515,0.0,14.800069668426103,3.842856412631874,4.11789070657849,3.91,1.96,1.43,3.635323336457357,1.77,3.42,2.3586713286713286,3.784407643312102,3.8500000000000005,3.7701487400122926 -2014,10,14,0,1,1,0,8,1,1,0.0,2.0,0.39293870495763056,3.8154764947367195,4,1,3,11,0,1,2,11.359743709912149,1.0,11.048892306176144,2.605951711579218,4.2018444597384725,3.84,2.76,2.02,3.712937853107345,2.83,3.54,2.8924234634260344,3.9035346602608096,3.8100000000000005,3.7716692938209326 -2014,10,15,3,3,0,0,5,0,1,0.0,1.0,0.7858774099152611,3.8154764947367195,0,1,9,11,1,7,1,13.359743709912149,2.0,8.10250890666501,1.658332907368593,4.155359661495064,3.89,2.77,2.14,3.7160729312762975,3.42,3.62,2.9222437673130193,3.9009410834321865,3.88,3.8068306781333705 -2014,10,16,2,1,0,0,2,0,3,0.0,0.0,0.39293870495763056,4.578571793684063,0,1,9,9,3,6,0,10.640256290087851,2.0,10.461499796173156,0.9476188042106246,4.1617271534761695,3.77,2.75,2.08,3.6272464433226252,3.08,3.53,2.7892726385159876,3.800780413159908,3.73,3.703898305084746 -2014,10,17,0,0,0,0,2,0,4,0.0,0.0,0.19646935247881528,3.8154764947367195,2,4,8,13,2,2,0,13.0,3.0,13.29306738524486,1.1845235052632808,4.088514464425332,3.8,2.61,2.07,3.604800759013283,3.51,3.5,2.7379267980547737,3.7738100558659218,3.74,3.6970445402298853 -2014,10,18,0,0,0,0,2,1,5,0.0,0.0,0.5894080574364459,4.578571793684063,5,6,16,16,2,6,1,6.920768870263553,1.0,11.072339606674479,1.421428206315937,4.062540559199171,3.75,2.53,1.84,3.5263815789473685,2.89,3.43,2.7368324225865206,3.6393980187960375,3.7,3.6347906253471067 -2014,10,19,0,0,0,0,2,0,4,0.0,1.0,0.7858774099152611,4.578571793684063,15,16,20,13,6,9,1,4.6402562900878515,1.0,9.014979687360498,1.421428206315937,4.062540559199171,3.75,2.53,1.84,3.5263815789473685,2.89,3.43,2.7368324225865206,3.6393980187960375,3.7,3.6347906253471067 -2014,10,20,0,0,0,0,2,0,4,0.0,1.0,0.7858774099152611,3.0523811957893754,17,17,17,11,6,8,1,9.719487419824299,2.0,8.58635027146362,1.421428206315937,4.062540559199171,3.75,2.53,1.84,3.5263815789473685,2.89,3.43,2.7368324225865206,3.6393980187960375,3.7,3.6347906253471067 -2014,10,21,0,0,0,0,3,0,3,0.0,1.0,0.7858774099152611,3.8154764947367195,15,15,16,12,5,7,0,12.079231129736446,3.0,9.48935162433859,1.8952376084212492,4.035812550281577,3.77,2.75,2.33,3.5065855106888364,3.35,3.39,2.7863726255529535,3.6640686479698616,3.7,3.5889478972297977 -2014,10,22,0,0,0,0,2,0,3,0.0,2.0,0.39293870495763056,3.8154764947367195,14,14,19,11,7,11,1,13.0,3.0,12.157159451832989,1.1845235052632808,3.913230953330674,3.78,2.91,2.52,3.459176800748363,2.98,3.32,2.9682449841605067,3.5747952497952498,3.6900000000000004,3.5655038759689917 -2014,10,23,0,0,0,0,2,0,3,0.0,3.0,0.39293870495763056,4.578571793684063,14,14,18,10,6,11,1,13.359743709912149,2.0,11.420855768864195,1.1845235052632808,3.9459191176470587,3.77,2.99,2.66,3.4625195553725816,2.74,3.37,3.1020758784220734,3.5834655250112664,3.7,3.604172697166687 -2014,10,24,0,0,0,0,2,0,4,0.0,4.0,0.5894080574364459,5.341667092631407,15,11,14,6,6,9,1,15.640256290087851,1.0,6.863051640152682,0.9476188042106246,3.877783439490446,3.63,2.37,2.27,3.4248704663212437,2.24,3.3,2.587144196951934,3.580691670725767,3.59,3.5112260080345186 -2014,10,25,0,0,0,1,1,0,5,0.0,2.0,0.5894080574364459,6.104762391578751,13,12,8,6,6,6,0,13.64025629008785,3.0,7.641492524060732,0.7107141031579685,3.695783253708826,3.49,2.49,2.19,3.2729013619479983,2.31,3.19,2.7858560593835726,3.357317715959004,3.45,3.4309346251712665 -2014,10,26,0,0,0,1,1,1,6,0.0,0.0,0.39293870495763056,5.341667092631407,15,13,13,8,3,3,0,16.719487419824297,4.0,9.555211635268364,0.4738094021053123,3.695783253708826,3.49,2.49,2.19,3.2729013619479983,2.31,3.19,2.7858560593835726,3.357317715959004,3.45,3.4309346251712665 -2014,10,27,0,0,0,1,2,2,6,0.0,0.0,0.0,3.8154764947367195,14,13,8,8,4,1,0,17.92076887026355,5.0,18.075040059693492,1.4738094021053123,3.695783253708826,3.49,2.49,2.19,3.2729013619479983,2.31,3.19,2.7858560593835726,3.357317715959004,3.45,3.4309346251712665 -2014,10,28,0,0,0,0,2,1,6,0.0,0.0,0.0,1.5261905978946877,14,9,7,15,2,1,1,17.0,3.0,19.96770468393318,3.132142309473905,3.7877670651754727,3.62,2.45,2.24,3.3875504919730712,2.71,3.27,2.72499511002445,3.5354601226993867,3.5900000000000003,3.433740746116998 -2014,10,29,0,0,0,0,3,1,4,0.0,2.0,0.0,2.2892858968420313,8,9,18,20,2,6,2,12.0,1.0,16.00733783603986,3.132142309473905,3.8453631284916203,3.7,2.53,2.42,3.420220243673852,2.62,3.31,2.741206225680934,3.5492395437262356,3.65,3.421528646791805 -2014,10,30,0,0,0,0,2,0,2,0.0,1.0,0.19646935247881528,3.0523811957893754,18,17,22,20,7,13,2,11.920768870263554,1.0,14.18578469989085,1.8952376084212492,3.9460995184590693,3.86,2.85,2.64,3.5446099647710114,4.04,3.47,2.9888025100226603,3.6620996441281135,3.85,3.5049904007679387 -2014,10,31,0,0,0,0,2,0,1,0.0,0.0,0.19646935247881528,3.8154764947367195,21,21,25,28,10,16,5,14.640256290087851,5.0,14.046292285532097,2.605951711579218,4.057683204369595,4.1,3.1,2.76,3.699835728952772,4.29,3.58,3.1547236614853196,3.809103641456583,4.07,3.673146279101063 -2014,11,1,0,0,0,0,0,0,0,0.0,0.0,0.0,2.2892858968420313,22,22,28,30,15,23,13,19.35974370991215,10.0,13.654840551233649,2.6583329073685933,3.9898782714546566,3.87,2.91,2.71,3.543640727640222,6.59,3.44,3.19129923491074,3.6300456715798215,3.79,3.6343101893597836 -2014,11,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,23,28,22,17,23,10,19.719487419824297,11.0,17.95133866737738,4.1845235052632805,3.9898782714546566,3.87,2.91,2.71,3.543640727640222,6.59,3.44,3.19129923491074,3.6300456715798215,3.79,3.6343101893597836 -2014,11,3,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,23,19,19,15,14,16,4,17.35974370991215,10.0,22.94845226461763,11.710714103157969,3.9898782714546566,3.87,2.91,2.71,3.543640727640222,6.59,3.44,3.19129923491074,3.6300456715798215,3.79,3.6343101893597836 -2014,11,4,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,20,15,13,15,11,12,2,14.359743709912149,9.0,25.405658001766522,11.89523760842125,3.908410981697171,3.77,2.78,2.66,3.4111782608695647,4.7,3.19,3.0218839914294455,3.561019131714496,3.58,3.5763631237665634 -2014,11,5,0,0,0,0,2,0,1,0.0,1.0,0.0,0.0,14,12,17,19,6,10,7,11.920768870263554,3.0,19.158381228053067,7.07976111368453,3.92,3.72,3.04,2.76,3.3387166085946576,3.35,3.27,3.1560519031141867,3.4615039062499995,3.59,3.5131566392790883 -2014,11,6,0,0,0,0,2,0,0,0.0,3.0,0.0,0.0,21,18,21,23,4,7,6,11.359743709912149,1.0,16.00270665599012,5.316665814737187,4.051399022188793,4.03,3.39,3.42,3.594407866609662,4.07,3.43,3.52522081691893,3.7700383631713557,3.93,3.698577878103838 -2014,11,7,0,0,0,0,1,0,0,0.0,2.0,0.0,0.0,20,20,27,23,10,18,10,16.0,2.0,14.463935891108722,4.842856412631874,4.194579178300757,4.12,3.63,3.77,3.6828615384615384,6.77,3.53,3.7598183336813533,3.8621138211382116,4.08,3.8689580838323354 -2014,11,8,0,0,0,0,1,0,0,0.0,2.0,0.0,0.7630952989473438,27,27,25,24,15,18,8,18.84153774052711,1.0,16.72168181643624,4.842856412631874,4.355424764019989,4.05,3.52,3.38,3.656383174700645,6.01,3.57,3.596026160074743,3.8068111022364213,4.0,3.924534104750305 -2014,11,9,0,0,0,0,0,0,0,0.0,1.0,0.0,1.5261905978946877,20,21,25,23,11,17,9,19.280512580175703,1.0,15.284817851844196,4.842856412631874,4.355424764019989,4.05,3.52,3.38,3.656383174700645,6.01,3.57,3.596026160074743,3.8068111022364213,4.0,3.924534104750305 -2014,11,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7630952989473438,22,19,18,21,10,14,4,20.64025629008785,4.0,18.424989456691517,3.895237608421249,4.355424764019989,4.05,3.52,3.38,3.656383174700645,6.01,3.57,3.596026160074743,3.8068111022364213,4.0,3.924534104750305 -2014,11,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,19,15,17,37,7,10,11,26.92076887026355,8.0,36.63571707008165,6.316665814737186,4.60004449388209,4.42,3.61,3.58,4.217693357597816,4.9,4.2,3.7865043290043294,4.31777466759972,4.5,4.095913208057321 -2014,11,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,14,13,33,43,7,21,24,32.2805125801757,7.0,42.71069628490121,9.211903423158436,4.415526838966203,4.53,3.65,3.71,4.217740492170022,5.35,4.08,3.78966618287373,4.303782552083334,4.51,4.056336218200892 -2014,11,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,27,37,44,13,29,29,32.92076887026356,9.0,43.709004825284254,11.633331629474373,4.418567493112948,4.48,3.82,3.97,4.234094808126411,7.91,4.07,3.976798353909465,4.3209129511677284,4.47,4.163597674418605 -2014,11,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,31,39,47,19,34,29,32.201281450439254,7.0,35.144346274101764,11.027379917895153,4.3480518319928505,4.42,3.73,4.01,4.186642685851319,10.0,4.08,3.9371126429578567,4.244115463917526,4.39,4.109401908023483 -2014,11,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,33,40,46,21,31,23,33.2805125801757,8.0,36.16590243507039,9.132142309473906,4.29,4.37,3.47,3.56,4.168890012131015,6.28,4.19,3.7439186200796106,4.202331217541834,4.37,4.004624810030395 -2014,11,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,32,38,47,18,25,20,32.2805125801757,10.0,44.140497504767744,13.553570515789843,4.29,4.37,3.47,3.56,4.168890012131015,6.28,4.19,3.7439186200796106,4.202331217541834,4.37,4.004624810030395 -2014,11,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,27,42,50,12,25,27,30.280512580175703,9.0,41.80486540145105,19.97499872210578,4.29,4.37,3.47,3.56,4.168890012131015,6.28,4.19,3.7439186200796106,4.202331217541834,4.37,4.004624810030395 -2014,11,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,37,49,47,25,38,26,29.561025160351406,8.0,36.79972697169626,18.027379917895153,4.470375,4.77,4.16,5.39,4.402131147540984,10.75,4.34,4.372064795801963,4.400733441033926,4.72,4.210173668380713 -2014,11,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,40,43,42,28,31,18,25.561025160351406,10.0,31.910761757609773,16.553570515789843,4.526788253477589,4.79,4.04,4.55,4.444314794620138,8.34,4.35,4.221216272892493,4.462972555083107,4.75,4.258186550072871 -2014,11,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,35,44,42,22,28,14,24.920768870263554,11.0,30.129415095369282,14.842856412631873,4.702865731462926,5.04,4.11,4.47,4.650652658389047,5.81,4.59,4.2959007791381785,4.674982220466219,4.98,4.377516324626866 -2014,11,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,37,43,39,19,23,8,21.280512580175703,11.0,26.707819012357362,15.132142309473906,4.676486860304287,5.0,4.13,4.69,4.51502954466458,5.92,4.43,4.316524302788845,4.569420401854714,4.91,4.364465046010163 -2014,11,22,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,35,35,32,27,18,16,4,21.640256290087848,10.0,24.26788910732485,13.658332907368592,4.53,4.79,3.36,3.17,4.312275007376807,3.84,4.26,3.6380524881686505,4.346084841934612,4.66,4.2069271982351095 -2014,11,23,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,22,22,19,20,12,10,3,21.640256290087848,10.0,27.657565955529712,14.658332907368592,4.53,4.79,3.36,3.17,4.312275007376807,3.84,4.26,3.6380524881686505,4.346084841934612,4.66,4.2069271982351095 -2014,11,24,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,15,11,17,33,4,7,11,22.561025160351406,10.0,31.32105539998953,18.553570515789843,4.53,4.79,3.36,3.17,4.312275007376807,3.84,4.26,3.6380524881686505,4.346084841934612,4.66,4.2069271982351095 -2014,11,25,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,10,13,35,39,6,20,17,18.92076887026355,8.0,30.255836385973392,19.316665814737185,4.412459627329192,4.54,3.43,3.37,4.162153264975716,3.8,4.09,3.6162649031296574,4.266320754716981,4.48,4.0367765218575515 -2014,11,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,27,38,39,14,24,14,14.920768870263553,4.0,25.486942292783997,14.369047010526561,4.357817130466209,4.47,3.42,3.8,4.1310269532582735,6.57,4.06,3.7574820295983087,4.18073052631579,4.45,4.047245492111195 -2014,11,27,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,32,32,39,46,19,27,16,14.359743709912149,4.0,21.98481038736997,9.07976111368453,4.357817130466209,4.47,3.42,3.8,4.1310269532582735,6.57,4.06,3.7574820295983087,4.18073052631579,4.45,4.047245492111195 -2014,11,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,36,41,36,23,28,12,15.359743709912149,5.0,17.950460215153885,7.842856412631874,4.357817130466209,4.47,3.42,3.8,4.1310269532582735,6.57,4.06,3.7574820295983087,4.18073052631579,4.45,4.047245492111195 -2014,11,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,36,28,25,20,19,4,29.841537740527105,9.0,18.883091418621582,9.132142309473906,4.357817130466209,4.47,3.42,3.8,4.1310269532582735,6.57,4.06,3.7574820295983087,4.18073052631579,4.45,4.047245492111195 -2014,11,30,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,28,26,19,37,12,8,1,38.12205032070281,11.0,27.1586875433119,9.89523760842125,4.357817130466209,4.47,3.42,3.8,4.1310269532582735,6.57,4.06,3.7574820295983087,4.18073052631579,4.45,4.047245492111195 -2014,12,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,17,17,36,50,7,8,13,36.48179403061496,9.0,32.223229178943384,14.316665814737185,4.555346007604563,4.6,3.29,3.64,4.25043245653143,5.42,4.28,3.7541756349548003,4.355918762088975,4.52,4.137162181403958 -2014,12,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,30,39,44,12,17,21,33.12205032070281,11.0,28.098739730510875,14.07976111368453,4.207777777777777,4.16,3.25,3.35,3.8778373983739836,4.79,4.1,3.4955829765802062,3.9735942124301213,4.12,3.787339152925962 -2014,12,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,27,34,40,10,15,14,30.481794030614957,8.0,28.531992799256592,9.132142309473906,4.084727272727274,3.96,3.21,3.15,3.740394366197183,3.76,3.88,3.352827014812955,3.887976007382344,3.95,3.636296840558413 -2014,12,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,30,37,36,12,13,7,27.841537740527105,7.0,24.888433988852633,10.605951711579218,3.996627771295216,3.73,3.14,3.35,3.6329947023995017,5.82,3.67,3.364935158501441,3.782280229033345,3.72,3.5502044638676447 -2014,12,5,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,36,32,32,31,12,9,3,22.561025160351406,9.0,23.28566417407126,10.89523760842125,3.861083359350609,3.62,3.02,3.21,3.429041626331075,4.63,3.41,3.2140991822738063,3.5557744830277014,3.6,3.4197772240949726 -2014,12,6,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,30,27,29,34,10,8,6,21.280512580175703,7.0,24.122903996894884,11.369047010526561,3.7057336621454993,3.55,3.16,3.33,3.2727197395679197,12.03,3.27,3.288181650018498,3.381544170457266,3.51,3.339503900156006 -2014,12,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,30,34,33,13,19,13,21.640256290087848,8.0,22.53634840011784,9.89523760842125,3.7057336621454993,3.55,3.16,3.33,3.2727197395679197,12.03,3.27,3.288181650018498,3.381544170457266,3.51,3.339503900156006 -2014,12,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,37,32,28,19,19,12,19.64025629008785,7.0,24.879364339035444,10.605951711579218,3.7057336621454993,3.55,3.16,3.33,3.2727197395679197,12.03,3.27,3.288181650018498,3.381544170457266,3.51,3.339503900156006 -2014,12,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,30,37,18,22,13,15.640256290087851,7.0,25.739949148182216,9.07976111368453,3.81606374501992,3.65,3.25,3.5,3.3815358690418873,4.92,3.26,3.3958242805412615,3.547381818181818,3.58,3.4568404241727353 -2014,12,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,29,34,36,20,26,15,13.280512580175701,9.0,24.025016861278495,9.842856412631875,3.8250040551500404,3.74,3.36,3.6,3.4355830223880597,6.91,3.27,3.5047385558322155,3.6016587145663763,3.69,3.5351953400800187 -2014,12,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,34,36,33,22,27,11,18.0,9.0,22.189012614543262,10.369047010526561,3.7913618157543385,3.68,3.31,3.71,3.4054285714285712,9.72,3.24,3.4820044543429844,3.6410889856876163,3.62,3.544705953387272 -2014,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,35,26,20,26,7,19.719487419824297,14.0,20.13726784770772,10.132142309473906,3.8825234025234026,3.62,3.3,3.4,3.3965573770491804,7.66,3.24,3.4589606104351414,3.666911935110081,3.5,3.542946252465483 -2014,12,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,31,28,22,19,25,5,24.0,15.0,24.062696216877615,13.184523505263279,3.8569613259668505,3.61,3.12,3.33,3.388283712784588,5.04,3.34,3.3613676633444074,3.570039756782039,3.52,3.4801911405018573 -2014,12,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,28,22,17,18,21,4,26.0,17.0,30.63715769269826,19.421428206315937,3.8569613259668505,3.61,3.12,3.33,3.388283712784588,5.04,3.34,3.3613676633444074,3.570039756782039,3.52,3.4801911405018573 -2014,12,15,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,31,27,20,21,16,18,5,27.0,17.0,33.73396042351099,20.132142309473906,3.8569613259668505,3.61,3.12,3.33,3.388283712784588,5.04,3.34,3.3613676633444074,3.570039756782039,3.52,3.4801911405018573 -2014,12,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,28,22,37,15,18,14,24.64025629008785,15.0,35.42959617333833,18.605951711579216,3.9637299035369775,3.78,3.15,3.31,3.567542553191489,4.27,3.43,3.3770361328125,3.79062764031382,3.75,3.5589193614408514 -2014,12,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,24,35,43,15,25,18,25.280512580175703,15.0,34.09098476208783,19.132142309473906,3.882027376988531,3.73,3.03,3.19,3.549244875943905,4.26,3.47,3.2830729676787462,3.680730593607306,3.67,3.5010914411119236 -2014,12,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,30,39,42,19,27,14,22.64025629008785,15.0,32.09389054042026,19.36904701052656,3.9104302925989676,3.82,3.13,3.1,3.64978287092883,4.9,3.56,3.3387377963737794,3.76065976217875,3.79,3.573570157223376 -2014,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,38,37,18,26,15,22.35974370991215,15.0,31.93356025520835,21.132142309473906,3.9,3.8,3.06,3.14,3.5909080717488786,6.38,3.52,3.296166403370195,3.74559665038381,3.78,3.5982859267521845 -2014,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,36,37,33,20,25,17,19.64025629008785,14.0,30.606837639600826,20.605951711579216,3.6483140495867765,3.49,2.56,2.37,3.2317113043478263,5.49,3.11,2.8788463592665123,3.4510033076074973,3.49,3.3352453014400782 -2014,12,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,34,34,29,17,24,15,18.280512580175703,10.0,27.278272811269446,18.132142309473906,3.6483140495867765,3.49,2.56,2.37,3.2317113043478263,5.49,3.11,2.8788463592665123,3.4510033076074973,3.49,3.3352453014400782 -2014,12,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,31,30,26,18,19,8,19.201281450439254,8.0,26.531619784634238,15.18452350526328,3.6483140495867765,3.49,2.56,2.37,3.2317113043478263,5.49,3.11,2.8788463592665123,3.4510033076074973,3.49,3.3352453014400782 -2014,12,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,26,24,29,14,12,13,21.201281450439254,6.0,32.53206688642841,18.07976111368453,3.2963727538654406,3.0,1.74,1.59,2.829972329828445,3.22,2.73,2.0926981282357624,2.954110535405872,2.93,2.8722971491228066 -2014,12,24,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,19,16,23,31,9,12,19,23.561025160351406,9.0,34.12458604751072,21.7904752168425,3.2027071258097513,2.92,1.55,1.41,2.7660677382319174,2.32,2.74,1.8747238372093022,2.872382578992314,2.87,2.8063412489006154 -2014,12,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,16,17,27,29,11,21,18,27.0,16.0,32.40338764464336,18.895237608421247,3.0836044327573253,2.84,1.64,1.46,2.8121556064073223,3.69,2.84,1.9696791716177222,2.7684218512898333,2.84,2.623028329197684 -2014,12,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,24,25,25,30,16,22,11,27.561025160351402,19.0,40.72808913711305,25.421428206315937,3.0836044327573253,2.84,1.64,1.46,2.8121556064073223,3.69,2.84,1.9696791716177222,2.7684218512898333,2.84,2.623028329197684 -2014,12,27,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,25,23,23,36,13,18,12,27.359743709912152,20.0,45.26857589471063,29.07976111368453,3.0836044327573253,2.84,1.64,1.46,2.8121556064073223,3.69,2.84,1.9696791716177222,2.7684218512898333,2.84,2.623028329197684 -2014,12,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,23,33,43,10,17,23,27.0,20.0,41.79574424606475,28.07976111368453,3.0836044327573253,2.84,1.64,1.46,2.8121556064073223,3.69,2.84,1.9696791716177222,2.7684218512898333,2.84,2.623028329197684 -2014,12,29,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,29,39,47,10,22,22,30.280512580175703,20.0,45.14646288117693,25.36904701052656,3.0836044327573253,2.84,1.64,1.46,2.8121556064073223,3.69,2.84,1.9696791716177222,2.7684218512898333,2.84,2.623028329197684 -2014,12,30,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,41,37,46,57,16,26,24,38.0,22.0,54.002123158527795,25.027379917895153,3.55549364021805,3.46,2.44,2.56,3.829206939281289,11.35,3.65,2.6998983650022095,3.625690571049137,3.75,3.0383699781282374 -2014,12,31,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,41,50,55,21,31,30,38.64025629008785,23.0,55.53614412024899,29.738094021053122,3.484832916571948,3.34,2.16,2.63,3.5217840375586857,8.66,3.42,2.6563426390841536,3.4565865992414664,3.51,3.0787092408022643 -2015,1,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,41,38,43,46,20,30,29,35.92224116782046,24.0,51.07346792835551,32.1081351415535,3.2670306513409964,3.05,1.91,2.03,3.1160029585798816,5.73,3.1,2.3327102803738318,3.1732925682031987,3.06,2.933638590760616 -2015,1,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,34,34,39,42,17,23,24,33.56298822376061,23.0,46.02855820017255,32.1081351415535,3.2670306513409964,3.05,1.91,2.03,3.1160029585798816,5.73,3.1,2.3327102803738318,3.1732925682031987,3.06,2.933638590760616 -2015,1,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,38,33,33,39,13,12,18,31.20373527970077,20.0,43.24457091731116,29.87389790360311,3.2443613024420794,3.24,1.72,2.26,3.081326689504827,7.33,2.91,2.2816375373956856,3.166651825467498,3.44,2.9592280898876404 -2015,1,4,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,28,23,31,55,7,12,25,26.922241167820463,17.0,44.227900459248296,26.04508409335505,3.2443613024420794,3.24,1.72,2.26,3.081326689504827,7.33,2.91,2.2816375373956856,3.166651825467498,3.44,2.9592280898876404 -2015,1,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,31,56,58,16,33,28,20.922241167820463,11.0,35.30129848230731,19.513558569255828,3.2443613024420794,3.24,1.72,2.26,3.081326689504827,7.33,2.91,2.2816375373956856,3.166651825467498,3.44,2.9592280898876404 -2015,1,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,51,48,55,56,21,30,22,18.92224116782046,6.0,29.34646553607141,15.27932133130544,3.340189732142857,3.33,2.11,5.71,3.181385809312639,9.94,3.02,3.0189572433700165,3.295567544238239,3.64,3.1361826426236425 -2015,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,49,59,60,25,36,25,20.844482335640926,5.0,32.41260500200866,12.982033045156605,3.1,3.48,2.31,12.88,2.958903225806452,12.73,2.75,4.1494688385269125,3.014611872146119,3.65,2.929783027965285 -2015,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,56,53,59,55,36,47,35,21.844482335640926,7.0,29.626532496976033,16.450507521057382,3.1850841889117043,3.36,2.38,11.77,3.036433007985803,12.39,2.9,3.591983896220085,3.0941416510318946,3.6,3.0324659720266594 -2015,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,46,57,57,29,42,33,23.562988223760616,9.0,35.54425862791887,15.91898199695816,3.0243597980725103,3.16,2.55,6.68,2.804248780487805,7.66,2.7,2.8693614035087722,2.8941521284019536,3.28,2.8776029197080293 -2015,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,50,55,51,28,38,31,25.281494111880306,11.0,32.209160488840396,17.27932133130544,3.08735918744229,3.07,2.48,5.6,2.8019697437480704,9.84,2.73,3.0379848573092603,2.9079960610536677,3.08,2.9246972388180206 -2015,1,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,44,46,49,24,32,25,23.640747055940153,12.0,29.87068494293423,14.045084093355051,3.08735918744229,3.07,2.48,5.6,2.8019697437480704,9.84,2.73,3.0379848573092603,2.9079960610536677,3.08,2.9246972388180206 -2015,1,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,37,41,51,20,23,23,23.281494111880306,12.0,32.5442058044858,14.982033045156605,3.08735918744229,3.07,2.48,5.6,2.8019697437480704,9.84,2.73,3.0379848573092603,2.9079960610536677,3.08,2.9246972388180206 -2015,1,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,42,52,56,17,29,27,24.92224116782046,12.0,33.543336893312585,17.982033045156605,3.036635687732342,3.0,2.4,4.37,2.7661965317919073,12.07,2.69,2.8030386896356965,2.8721169036334917,3.02,2.863089075221777 -2015,1,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,51,47,55,48,22,31,28,25.92224116782046,13.0,34.32473843482384,19.27932133130544,3.016295652173913,2.97,2.34,4.23,2.7604367004852226,11.29,2.68,2.719516526887025,2.8839141147483285,2.91,2.8538248211820805 -2015,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,43,45,36,23,32,22,27.281494111880306,12.0,33.17701413692273,18.04508409335505,3.2624280502634777,3.16,2.49,4.06,2.927776,10.58,2.83,2.8309694901645925,3.064018195602729,3.1,3.078834006174305 -2015,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,39,33,19,27,19,22.281494111880306,12.0,29.861644109460034,15.27932133130544,3.3959944920440637,3.3,2.78,5.21,3.059214982042073,13.59,2.96,3.261153115100316,3.174736448598131,3.21,3.212019924424596 -2015,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,45,33,29,20,23,15,22.844482335640926,9.0,27.51503457808209,14.810846855404662,3.1135144927536236,3.03,2.41,3.45,2.8028627864103237,7.81,2.72,2.778109945322891,2.9089915966386557,2.98,2.989828629032258 -2015,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,37,29,26,16,20,13,19.640747055940153,8.0,24.508410039361003,13.045084093355051,3.1135144927536236,3.03,2.41,3.45,2.8028627864103237,7.81,2.72,2.778109945322891,2.9089915966386557,2.98,2.989828629032258 -2015,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,31,32,28,16,18,12,22.0,9.0,24.516305770569033,11.342372379503885,3.1135144927536236,3.03,2.41,3.45,2.8028627864103237,7.81,2.72,2.778109945322891,2.9089915966386557,2.98,2.989828629032258 -2015,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,34,33,31,16,18,11,25.640747055940153,12.0,30.427943760743048,12.576609617454274,3.1135144927536236,3.03,2.41,3.45,2.8028627864103237,7.81,2.72,2.778109945322891,2.9089915966386557,2.98,2.989828629032258 -2015,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,41,34,32,16,19,14,27.20373527970077,12.0,34.69396044306924,14.513558569255828,3.0584129371944337,2.88,2.39,3.15,2.721791208791209,8.8,2.62,2.655183395563365,2.8238672768878716,2.84,2.8183378839590443 -2015,1,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,38,37,36,36,16,25,17,24.92224116782046,13.0,37.718161601837,20.982033045156605,3.037719580983078,2.91,2.33,2.83,2.735126353790614,7.66,2.67,2.6186035087719297,2.8556780870806566,2.86,2.8405090712158136 -2015,1,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,37,35,33,18,27,22,20.281494111880306,11.0,34.60689603744674,23.216270283106994,3.040873786407767,2.88,2.37,2.88,2.7225651302605214,6.52,2.62,2.610250756593169,2.8260984308131243,2.8199999999999994,2.8223107366270903 -2015,1,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,35,33,28,17,25,19,14.922241167820463,8.0,29.78511399982877,16.982033045156605,3.0011509229098805,2.89,2.48,4.29,2.6650843098028005,9.19,2.57,2.8133352468427093,2.7728702090592336,2.8199999999999994,2.829579797979798 -2015,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,32,35,31,19,23,15,14.281494111880306,6.0,24.087369066487827,13.747795807206217,3.0011509229098805,2.89,2.48,4.29,2.6650843098028005,9.19,2.57,2.8133352468427093,2.7728702090592336,2.8199999999999994,2.829579797979798 -2015,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,43,44,28,20,27,12,15.562988223760616,7.0,20.264618439192407,14.342372379503885,3.0011509229098805,2.89,2.48,4.29,2.6650843098028005,9.19,2.57,2.8133352468427093,2.7728702090592336,2.8199999999999994,2.829579797979798 -2015,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,44,43,28,23,26,7,20.281494111880306,10.0,20.580345950953514,10.108135141553497,2.951247468610774,2.86,2.59,6.97,2.6112500000000005,10.53,2.51,3.0626679973386564,2.725032967032967,2.81,2.8195375477301656 -2015,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,45,42,25,25,26,6,19.562988223760616,9.0,21.78182639283731,9.63966066565272,2.9826133333333336,2.89,2.59,6.31,2.6614473684210522,9.11,2.54,2.9765292190060073,2.76675,2.82,2.826619574901362 -2015,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,46,37,30,23,19,7,21.844482335640926,8.0,25.45314842753558,11.342372379503885,2.8829047395588927,2.86,2.46,3.67,2.6069296254256527,8.9,2.49,2.7524686192468617,2.722569249297471,2.82,2.761908108811662 -2015,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,41,41,40,20,24,15,23.203735279700773,9.0,27.274061553980335,16.04508409335505,2.9024477806788513,2.8,2.37,5.14,2.561926839642705,11.25,2.48,2.719661260521453,2.6541803278688527,2.77,2.7209636111407534 -2015,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,49,41,39,24,27,15,24.20373527970077,10.0,27.68341126047413,15.810846855404662,2.9024477806788513,2.8,2.37,5.14,2.561926839642705,11.25,2.48,2.719661260521453,2.6541803278688527,2.77,2.7209636111407534 -2015,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,44,39,42,19,21,9,24.281494111880306,9.0,32.79612741121822,14.810846855404662,2.648445353594389,2.8,2.42,7.64,2.2534749034749035,12.45,2.2,2.8388155668358714,2.3979845776375748,2.74,2.578645399907536 -2015,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,40,50,54,14,29,26,21.844482335640926,8.0,27.57595577484979,13.810846855404662,2.648445353594389,2.8,2.42,7.64,2.2534749034749035,12.45,2.2,2.8388155668358714,2.3979845776375748,2.74,2.578645399907536 -2015,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,53,49,48,47,25,32,24,21.92224116782046,6.0,22.614054573054947,11.810846855404662,2.7011160714285714,2.71,2.44,4.2,2.299336432797971,10.85,2.26,2.6478262116432463,2.429897562698693,2.69,2.5361962759105285 -2015,2,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,42,42,47,20,27,19,22.20373527970077,6.0,24.999941276806865,9.342372379503885,2.67009728415079,2.78,2.45,3.23,2.3123790849673203,8.13,2.26,2.594535944803027,2.4075210477081384,2.75,2.5635826545829987 -2015,2,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,40,55,54,19,31,23,18.281494111880306,6.0,22.110766623054175,8.513558569255826,2.761610793131643,2.83,2.59,6.34,2.3441535433070864,12.33,2.29,2.8172450592885374,2.463380770565776,2.77,2.6451968006735425 -2015,2,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,56,51,48,41,26,31,19,15.359252944059843,7.0,16.19275325611874,6.8108468554046615,2.628637083993661,2.62,2.35,4.01,2.1944684854186267,11.15,2.15,2.6240984469597266,2.294416502946955,2.53,2.4991364191364194 -2015,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,42,34,28,20,22,12,16.0,8.0,13.52374687724328,6.873897903603108,2.517238805970149,2.63,2.27,2.52,2.118492040520984,8.53,2.07,2.435226869045697,2.181237964236589,2.47,2.438932579797819 -2015,2,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,34,28,26,13,15,5,16.359252944059847,5.0,15.970773549098077,5.873897903603108,2.517238805970149,2.63,2.27,2.52,2.118492040520984,8.53,2.07,2.435226869045697,2.181237964236589,2.47,2.438932579797819 -2015,2,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,39,39,33,13,14,5,17.71850588811969,6.0,17.001182078669324,5.108135141553497,2.517238805970149,2.63,2.27,2.52,2.118492040520984,8.53,2.07,2.435226869045697,2.181237964236589,2.47,2.438932579797819 -2015,2,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,37,43,33,18,26,8,17.71850588811969,8.0,20.546856237390976,5.873897903603108,2.6287587276958884,2.65,2.44,3.05,2.2960660247592846,12.3,2.21,2.58989124668435,2.382246529238536,2.59,2.4991326061243266 -2015,2,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,40,39,38,20,24,10,18.640747055940153,6.0,23.12599129689349,10.27932133130544,2.673121131741821,2.82,2.56,4.19,2.349510982179859,16.17,2.27,2.7397542735042735,2.416093948370715,2.82,2.5729778427075725 -2015,2,12,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,47,39,48,52,20,30,16,14.999999999999998,4.0,21.665025550077164,10.747795807206217,2.863721021611002,3.17,2.87,8.58,2.5817685025817556,18.81,2.38,3.338837973099781,2.671881014873141,3.17,2.794184639663335 -2015,2,13,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,55,54,51,42,29,35,16,14.999999999999998,3.0,18.812984123334076,8.279321331305438,2.8267919999999997,3.04,2.85,9.66,2.523231005372218,17.86,2.34,3.3904650188521157,2.57320704845815,3.02,2.7753523238380806 -2015,2,14,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,56,50,47,45,26,28,9,16.640747055940153,2.0,18.67668992452698,6.8108468554046615,2.669972299168975,3.07,2.73,17.2,2.3253944626376897,23.11,2.23,4.070815283794291,2.4001299103000306,3.06,2.6754646427249167 -2015,2,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,55,61,54,30,38,12,19.20373527970077,3.0,24.5284701839847,6.342372379503884,2.669972299168975,3.07,2.73,17.2,2.3253944626376897,23.11,2.23,4.070815283794291,2.4001299103000306,3.06,2.6754646427249167 -2015,2,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,59,59,59,49,30,35,17,19.20373527970077,5.0,28.869144556744164,9.982033045156605,2.669972299168975,3.07,2.73,17.2,2.3253944626376897,23.11,2.23,4.070815283794291,2.4001299103000306,3.06,2.6754646427249167 -2015,2,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,53,53,55,50,26,41,25,17.844482335640926,7.0,31.57914706482821,11.684744759007769,2.669972299168975,3.07,2.73,17.2,2.3253944626376897,23.11,2.23,4.070815283794291,2.4001299103000306,3.06,2.6754646427249167 -2015,2,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,51,57,58,29,41,23,20.562988223760616,7.0,27.249379839175283,11.27932133130544,2.837514124293785,4.06,3.06,21.84,2.559536045681656,19.51,2.34,4.494874316939891,2.6664526484751208,4.58,2.8978161724647835 -2015,2,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,54,65,58,38,50,21,20.562988223760616,6.0,21.767124190772446,8.342372379503885,2.8162133072407047,11.45,3.07,24.63,2.567521578298397,20.52,2.37,4.280628140703517,2.6191720376797223,10.56,2.8647955311973017 -2015,2,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,59,61,48,39,42,13,19.640747055940153,7.0,23.537428146410644,8.63966066565272,2.879316659222867,6.42,3.01,20.79,2.658189655172414,16.8,2.42,3.7404889789713702,2.7183034188034187,5.5,2.8727746904552993 -2015,2,21,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,53,53,49,41,28,29,7,20.640747055940153,10.0,29.75004760969163,8.342372379503885,3.0263736667892602,7.08,3.0,12.82,2.857473591549296,12.41,2.55,3.764544785727423,2.863697353708535,6.76,2.990840885860307 -2015,2,22,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,39,39,46,54,16,24,13,23.922241167820463,14.0,39.56764719764141,10.27932133130544,3.0263736667892602,7.08,3.0,12.82,2.857473591549296,12.41,2.55,3.764544785727423,2.863697353708535,6.76,2.990840885860307 -2015,2,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,44,60,55,17,34,31,23.922241167820463,15.0,41.46095483912041,16.324405424660487,3.0263736667892602,7.08,3.0,12.82,2.857473591549296,12.41,2.55,3.764544785727423,2.863697353708535,6.76,2.990840885860307 -2015,2,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,60,56,54,44,27,36,31,22.92224116782046,14.0,33.78051836115093,17.982033045156605,3.141643356643357,5.04,3.26,18.42,3.095664783427495,27.19,2.68,4.320595052759038,3.076114529105537,4.7,3.172624169566593 -2015,2,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,48,48,50,42,24,35,24,23.640747055940153,12.0,29.123191723542185,16.576609617454274,2.9961137602179835,4.8,3.15,11.05,2.8084697508896794,28.5,2.51,3.582705791206663,2.8770834730137445,4.67,3.0702877970992484 -2015,2,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,46,52,56,23,33,27,21.359252944059843,11.0,36.25314992305615,15.982033045156605,3.0399882306786976,4.71,3.21,19.97,3.0202788978494626,25.49,2.61,4.312797888386124,2.9962043539325838,4.69,3.149342274759415 -2015,2,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,48,59,59,23,36,33,21.0,13.0,37.71932303134611,16.855930948759713,2.9422626409603496,3.98,2.91,14.1,2.938473380372033,20.03,2.48,3.971556496255291,2.914256951102589,3.8,3.019331267217631 -2015,2,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,51,50,56,55,24,29,29,21.359252944059843,15.0,37.177459294399675,15.91898199695816,2.9422626409603496,3.98,2.91,14.1,2.938473380372033,20.03,2.48,3.971556496255291,2.914256951102589,3.8,3.019331267217631 -2015,3,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,50,48,48,46,22,24,24,24.640747055940153,16.0,35.435068818643025,11.045084093355051,2.7224786753637735,2.87,2.4,2.8,2.5299588477366255,15.18,2.33,2.622679117147708,2.5609428197293758,2.89,2.7071608860647776 -2015,3,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,41,38,43,43,14,22,22,24.0,17.0,31.777119070329533,13.108135141553497,2.7224786753637735,2.87,2.4,2.8,2.5299588477366255,15.18,2.33,2.622679117147708,2.5609428197293758,2.89,2.7071608860647776 -2015,3,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,44,42,39,39,15,14,12,25.281494111880306,15.0,33.01275061631912,15.936948951801554,2.8492869718309857,3.16,2.51,3.1,2.695536534446764,11.4,2.46,2.7448113984516556,2.7745797598627786,3.29,2.8082417689460355 -2015,3,4,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,34,34,40,49,9,10,11,24.562988223760616,13.0,39.403844201331644,17.576609617454274,2.8551040312093625,4.44,2.63,3.04,2.875608108108108,6.91,2.48,2.865664709022958,2.8814478114478117,4.53,2.918328645447817 -2015,3,5,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,35,37,53,52,11,31,28,21.92224116782046,10.0,35.207762039901034,17.216270283106994,2.91419341894061,5.12,3.22,10.54,2.8326399116347574,13.48,2.55,3.6583698608222686,2.9146390225842285,4.820000000000001,3.2201924697948865 -2015,3,6,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,51,51,52,39,25,38,26,18.562988223760616,7.0,26.53377454848999,12.513558569255828,2.83571299230421,3.58,3.07,12.28,2.5307608695652175,13.32,2.36,3.7555560140292967,2.649740318906606,3.46,3.108035110854694 -2015,3,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,44,39,28,20,28,19,16.20373527970077,4.0,22.4632993077249,8.982033045156603,2.713118576084232,2.86,2.58,2.81,2.4271282633371167,5.76,2.3,2.735525234741784,2.509126213592233,2.76,2.804407918634217 -2015,3,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,38,34,31,23,14,20,17,15.203735279700771,5.0,21.318997693879837,7.8108468554046615,2.713118576084232,2.86,2.58,2.81,2.4271282633371167,5.76,2.3,2.735525234741784,2.509126213592233,2.76,2.804407918634217 -2015,3,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,34,28,28,22,10,17,13,15.203735279700771,6.0,20.301700283408007,7.04508409335505,2.713118576084232,2.86,2.58,2.81,2.4271282633371167,5.76,2.3,2.735525234741784,2.509126213592233,2.76,2.804407918634217 -2015,3,10,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,30,27,26,18,7,9,10,14.922241167820463,5.0,18.419828640783095,7.04508409335505,2.6907006369426756,2.69,2.05,1.87,2.3425943852855755,3.8,2.17,2.2714137284959968,2.4486082751209026,2.55,2.588945282536436 -2015,3,11,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,23,22,22,17,4,7,9,16.0,6.0,18.077401559073333,5.8108468554046615,2.7101620745542956,2.7,2.02,1.79,2.3485623159960745,3.06,2.24,2.25427961929767,2.4405901639344263,2.58,2.6131058890147223 -2015,3,12,0,0,0,0,4,0,0,0.0,0.0,0.0,0.7657627620496116,29,26,25,15,7,7,7,10.640747055940153,3.0,15.272973254055191,4.8108468554046615,2.780592718035563,2.77,2.22,1.99,2.410270935960591,4.75,2.29,2.4097827319100698,2.5092912705272257,2.63,2.6599729197439688 -2015,3,13,0,0,0,0,3,0,0,0.0,2.0,0.0,0.7657627620496116,37,31,21,15,12,10,6,12.281494111880308,2.0,14.999500578450892,4.342372379503884,2.8201881628463905,2.8,2.2,1.98,2.4258556043079382,3.65,2.26,2.3786592401034414,2.534189675870348,2.67,2.6773727901614146 -2015,3,14,0,0,0,0,3,0,0,0.0,3.0,0.0,1.5315255240992232,33,27,19,15,9,7,4,14.0,1.0,15.346385820708761,4.576609617454273,2.7423107569721115,2.64,2.04,1.94,2.3088643116540113,3.52,2.18,2.2992451623220855,2.4088337988826813,2.56,2.571019699908135 -2015,3,15,0,0,0,0,3,0,0,0.0,4.0,0.0,1.5315255240992232,29,26,20,13,5,6,5,16.20373527970077,1.0,10.59804324167393,4.279321331305439,2.7423107569721115,2.64,2.04,1.94,2.3088643116540113,3.52,2.18,2.2992451623220855,2.4088337988826813,2.56,2.571019699908135 -2015,3,16,0,0,0,0,3,0,0,0.0,2.0,0.19678656534080308,2.297288286148835,31,25,13,9,6,5,3,17.281494111880306,2.0,9.619120820500212,3.576609617454273,2.7423107569721115,2.64,2.04,1.94,2.3088643116540113,3.52,2.18,2.2992451623220855,2.4088337988826813,2.56,2.571019699908135 -2015,3,17,0,0,0,0,3,1,2,0.0,0.0,0.0,2.297288286148835,27,22,22,23,4,6,2,19.640747055940153,3.0,14.994722047211253,3.8108468554046615,2.7001961620469084,2.67,2.27,2.07,2.3414224137931035,5.26,2.17,2.395911899541559,2.424745175655616,2.57,2.5579105242917572 -2015,3,18,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,40,34,29,26,10,12,4,15.640747055940153,4.0,14.589443106555702,4.576609617454273,2.8412196094061377,2.81,2.46,2.56,2.427627441638876,10.54,2.24,2.6002699553311324,2.519003831417624,2.72,2.691640718562874 -2015,3,19,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,41,35,28,25,12,14,4,15.922241167820463,3.0,17.317822818405933,7.873897903603108,2.809863616366036,2.77,2.43,2.47,2.4380373333333334,11.34,2.24,2.5571176470588237,2.523033547466096,2.7,2.6688412678044404 -2015,3,20,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,41,36,24,20,12,12,5,15.281494111880308,3.0,15.83365139442887,6.8108468554046615,2.8845004995004992,2.8,2.54,2.48,2.4926731078904996,6.91,2.28,2.6225568320703987,2.572116935483871,2.7099999999999995,2.713143836594772 -2015,3,21,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,33,28,21,22,8,9,6,14.999999999999998,4.0,14.469453855095308,5.576609617454273,2.7712059369202224,2.82,2.43,2.63,2.4086890338614477,9.99,2.29,2.578783000643915,2.4974133871510262,2.77,2.729717074132492 -2015,3,22,0,0,0,0,3,0,1,0.0,0.0,0.0,0.7657627620496116,37,33,30,21,9,10,4,19.92224116782046,6.0,13.702822225685853,3.8738979036031074,2.7712059369202224,2.82,2.43,2.63,2.4086890338614477,9.99,2.29,2.578783000643915,2.4974133871510262,2.77,2.729717074132492 -2015,3,23,0,0,0,0,2,0,1,0.0,0.0,0.0,0.7657627620496116,43,38,34,24,10,8,2,21.359252944059843,8.0,15.348010998799193,2.6396606656527193,2.7712059369202224,2.82,2.43,2.63,2.4086890338614477,9.99,2.29,2.578783000643915,2.4974133871510262,2.77,2.729717074132492 -2015,3,24,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,38,36,32,26,10,8,1,20.0,7.0,17.259839907952767,3.4054234277023308,2.737052341597796,2.74,2.48,2.56,2.339001901140684,7.16,2.16,2.5708871365204535,2.4330128956623676,2.64,2.6004905187274723 -2015,3,25,0,0,0,0,2,0,3,0.0,0.0,0.0,0.7657627620496116,33,32,27,24,9,4,0,17.922241167820463,3.0,20.825517408957097,3.8738979036031074,2.8393506493506493,2.81,2.32,2.21,2.417115286947689,3.82,2.3,2.4828616768050775,2.504882226980728,2.72,2.6602478829869134 -2015,3,26,0,0,0,0,3,0,0,0.0,2.0,0.0,1.5315255240992232,25,24,26,28,3,4,5,9.640747055940153,1.0,18.565163192851358,4.747795807206216,2.761940734557596,2.76,2.1,2.03,2.3926143790849674,3.14,2.28,2.3241655076495134,2.492135785007072,2.71,2.6313276923076923 -2015,3,27,0,0,0,0,3,0,0,0.0,3.0,0.19678656534080308,3.0630510481984463,25,26,36,33,9,20,9,9.640747055940153,1.0,12.117394180257152,3.108135141553496,2.7551367781155016,2.76,2.39,2.42,2.34,5.24,2.21,2.4996885813148793,2.4307962529274003,2.68,2.6295939825299257 -2015,3,28,0,0,0,0,0,0,0,0.0,1.0,0.5903596960224092,3.0630510481984463,31,34,39,28,19,26,4,14.999999999999998,1.0,9.562799378522019,1.1711861897519422,2.665822222222222,2.64,2.38,2.39,2.2347108603667136,8.57,2.11,2.470401935243766,2.323370125091979,2.54,2.5193208352043106 -2015,3,29,0,0,0,0,0,0,1,0.0,1.0,0.5903596960224092,3.828813810248058,34,34,32,20,20,20,2,13.640747055940153,1.0,13.064339421702774,1.1711861897519422,2.665822222222222,2.64,2.38,2.39,2.2347108603667136,8.57,2.11,2.470401935243766,2.323370125091979,2.54,2.5193208352043106 -2015,3,30,0,0,0,0,0,0,3,0.0,1.0,0.5903596960224092,5.360339334347281,31,27,21,15,12,12,1,11.0,1.0,10.814214360509915,0.9369489518015538,2.665822222222222,2.64,2.38,2.39,2.2347108603667136,8.57,2.11,2.470401935243766,2.323370125091979,2.54,2.5193208352043106 -2015,3,31,0,0,0,0,1,1,5,0.0,0.0,0.5903596960224092,4.59457657229767,26,26,19,12,7,5,0,18.077758832179537,4.0,9.747910044300339,0.9369489518015538,2.671823139851967,2.61,2.33,2.44,2.248934010152284,8.74,2.14,2.43551261829653,2.343045685279188,2.49,2.5089691617199943 -2015,4,1,0,0,0,0,2,1,6,0.0,0.0,0.0,3.0630510481984463,30,27,16,7,7,6,0,21.71850588811969,7.0,14.196641129395186,1.1711861897519422,2.59143342776204,2.65,2.27,2.47,2.277059866962306,4.29,2.2,2.4196536972906904,2.398313846153846,2.45,2.5179547777210014 -2015,4,2,0,0,0,0,2,2,9,0.0,0.0,0.0,1.5315255240992232,26,20,13,10,6,3,0,20.71850588811969,8.0,22.126792360826034,1.9369489518015537,2.5882594936708863,2.59,2.12,2.1,2.25,2.93,2.2,2.2997082441113488,2.3473268801191365,2.47,2.498809629959875 -2015,4,3,0,0,0,0,3,4,7,0.0,0.0,0.0,0.7657627620496116,19,15,16,22,2,2,1,22.359252944059847,6.0,24.955090752030063,4.342372379503884,2.6511668524712,2.57,1.97,1.84,2.211691176470588,3.16,2.2,2.2234001292824823,2.2979850582289605,2.57,2.5119096069401303 -2015,4,4,0,0,0,0,3,0,1,0.0,0.0,0.0,0.7657627620496116,20,18,24,22,4,11,5,22.359252944059847,5.0,20.304596653985385,4.8108468554046615,2.6511668524712,2.57,1.97,1.84,2.211691176470588,3.16,2.2,2.2234001292824823,2.2979850582289605,2.57,2.5119096069401303 -2015,4,5,0,0,0,0,2,0,1,0.0,0.0,0.0,0.7657627620496116,28,22,18,19,9,13,6,21.71850588811969,11.0,16.467199186327047,2.4054234277023308,2.6511668524712,2.57,1.97,1.84,2.211691176470588,3.16,2.2,2.2234001292824823,2.2979850582289605,2.57,2.5119096069401303 -2015,4,6,0,0,0,0,3,0,4,0.0,0.0,0.0,0.0,25,17,17,18,5,9,1,22.077758832179533,13.0,16.68211063778876,3.171186189751942,2.6511668524712,2.57,1.97,1.84,2.211691176470588,3.16,2.2,2.2234001292824823,2.2979850582289605,2.57,2.5119096069401303 -2015,4,7,0,0,0,0,4,2,9,0.0,0.0,0.0,0.0,25,17,17,14,2,1,0,19.71850588811969,16.0,17.68222568310989,3.936948951801554,2.6650117757889777,2.67,2.15,1.83,2.3018105965790574,3.91,2.26,2.2927418341708545,2.405050505050505,2.54,2.517638123603872 -2015,4,8,0,0,0,1,6,6,9,0.0,0.0,0.0,0.0,27,23,15,14,3,0,0,17.077758832179537,13.0,18.753871957644662,5.2342372379503885,2.7346146830825355,2.67,2.22,2.25,2.344459564541213,5.99,2.28,2.3821713409290095,2.449122807017544,2.58,2.546991951710262 -2015,4,9,0,0,1,1,6,7,10,0.0,0.0,0.0,0.0,30,24,9,13,5,0,0,16.359252944059847,10.0,20.790471805183884,6.63966066565272,2.733860561914672,2.62,2.18,2.09,2.354925373134328,3.44,2.29,2.3887954729183507,2.447719475277498,2.58,2.5455220069100197 -2015,4,10,0,0,0,0,6,2,3,0.0,0.0,0.0,0.0,22,17,12,17,2,1,3,17.640747055940153,9.0,18.13115770305602,5.63966066565272,2.722830867652939,2.62,1.94,1.72,2.3356909684439606,3.63,2.26,2.1106005221932116,2.412022471910112,2.53,2.5204373409669207 -2015,4,11,0,0,0,0,5,1,2,0.0,0.0,0.0,0.0,19,18,17,13,3,6,2,20.359252944059843,7.0,14.93755810577639,3.4054234277023308,2.626933614330875,2.49,1.84,1.47,2.2173296133917897,2.6,2.18,1.914754098360656,2.30435558289757,2.38,2.426284127171729 -2015,4,12,0,0,0,0,4,1,4,0.0,0.0,0.19678656534080308,0.7657627620496116,17,17,12,7,5,3,0,19.92224116782046,4.0,15.444257214720533,3.4054234277023308,2.626933614330875,2.49,1.84,1.47,2.2173296133917897,2.6,2.18,1.914754098360656,2.30435558289757,2.38,2.426284127171729 -2015,4,13,0,0,0,0,4,1,5,0.0,0.0,0.39357313068160615,1.5315255240992232,15,11,8,11,2,2,1,21.0,4.0,14.528138150976782,3.108135141553496,2.626933614330875,2.49,1.84,1.47,2.2173296133917897,2.6,2.18,1.914754098360656,2.30435558289757,2.38,2.426284127171729 -2015,4,14,0,0,0,0,6,2,2,0.0,0.0,0.5903596960224092,3.0630510481984463,11,11,12,11,2,2,4,23.077758832179537,7.0,12.71915276152676,3.576609617454273,2.6648327989005955,2.5,1.91,1.77,2.261030749242096,3.09,2.22,2.1035843714609284,2.359331358442658,2.3999999999999995,2.4262346938775514 -2015,4,15,0,0,0,0,5,2,2,0.0,0.0,0.0,0.7657627620496116,14,12,12,11,4,2,1,21.359252944059843,6.0,21.74873532468986,3.639660665652719,2.6327947154471545,2.5,1.97,1.82,2.276437246963563,3.15,2.24,2.100983694199412,2.386416539050536,2.43,2.4400034855350294 -2015,4,16,0,0,0,0,4,2,3,0.0,0.0,0.0,0.0,19,14,10,6,6,2,0,16.281494111880306,4.0,23.299452474825863,10.936948951801554,2.6353152039555003,2.54,2.03,1.84,2.299114832535885,2.52,2.26,2.1457192102789096,2.391811151811152,2.44,2.4637724770642206 -2015,4,17,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,13,9,5,4,2,1,0,13.281494111880308,2.0,18.74142442434806,11.045084093355051,2.6515649867374007,2.54,1.8,1.65,2.264909688013136,2.55,2.22,1.9806672932330827,2.3675577003776755,2.4500000000000006,2.469414154038432 -2015,4,18,0,0,0,0,6,1,4,0.0,0.0,0.0,0.0,11,5,5,6,0,0,0,10.922241167820463,2.0,16.98579385799305,5.513558569255827,2.725916285613788,2.61,1.73,1.63,2.2728215613382896,1.8,2.24,1.990212806384191,2.3866124661246615,2.5,2.54423053638455 -2015,4,19,0,0,0,0,5,3,4,0.0,0.0,0.39357313068160615,1.5315255240992232,17,12,8,10,2,1,1,9.922241167820463,1.0,16.58571926032925,3.8108468554046615,2.725916285613788,2.61,1.73,1.63,2.2728215613382896,1.8,2.24,1.990212806384191,2.3866124661246615,2.5,2.54423053638455 -2015,4,20,0,0,0,0,6,1,1,0.0,0.0,0.7871462613632123,3.0630510481984463,20,12,12,19,0,3,4,7.562988223760616,3.0,15.567844016381027,3.3423723795038844,2.725916285613788,2.61,1.73,1.63,2.2728215613382896,1.8,2.24,1.990212806384191,2.3866124661246615,2.5,2.54423053638455 -2015,4,21,0,0,0,0,3,0,1,0.0,0.0,0.5903596960224092,2.297288286148835,12,11,18,19,3,8,3,11.359252944059845,7.0,12.470326607972744,2.6396606656527193,2.6466684406599255,2.59,1.88,1.8,2.2931883387320684,3.15,2.16,2.0711658291457287,2.3852256728778465,2.52,2.4448147518694765 -2015,4,22,0,0,0,0,3,0,3,0.0,0.0,0.0,0.7657627620496116,15,15,24,22,4,6,1,17.359252944059847,7.0,12.591407177840171,2.4054234277023308,2.733080589254766,2.66,2.05,1.9,2.35,3.3,2.22,2.164635519279482,2.442762148337596,2.58,2.489207560256632 -2015,4,23,0,0,0,0,4,1,6,0.0,0.0,0.0,0.0,22,24,24,19,6,9,2,20.077758832179537,8.0,11.776070765289434,3.639660665652719,2.76,2.68,2.11,1.97,2.393986083499006,3.54,2.19,2.224807403701851,2.495743855109961,2.61,2.5171707406056183 -2015,4,24,0,0,0,0,4,1,6,0.0,0.0,0.0,0.0,24,24,22,16,8,9,1,20.077758832179537,9.0,13.919101186647556,6.405423427702331,2.7127030231179607,2.62,2.14,1.98,2.3448938053097343,3.68,2.13,2.2318197375926982,2.4482916666666665,2.54,2.47130609266691 -2015,4,25,0,0,0,0,4,2,9,0.0,0.0,0.0,0.0,22,22,21,12,8,4,0,19.0,10.0,16.55016977588595,5.405423427702331,2.637168654173765,2.6,1.85,1.7,2.284311958405546,2.95,2.24,2.052139061116032,2.3749415887850467,2.49,2.4611440202133634 -2015,4,26,0,0,0,0,6,3,7,0.0,0.0,0.0,0.0,20,19,19,15,6,5,1,19.0,7.0,19.936936435710727,9.171186189751943,2.637168654173765,2.6,1.85,1.7,2.284311958405546,2.95,2.24,2.052139061116032,2.3749415887850467,2.49,2.4611440202133634 -2015,4,27,0,0,0,0,5,0,4,0.0,0.0,0.0,0.0,16,17,19,14,7,9,2,7.922241167820462,1.0,16.844212582349673,5.8108468554046615,2.637168654173765,2.6,1.85,1.7,2.284311958405546,2.95,2.24,2.052139061116032,2.3749415887850467,2.49,2.4611440202133634 -2015,4,28,0,0,0,0,3,0,1,0.0,3.0,0.39357313068160615,1.5315255240992232,13,11,16,12,6,9,5,10.359252944059845,1.0,12.061554734955338,4.8108468554046615,2.62532590051458,2.53,2.04,1.86,2.2774395448079656,2.79,2.23,2.1794212034383955,2.3818807947019867,2.42,2.399299173553719 -2015,4,29,0,0,0,0,3,0,1,0.0,3.0,0.7871462613632123,3.0630510481984463,13,8,14,10,6,7,2,13.359252944059845,1.0,9.547354835717751,3.108135141553496,2.642727272727273,2.54,1.96,1.92,2.33,3.07,2.27,2.1080454545454543,2.431095468543775,2.46,2.442215189873418 -2015,4,30,0,0,0,0,3,0,0,0.0,5.0,1.3775059573856216,6.126102096396893,15,11,16,9,4,6,1,12.640747055940153,0.0,7.934024218103428,1.1711861897519422,2.6416949152542375,2.57,2.05,1.87,2.351787781350482,2.52,2.3,2.157097345132743,2.4394827586206898,2.49,2.4711375245579568 -2015,5,1,0,0,0,0,2,0,2,0.0,4.0,1.3775059573856216,7.657627620496116,16,12,11,9,6,8,1,10.281494111880308,0.0,8.356726659451581,0.4684744759007769,2.71514669591445,2.57,2.1,1.87,2.3729562527618207,1.92,2.25,2.2712701963708675,2.464021421616358,2.51,2.476227202472952 -2015,5,2,0,0,0,0,2,0,3,0.0,2.0,1.3775059573856216,7.891864858446504,15,10,6,4,4,5,0,11.281494111880308,0.0,5.588410168332503,0.4684744759007769,2.830599411292481,2.66,2.12,1.9,2.472576077131666,1.7,2.34,2.366442603550296,2.5446913580246915,2.6,2.606801130803523 -2015,5,3,0,0,0,2,2,0,4,0.0,0.0,1.1807193920448185,7.126102096396893,10,6,2,1,2,2,0,10.922241167820463,3.0,6.030975318147991,0.4684744759007769,2.830599411292481,2.66,2.12,1.9,2.472576077131666,1.7,2.34,2.366442603550296,2.5446913580246915,2.6,2.606801130803523 -2015,5,4,0,0,1,2,3,2,6,0.0,0.0,0.5903596960224092,1.5315255240992232,4,1,1,4,0,0,0,12.640747055940153,4.0,7.861345965771513,1.468474475900777,2.830599411292481,2.66,2.12,1.9,2.472576077131666,1.7,2.34,2.366442603550296,2.5446913580246915,2.6,2.606801130803523 -2015,5,5,1,2,1,2,5,4,7,0.0,0.0,0.5903596960224092,1.5315255240992232,1,1,5,4,0,0,0,15.640747055940153,6.0,10.452849803634033,2.8738979036031074,2.9086217948717947,2.7,2.25,2.01,2.5412740544127406,1.98,2.41,2.39398440038999,2.6542139037433157,2.64,2.6513593058863556 -2015,5,6,0,1,2,2,5,4,9,0.0,0.0,0.19678656534080308,2.297288286148835,4,2,2,2,0,0,0,17.359252944059847,7.0,10.634143530460324,1.9369489518015537,2.8752215743440233,2.74,2.27,2.09,2.5161983002832864,2.11,2.43,2.4361924821775762,2.6252640545144805,2.64,2.6761792528459196 -2015,5,7,0,1,4,3,5,6,10,0.0,0.0,0.0,0.7657627620496116,4,2,0,1,0,0,0,13.359252944059845,11.0,13.219161268157542,2.171186189751942,2.8948136142625605,2.74,2.28,2.15,2.51,2.15,2.48,2.4186882245271506,2.6207282051282053,2.65,2.6788847251962884 -2015,5,8,0,2,5,1,7,7,10,0.0,0.0,0.0,0.0,3,0,0,7,0,0,0,9.0,12.0,15.342025280609052,5.0,2.9228697850821748,2.75,2.17,1.9,2.5693631227529528,1.96,2.5,2.330618556701031,2.644119601328904,2.7,2.6950839515814136 -2015,5,9,0,2,3,1,8,8,11,0.0,0.0,0.0,0.0,6,2,2,7,0,0,0,5.640747055940154,8.0,16.535401510228812,7.936948951801554,2.990291878172589,2.77,2.11,1.92,2.5989883093525177,1.88,2.56,2.3668957746478876,2.6620444174018862,2.76,2.729038037891027 -2015,5,10,4,6,3,1,10,10,10,0.0,0.0,0.0,0.0,0,0,4,8,0,0,0,7.359252944059845,3.0,18.71824865759878,4.342372379503884,2.990291878172589,2.77,2.11,1.92,2.5989883093525177,1.88,2.56,2.3668957746478876,2.6620444174018862,2.76,2.729038037891027 -2015,5,11,5,7,3,0,11,9,6,0.0,0.0,0.19678656534080308,3.0630510481984463,1,0,3,14,0,0,1,12.796264720299227,3.0,15.414252407102104,2.8738979036031074,2.990291878172589,2.77,2.11,1.92,2.5989883093525177,1.88,2.56,2.3668957746478876,2.6620444174018862,2.76,2.729038037891027 -2015,5,12,4,7,0,0,12,5,4,0.0,0.0,0.5903596960224092,3.0630510481984463,1,0,10,13,0,0,2,14.155517664359074,6.0,9.676526377690015,2.8738979036031074,3.056651108518086,2.87,2.39,2.38,2.641030042918455,2.71,2.58,2.619112,2.7349827288428323,2.82,2.7903337266138544 -2015,5,13,0,0,0,0,8,3,4,0.0,0.0,0.19678656534080308,3.0630510481984463,7,7,15,11,1,2,1,14.71850588811969,9.0,10.450806497199945,1.4054234277023308,3.0262471482889737,2.92,2.34,1.94,2.6607593818984547,2.29,2.59,2.4554661791590493,2.7565102639296186,2.82,2.8024379859311366 -2015,5,14,0,0,0,0,6,3,9,0.0,0.0,0.0,2.297288286148835,11,10,12,8,2,1,0,11.71850588811969,11.0,9.368820207144692,1.7027117138511654,2.996399394856278,2.87,2.31,1.86,2.649515033947624,1.96,2.59,2.4252655485674355,2.72640522875817,2.8,2.7976370409792444 -2015,5,15,0,0,1,1,6,6,9,0.0,0.0,0.0,0.0,10,7,3,4,1,0,0,12.796264720299227,11.0,13.297394624797214,5.468474475900777,3.0402242703533027,2.87,2.07,1.9,2.6614380165289258,1.78,2.55,2.290090352666861,2.7655066589461494,2.8,2.8020367619754922 -2015,5,16,0,1,3,3,8,7,11,0.0,0.0,0.0,0.0,6,2,1,2,0,0,0,11.437011776239382,8.0,14.93667561143467,7.936948951801554,3.1110344827586207,2.94,1.9,2.14,2.6986735419630157,1.69,2.65,2.3048308051341886,2.7615219062259797,2.88,2.8885238639611317 -2015,5,17,2,5,7,3,10,9,10,0.0,0.0,0.0,0.7657627620496116,1,0,0,1,0,0,0,8.71850588811969,7.0,12.117835221622428,2.6396606656527193,3.1110344827586207,2.94,1.9,2.14,2.6986735419630157,1.69,2.65,2.3048308051341886,2.7615219062259797,2.88,2.8885238639611317 -2015,5,18,0,4,6,1,12,9,11,0.0,0.0,0.0,1.5315255240992232,5,1,1,11,0,0,0,5.796264720299228,7.0,12.631840840389263,1.7027117138511654,3.1110344827586207,2.94,1.9,2.14,2.6986735419630157,1.69,2.65,2.3048308051341886,2.7615219062259797,2.88,2.8885238639611317 -2015,5,19,0,3,0,0,12,8,11,0.0,0.0,0.0,1.5315255240992232,5,0,11,16,0,0,0,7.437011776239382,6.0,15.413976696222177,1.7027117138511654,3.170083217753121,3.05,2.32,2.4,2.7949999999999995,2.17,2.7,2.5214258658008655,2.872505330490405,2.98,2.9512684787792085 -2015,5,20,0,0,0,0,9,5,10,0.0,0.0,0.0,3.0630510481984463,9,9,17,16,1,1,1,5.077758832179537,5.0,14.106300436088313,2.171186189751942,3.253077645585473,3.13,2.42,2.57,2.859488130563798,2.12,2.72,2.6674045605944148,2.9463449457452886,3.06,3.0236784825870644 -2015,5,21,0,0,0,0,8,2,5,0.0,0.0,0.0,3.0630510481984463,12,13,12,10,3,5,3,3.7962647202992286,7.0,11.969439448704469,1.8738979036031076,3.1578035935563813,3.01,2.42,2.24,2.7510818713450296,2.25,2.56,2.5626816212082595,2.8528887523048554,2.92,2.9253985285101165 -2015,5,22,0,0,0,0,6,1,4,0.0,0.0,0.0,0.7657627620496116,6,7,8,9,2,5,2,8.437011776239382,7.0,11.073361046655851,2.171186189751942,3.0937125748503,2.94,2.03,1.84,2.708722826086957,2.16,2.42,2.2458141470180304,2.799182444061962,2.86,2.8565879518072292 -2015,5,23,0,0,0,0,5,2,8,0.0,0.0,0.0,0.0,13,12,4,6,2,1,0,8.796264720299227,6.0,10.831900469126966,3.468474475900777,3.057217874274173,2.83,2.02,1.89,2.5942875989445913,1.68,2.4,2.264830694810906,2.657056694813028,2.75,2.8128936170212766 -2015,5,24,0,0,1,1,7,6,8,0.0,0.0,0.0,0.7657627620496116,4,5,2,3,0,0,0,8.359252944059845,4.0,10.493864661150711,2.4054234277023308,3.057217874274173,2.83,2.02,1.89,2.5942875989445913,1.68,2.4,2.264830694810906,2.657056694813028,2.75,2.8128936170212766 -2015,5,25,1,3,5,3,9,7,9,0.0,0.0,0.19678656534080308,3.0630510481984463,1,0,0,1,0,0,0,8.640747055940153,3.0,9.498322821698824,2.171186189751942,3.057217874274173,2.83,2.02,1.89,2.5942875989445913,1.68,2.4,2.264830694810906,2.657056694813028,2.75,2.8128936170212766 -2015,5,26,5,6,6,2,11,8,9,0.0,0.0,0.7871462613632123,4.59457657229767,0,0,0,2,0,0,0,7.0,3.0,8.264801811967239,0.9369489518015538,3.057217874274173,2.83,2.02,1.89,2.5942875989445913,1.68,2.4,2.264830694810906,2.657056694813028,2.75,2.8128936170212766 -2015,5,27,6,8,6,4,11,9,10,0.0,1.0,1.3775059573856216,6.59457657229767,0,0,0,0,0,0,0,4.359252944059845,1.0,6.865029336899898,0.23423723795038845,2.930460652591171,2.78,2.18,2.31,2.515843137254902,2.41,2.42,2.4477144626819447,2.5461372180451125,2.69,2.730091346952334 -2015,5,28,6,7,4,3,11,8,12,0.0,1.0,1.3775059573856216,8.36033933434728,0,0,0,0,0,0,0,1.3592529440598455,0.0,6.0594415232247485,0.23423723795038845,2.96407703851926,2.76,2.15,2.27,2.5778532201697453,2.62,2.44,2.3835846685516806,2.684745042492918,2.6900000000000004,2.7377674638137193 -2015,5,29,2,4,6,3,10,9,10,0.6407470559401542,3.0,1.7710790880672276,8.891864858446505,0,0,0,2,0,0,0,1.0,0.0,7.048634534835477,0.4684744759007769,2.90634996582365,2.66,1.95,1.87,2.459675141242938,1.62,2.35,2.2520522656437305,2.5484326018808776,2.6,2.6625643059490085 -2015,5,30,4,7,6,1,11,10,9,0.6407470559401542,5.0,2.482698747823949,12.18915314459534,0,0,1,7,0,0,0,3.2814941118803085,0.0,4.987963254647913,0.4684744759007769,2.90634996582365,2.66,1.95,1.87,2.459675141242938,1.62,2.35,2.2520522656437305,2.5484326018808776,2.6,2.6625643059490085 -2015,5,31,3,7,1,0,12,8,7,1.3592529440598455,3.0,3.9217295297534505,13.18915314459534,1,1,10,9,0,0,0,1.9222411678204627,0.0,1.4249656167471962,0.23423723795038845,2.90634996582365,2.66,1.95,1.87,2.459675141242938,1.62,2.35,2.2520522656437305,2.5484326018808776,2.6,2.6625643059490085 -2015,6,1,0,1,0,0,12,4,9,0.6407470559401542,1.0,3.6194744630943942,12.891864858446505,15,8,11,6,0,1,0,7.718505888119691,1.0,0.5157020055891308,0.0,2.784503870513723,2.59,1.66,1.77,2.39149945474373,1.62,2.19,2.002560039613766,2.497923907937999,2.5,2.544689740420272 -2015,6,2,0,0,0,1,8,4,10,0.0,1.0,2.349938436689812,12.126102096396894,16,11,8,2,1,1,0,9.71850588811969,1.0,1.4503896722916534,0.0,2.733089598352214,2.6,1.59,1.84,2.3688945578231295,1.87,1.95,2.0214873200822483,2.480505263157895,2.47,2.5152669404517454 -2015,6,3,0,0,0,2,6,4,12,0.0,1.0,1.5742925227264246,10.59457657229767,11,7,4,1,2,0,0,8.71850588811969,1.0,2.806967191297113,0.0,2.78797783933518,2.58,1.53,1.66,2.3752132196162044,1.47,2.01,1.980874966957441,2.4952347083926028,2.47,2.5168 -2015,6,4,0,0,3,4,6,6,13,0.0,0.0,1.7516830094593736,9.063051048198446,10,6,0,0,1,0,0,6.359252944059845,3.0,2.4404101595514645,0.0,2.750704006223259,2.59,1.68,1.53,2.4002995008319465,1.33,2.23,1.935792377131394,2.5118106617647054,2.48,2.529149026850405 -2015,6,5,0,1,3,6,8,8,14,0.0,1.0,1.7516830094593736,8.297288286148834,7,2,0,0,0,0,0,2.2814941118803085,2.0,2.512734426279891,0.23423723795038845,2.7358375293722723,2.54,1.54,1.37,2.3407396301849075,1.29,2.2,1.7980602240896357,2.454051585169264,2.45,2.4838614918995905 -2015,6,6,0,1,1,6,10,10,14,1.7185058881196913,1.0,1.5848383438303328,10.82881381024806,3,1,2,1,0,0,0,0.0,1.0,2.2578452402382294,0.23423723795038845,2.6540591534931157,2.46,1.5,1.32,2.2642190856090827,1.22,2.14,1.799646920360926,2.3412885258076495,2.38,2.4759610244988863 -2015,6,7,0,0,3,8,10,12,15,4.718505888119691,5.0,2.098511929589245,10.59457657229767,8,5,0,0,0,0,0,0.0,0.0,2.3850288374783495,0.23423723795038845,2.6540591534931157,2.46,1.5,1.32,2.2642190856090827,1.22,2.14,1.799646920360926,2.3412885258076495,2.38,2.4759610244988863 -2015,6,8,0,2,6,8,11,12,16,7.077758832179537,10.0,3.958392765412369,13.126102096396894,4,1,0,0,0,0,0,0.0,0.0,1.1627585329738963,0.0,2.6540591534931157,2.46,1.5,1.32,2.2642190856090827,1.22,2.14,1.799646920360926,2.3412885258076495,2.38,2.4759610244988863 -2015,6,9,2,5,5,10,12,12,16,4.437011776239383,7.0,5.501952889181103,11.59457657229767,1,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.8097019230769233,2.64,1.85,2.11,2.4545472440944884,1.66,2.28,2.2229285714285716,2.595496688741722,2.55,2.6071598500896203 -2015,6,10,2,3,9,10,11,12,16,1.6407470559401542,5.0,4.136073849629111,11.82881381024806,0,0,0,0,0,0,0,2.0,0.0,0.4144044288263923,0.0,2.9836020942408377,2.79,2.05,2.31,2.647390862944163,2.57,2.48,2.4111620872195614,2.7654363207547172,2.73,2.7499316770186337 -2015,6,11,7,8,7,7,13,13,17,1.2814941118803085,5.0,3.262966849385437,12.828813810248057,0,0,1,1,0,0,0,3.0,0.0,1.4881229597806496,0.0,3.042345779220779,2.85,2.08,2.39,2.710119870908253,3.13,2.52,2.451492867683227,2.8536021926389976,2.76,2.820772269136475 -2015,6,12,6,10,6,4,14,13,17,0.0,7.0,3.4997050805989547,12.657627620496116,0,0,1,1,0,0,0,5.640747055940154,0.0,1.9818751138790895,0.23423723795038845,3.0100762582613116,2.83,2.06,2.29,2.646749226006192,2.26,2.45,2.3505511257035647,2.7820738636363633,2.71,2.788114304165321 -2015,6,13,8,9,7,5,16,14,15,0.0,7.0,3.770527666307376,14.423390382545728,0,0,1,0,0,0,0,6.640747055940154,0.0,1.1059351311777348,0.23423723795038845,2.911542844120328,2.7,1.76,1.85,2.5459207459207462,1.55,2.36,2.068380902957966,2.664009661835749,2.63,2.7238736842105262 -2015,6,14,4,8,9,8,16,15,15,0.0,8.0,4.1719965281970115,14.95491590664495,0,0,0,0,0,0,0,2.640747055940154,0.0,0.9842728861296915,0.23423723795038845,2.911542844120328,2.7,1.76,1.85,2.5459207459207462,1.55,2.36,2.068380902957966,2.664009661835749,2.63,2.7238736842105262 -2015,6,15,0,7,10,7,17,15,15,0.0,7.0,5.004876151688045,17.720678668694564,6,0,0,1,0,0,0,0.7185058881196914,0.0,2.377309138646008,0.0,2.911542844120328,2.7,1.76,1.85,2.5459207459207462,1.55,2.36,2.068380902957966,2.664009661835749,2.63,2.7238736842105262 -2015,6,16,0,8,7,4,17,16,13,0.6407470559401542,7.0,5.697099732836912,17.954915906644953,2,0,0,2,0,0,0,3.0,0.0,0.36350466053603847,0.0,3.0027146510778224,2.83,2.24,2.22,2.6580479452054795,2.04,2.5,2.5009589879616407,2.8021141088014154,2.73,2.8027361606553045 -2015,6,17,1,4,3,6,16,16,13,0.6407470559401542,8.0,5.923828197889478,19.954915906644953,0,0,0,1,0,0,0,2.640747055940154,0.0,0.11098985351032979,0.0,3.082830267558528,2.87,2.29,2.31,2.724551422319475,2.08,2.54,2.50895656779661,2.868900900900901,2.78,2.8514207868155235 -2015,6,18,0,2,7,5,17,16,15,0.6407470559401542,8.0,6.754333442364558,20.954915906644953,3,0,0,1,0,0,0,1.9222411678204627,0.0,0.07076247675768944,0.0,3.10600790513834,2.89,2.22,2.41,2.76592868338558,2.05,2.59,2.546296380605509,2.915410628019324,2.8,2.86918683446273 -2015,6,19,5,7,3,5,16,15,16,0.0,9.0,8.666027754666572,20.18915314459534,0,0,1,1,0,0,0,3.3592529440598455,0.0,0.07076247675768944,0.0,3.024054794520548,2.83,2.15,2.41,2.698092885375494,1.71,2.5,2.485305875227135,2.8561129242819843,2.73,2.794563470808784 -2015,6,20,0,3,4,9,16,14,16,0.0,10.0,7.675731556526836,19.65762762049612,3,1,1,0,0,0,0,3.9222411678204625,0.0,0.25488918604166166,0.0,2.8928412771864873,2.74,1.95,1.92,2.606606642657063,1.57,2.39,2.3187152847152843,2.761867403314917,2.65,2.739984907558798 -2015,6,21,4,9,8,9,17,16,16,0.0,7.0,8.906009276069256,19.126102096396895,1,0,0,0,0,0,0,1.6407470559401542,0.0,0.21228743027306834,0.0,2.8928412771864873,2.74,1.95,1.92,2.606606642657063,1.57,2.39,2.3187152847152843,2.761867403314917,2.65,2.739984907558798 -2015,6,22,7,10,9,11,17,16,16,0.6407470559401542,7.0,7.3905945064727225,20.126102096396895,0,0,0,0,0,0,0,3.0,0.0,0.2525148070257087,0.0,2.8928412771864873,2.74,1.95,1.92,2.606606642657063,1.57,2.39,2.3187152847152843,2.761867403314917,2.65,2.739984907558798 -2015,6,23,6,11,9,6,18,17,17,0.6407470559401542,8.0,7.7890957890531185,20.42339038254573,1,0,0,0,0,0,0,1.6407470559401542,0.0,0.07076247675768944,0.0,2.964916003536693,2.74,2.1,2.26,2.62631874298541,2.51,2.41,2.410651408450704,2.7956285390713473,2.67,2.718355690775826 -2015,6,24,5,5,3,8,16,16,17,1.3592529440598455,8.0,9.311824614677066,19.954915906644953,0,0,0,0,0,0,0,0.6407470559401542,0.0,0.0,0.0,2.985716928769658,2.82,1.96,2.28,2.683103448275862,2.01,2.45,2.3671950271950273,2.8514636642784037,2.73,2.7568616012833598 -2015,6,25,2,3,5,9,15,15,17,5.077758832179537,10.0,9.107954907173449,20.18915314459534,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0106148409894,2.75,1.65,2.06,2.640677333333333,1.55,2.44,2.1221755183186595,2.84238713868139,2.69,2.6957658450704227 -2015,6,26,2,4,3,7,15,15,17,8.437011776239382,11.0,9.750217879510984,20.18915314459534,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0656852791878175,2.79,1.57,1.76,2.6543440391943385,1.47,2.4,1.9561079836233368,2.892929292929293,2.7,2.7225564997288014 -2015,6,27,0,1,2,6,13,11,15,10.359252944059845,10.0,11.755146031409772,19.720678668694564,4,1,1,0,0,0,0,0.0,0.0,0.0,0.0,3.0892595857205816,2.73,1.61,1.54,2.6610492157923202,1.36,2.39,1.902210918469695,2.8669046627810157,2.66,2.705695138296576 -2015,6,28,0,1,1,7,11,7,14,8.281494111880308,11.0,12.926612884636913,18.954915906644953,6,2,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0892595857205816,2.73,1.61,1.54,2.6610492157923202,1.36,2.39,1.902210918469695,2.8669046627810157,2.66,2.705695138296576 -2015,6,29,0,2,2,8,10,9,16,8.640747055940153,13.0,13.017930948659465,19.42339038254573,3,1,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0892595857205816,2.73,1.61,1.54,2.6610492157923202,1.36,2.39,1.902210918469695,2.8669046627810157,2.66,2.705695138296576 -2015,6,30,2,3,3,7,13,10,16,8.0,14.0,13.861774041385033,18.65762762049612,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1421641791044777,2.81,1.69,1.84,2.69653698630137,1.52,2.46,2.03861004784689,2.962705296836118,2.75,2.752830188679245 -2015,7,1,5,6,2,7,12,10,15,9.077758832179537,13.0,12.504066443920998,17.36033933434728,0,0,1,1,0,0,0,0.0,0.0,0.0,0.0,3.183177466863034,2.78,1.58,1.64,2.669278299555116,1.49,2.54,1.97332726030517,2.9711981566820276,2.74,2.717590719809637 -2015,7,2,2,3,1,4,12,10,15,10.71850588811969,13.0,10.611231332061546,19.126102096396895,0,0,2,1,0,0,0,0.0,0.0,0.0,0.0,3.167018853102906,2.79,1.54,1.31,2.6705960264900663,1.24,2.53,1.8382299833689713,2.966764009471192,2.74,2.736834770114943 -2015,7,3,2,3,2,5,11,10,16,10.71850588811969,11.0,10.750381906560971,17.657627620496115,0,1,1,0,0,0,0,0.0,0.0,0.0,0.0,3.071908139142182,2.76,1.26,0.97,2.605549090909091,0.92,2.38,1.6007013264217107,2.8376919087136927,2.7,2.7284262371074286 -2015,7,4,0,3,3,6,12,10,16,9.359252944059845,10.0,12.281975533283427,16.657627620496115,1,1,0,0,0,0,0,0.0,0.0,0.0,0.0,3.071908139142182,2.76,1.26,0.97,2.605549090909091,0.92,2.38,1.6007013264217107,2.8376919087136927,2.7,2.7284262371074286 -2015,7,5,3,5,5,10,13,10,17,9.359252944059845,8.0,9.376472538949393,16.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.21228743027306834,0.0,3.071908139142182,2.76,1.26,0.97,2.605549090909091,0.92,2.38,1.6007013264217107,2.8376919087136927,2.7,2.7284262371074286 -2015,7,6,6,7,7,8,13,11,17,6.359252944059845,7.0,6.003108075920856,15.36033933434728,0,0,0,0,0,0,0,0.0,0.0,1.0507885646734443,0.0,3.071908139142182,2.76,1.26,0.97,2.605549090909091,0.92,2.38,1.6007013264217107,2.8376919087136927,2.7,2.7284262371074286 -2015,7,7,6,11,5,2,14,13,16,4.718505888119691,6.0,5.078910388407273,15.95491590664495,0,0,0,2,0,0,0,0.0,0.0,1.7186879153156673,0.0,3.024593959731544,2.73,1.91,1.76,2.5538397066526977,1.86,2.38,2.0727354260089683,2.7833855799373044,2.65,2.6750901662440123 -2015,7,8,10,10,1,1,15,14,15,5.640747055940154,4.0,4.430157474200213,14.95491590664495,0,0,3,2,0,0,0,0.0,0.0,2.4461991962057135,0.0,2.9332590412111017,2.7,1.81,1.68,2.5521576763485476,1.51,2.36,2.0484028223220014,2.7233190578158455,2.64,2.6517655949436656 -2015,7,9,3,7,2,3,17,15,16,4.562988223760617,2.0,3.658512077769265,12.657627620496116,0,0,0,0,0,0,0,0.0,0.0,0.8288088576527846,0.23423723795038845,2.921796875,2.72,1.7,1.62,2.5455264536406497,1.39,2.33,1.954172102358254,2.718740026595745,2.67,2.6550344332855094 -2015,7,10,6,7,4,6,16,15,16,1.9222411678204627,2.0,3.8591236084798486,12.423390382545728,0,0,0,0,0,0,0,1.0,0.0,0.23701394209344342,0.0,2.817017937219731,2.68,1.75,1.59,2.453117924528302,1.7,2.3,1.9373524369336272,2.5445046645935143,2.61,2.618660077770577 -2015,7,11,6,7,4,10,15,15,17,0.6407470559401542,3.0,4.885602829250517,14.657627620496116,0,0,0,0,0,0,0,2.718505888119691,0.0,0.04022737675264035,0.0,2.832311926605505,2.75,1.73,1.51,2.5173770491803276,2.06,2.4,1.9086527752829174,2.59098976109215,2.67,2.6963949118242265 -2015,7,12,9,7,8,15,14,16,18,1.6407470559401542,5.0,6.449152231920392,16.12610209639689,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.832311926605505,2.75,1.73,1.51,2.5173770491803276,2.06,2.4,1.9086527752829174,2.59098976109215,2.67,2.6963949118242265 -2015,7,13,8,8,9,15,15,17,19,1.6407470559401542,7.0,7.714729176316663,17.657627620496115,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.832311926605505,2.75,1.73,1.51,2.5173770491803276,2.06,2.4,1.9086527752829174,2.59098976109215,2.67,2.6963949118242265 -2015,7,14,6,8,9,14,15,16,19,1.0,7.0,6.981409307241941,17.657627620496115,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0976752336448596,2.91,1.89,2.09,2.763638083228247,1.93,2.59,2.2184227492516695,2.9060693416439425,2.87,2.826591517004203 -2015,7,15,9,7,3,10,15,14,19,1.0,7.0,6.348793814636673,16.657627620496115,0,0,0,0,0,0,0,0.6407470559401542,0.0,0.07076247675768944,0.0,3.182039603960396,2.96,1.75,1.63,2.8625274725274723,1.86,2.65,2.087125057683433,3.025047801147228,2.94,2.8944722955145115 -2015,7,16,3,4,3,11,13,14,19,0.6407470559401542,8.0,6.6368984440000265,17.657627620496115,0,0,0,0,0,0,0,1.0,0.0,0.1415249535153789,0.0,3.161473645137342,2.91,1.75,1.47,2.826692913385827,2.01,2.64,2.079762825470482,2.99662830840046,2.87,2.87248322147651 -2015,7,17,3,4,9,14,14,16,19,1.6407470559401542,9.0,6.646065367695,15.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.43664151630968084,0.0,3.1069201700519606,2.91,1.38,1.46,2.782808263395739,2.11,2.57,1.8204547945205478,2.983825382538254,2.85,2.84791956305859 -2015,7,18,5,9,12,13,16,17,20,6.0,7.0,4.839578389425874,15.36033933434728,0,0,0,0,0,0,0,0.0,0.0,0.22197970702065958,0.0,3.018677014042868,2.91,1.68,1.95,2.7160956175298807,2.41,2.57,2.019823907890281,2.8567003676470586,2.83,2.815157203731429 -2015,7,19,11,14,10,11,17,18,20,8.281494111880308,8.0,4.704387377147787,13.594576572297669,0,0,0,0,0,0,0,0.0,0.0,0.04022737675264035,0.0,3.018677014042868,2.91,1.68,1.95,2.7160956175298807,2.41,2.57,2.019823907890281,2.8567003676470586,2.83,2.815157203731429 -2015,7,20,13,14,8,10,17,17,20,4.359252944059845,9.0,4.479425204214021,15.36033933434728,0,0,0,0,0,0,0,0.0,0.0,0.04022737675264035,0.0,3.018677014042868,2.91,1.68,1.95,2.7160956175298807,2.41,2.57,2.019823907890281,2.8567003676470586,2.83,2.815157203731429 -2015,7,21,10,12,7,6,18,17,19,1.6407470559401542,9.0,5.327529981757394,16.657627620496115,0,0,0,0,0,0,0,0.6407470559401542,0.0,0.04022737675264035,0.0,3.0694937725994373,2.85,2.1,2.12,2.763057442865967,3.8,2.31,2.320842967244701,2.909278575890069,2.7899999999999996,2.7883035963200444 -2015,7,22,6,5,4,6,15,15,19,0.6407470559401542,8.0,6.22188592827648,16.12610209639689,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,3.1156881533101046,2.92,1.8,1.7,2.7951481042654027,2.42,2.41,2.0650558523555125,2.9744147157190635,2.86,2.8512516486415196 -2015,7,23,3,4,6,10,14,14,20,0.6407470559401542,6.0,7.13881051507375,15.828813810248057,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,3.16352144469526,2.93,1.61,1.49,2.806912660798917,1.74,2.6,1.8577358078602622,2.995441791044776,2.88,2.861056338028169 -2015,7,24,2,4,7,13,14,15,20,0.6407470559401542,8.0,7.176081837629823,16.828813810248057,0,0,0,0,0,0,0,2.2814941118803085,0.0,0.0,0.0,3.1642296805499392,2.93,1.63,1.47,2.8230352644836274,1.36,2.58,1.9084748392817559,3.012549889135255,2.87,2.8670298956306386 -2015,7,25,1,6,10,13,13,14,20,0.6407470559401542,9.0,8.188741693686653,19.126102096396895,1,0,0,0,0,0,0,4.281494111880308,0.0,0.0,0.0,3.011958245243129,2.86,1.6,1.44,2.7051397205588823,1.45,2.31,1.9425166997653007,2.857057719380573,2.79,2.7733748347289553 -2015,7,26,4,9,10,14,14,15,20,0.0,7.0,8.451832575237034,19.126102096396895,1,0,0,0,0,0,0,5.0,0.0,0.18412670928397218,0.0,3.011958245243129,2.86,1.6,1.44,2.7051397205588823,1.45,2.31,1.9425166997653007,2.857057719380573,2.79,2.7733748347289553 -2015,7,27,7,10,11,14,15,17,21,0.0,7.0,7.662825900001537,18.36033933434728,0,0,0,0,0,0,0,4.0,0.0,0.7341324581199358,0.0,3.011958245243129,2.86,1.6,1.44,2.7051397205588823,1.45,2.31,1.9425166997653007,2.857057719380573,2.79,2.7733748347289553 -2015,7,28,11,12,12,14,16,18,21,0.3592529440598457,9.0,4.456402419615084,19.126102096396895,0,0,0,0,0,0,0,0.3592529440598457,0.0,1.8065797965872497,0.0,3.12,2.88,1.98,2.09,2.7521034077555817,3.93,2.54,2.2611999366788034,2.929610705596107,2.84,2.7876215368531105 -2015,7,29,12,13,13,10,16,18,21,5.077758832179537,11.0,4.037595191942519,15.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.41579869305222306,0.0,3.16,2.93,1.98,2.04,2.765179549604382,3.94,2.67,2.2713516976297243,2.956078930617441,2.85,2.8110648781823158 -2015,7,30,11,12,10,8,17,16,20,10.155517664359074,13.0,7.007637925413862,16.423390382545726,0,0,0,0,0,0,0,0.0,0.0,0.04022737675264035,0.0,3.170428954423593,2.95,2.14,2.1,2.753399301513388,3.29,2.55,2.3535667789001122,2.9856113602391625,2.87,2.8339899812147777 -2015,7,31,10,10,9,9,15,13,19,10.437011776239382,13.0,8.63543297104233,17.423390382545726,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.109470452801228,2.89,1.82,2.04,2.7362459961563097,2.18,2.52,2.139325424517329,2.912725952813067,2.82,2.794240572365479 -2015,8,1,7,9,7,9,14,13,18,10.437011776239382,11.0,9.620965044333268,16.12610209639689,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0375045984058855,2.82,1.75,1.6,2.6377735057672145,1.94,2.53,2.0863378839590445,2.835347758887172,2.74,2.7198755629296043 -2015,8,2,6,7,10,11,13,13,18,6.640747055940154,10.0,9.676502367038616,17.657627620496115,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0375045984058855,2.82,1.75,1.6,2.6377735057672145,1.94,2.53,2.0863378839590445,2.835347758887172,2.74,2.7198755629296043 -2015,8,3,9,9,7,8,14,14,18,4.718505888119691,10.0,7.479261177164032,19.18915314459534,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0375045984058855,2.82,1.75,1.6,2.6377735057672145,1.94,2.53,2.0863378839590445,2.835347758887172,2.74,2.7198755629296043 -2015,8,4,9,10,4,7,16,15,19,2.3592529440598455,8.0,7.742060981017591,20.18915314459534,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.073490625,2.81,1.89,1.89,2.6674254742547427,2.24,2.55,2.17890830868513,2.882102049716529,2.76,2.7049912517894064 -2015,8,5,5,7,4,6,16,15,21,0.6407470559401542,10.0,8.427854303916124,20.42339038254573,0,0,0,0,0,0,0,2.9222411678204625,0.0,0.0,0.0,3.1252031410037557,2.89,1.88,1.67,2.707843794920939,1.72,2.59,2.168740028155795,2.9163797468354433,2.84,2.778404023470243 -2015,8,6,2,3,3,7,14,12,22,0.0,9.0,7.373863884577643,19.891864858446507,0,1,0,0,0,0,0,1.6407470559401542,0.0,0.295116562794302,0.0,3.1432220609579105,2.94,1.95,1.57,2.730464636035106,1.45,2.64,2.1535384615384614,2.91090788601723,2.89,2.801259259259259 -2015,8,7,2,4,4,10,13,12,22,1.3592529440598455,7.0,5.298612993851078,19.126102096396895,0,0,0,0,0,0,0,0.0,0.0,0.18175233026801924,0.0,3.07,2.84,1.93,1.49,2.6510284605433374,1.39,2.56,2.1004573002754823,2.8580495356037154,2.77,2.723323082180079 -2015,8,8,2,4,5,10,13,14,22,1.0,6.0,4.463980661409752,15.36033933434728,0,0,0,0,0,0,0,0.0,0.0,0.43664151630968084,0.0,3.059743334989236,2.91,1.68,1.48,2.6825125125125124,1.49,2.53,2.005784804367607,2.848890566037736,2.82,2.7731011758625144 -2015,8,9,2,6,7,11,14,15,22,2.3592529440598455,6.0,5.346791463513688,16.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.04022737675264035,0.0,3.059743334989236,2.91,1.68,1.48,2.6825125125125124,1.49,2.53,2.005784804367607,2.848890566037736,2.82,2.7731011758625144 -2015,8,10,3,5,9,10,13,15,22,4.281494111880308,6.0,6.8688422969439795,16.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.059743334989236,2.91,1.68,1.48,2.6825125125125124,1.49,2.53,2.005784804367607,2.848890566037736,2.82,2.7731011758625144 -2015,8,11,3,7,7,7,15,15,21,5.640747055940154,6.0,8.430914701543486,16.891864858446503,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.128475289169296,2.93,1.83,1.89,2.747092957746479,1.84,2.62,2.1119753086419752,2.9223591087811274,2.88,2.817079776756402 -2015,8,12,7,6,3,7,14,12,20,7.0,8.0,9.766936633284086,17.12610209639689,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1142546213476443,2.92,1.78,1.93,2.7427175368139225,2.0,2.63,2.1776227705839237,2.9282907004542196,2.85,2.798236998872967 -2015,8,13,4,4,5,9,12,9,19,6.281494111880308,10.0,11.309930448689101,20.42339038254573,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.177505138746146,2.98,1.86,2.02,2.8026615746180963,2.37,2.71,2.193389613711947,2.975484626647145,2.93,2.853383228440211 -2015,8,14,4,5,9,11,11,10,19,1.2814941118803085,12.0,12.007399671150118,22.18915314459534,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,3.195654793085385,3.02,1.86,2.17,2.803634792626728,2.3,2.56,2.206916824708751,3.005201933034173,2.97,2.8703076202373516 -2015,8,15,9,9,10,12,12,11,18,0.0,14.0,11.351128198767581,22.954915906644953,0,0,0,0,0,0,0,2.562988223760617,0.0,0.0,0.0,3.09,2.92,1.77,2.0,2.7056191467221646,3.07,2.41,2.0614128161247383,2.910151762783096,2.84,2.7858955036423008 -2015,8,16,10,11,11,10,13,12,17,0.0,16.0,9.145990797471939,22.720678668694564,0,0,0,0,0,0,0,1.2814941118803085,0.0,0.32327728378339815,0.0,3.09,2.92,1.77,2.0,2.7056191467221646,3.07,2.41,2.0614128161247383,2.910151762783096,2.84,2.7858955036423008 -2015,8,17,12,12,11,7,14,10,17,1.7185058881196913,14.0,6.941845379088397,21.18915314459534,0,0,0,0,0,0,0,0.6407470559401542,0.0,0.6586212233303406,0.0,3.09,2.92,1.77,2.0,2.7056191467221646,3.07,2.41,2.0614128161247383,2.910151762783096,2.84,2.7858955036423008 -2015,8,18,12,12,9,5,14,13,19,5.437011776239382,11.0,5.08665745938221,19.65762762049612,0,0,0,2,0,0,0,0.0,0.0,2.538218645656569,0.0,3.0860286284953395,2.9,1.84,2.14,2.6536532738095238,3.21,2.51,2.116375404530744,2.8815578764142735,2.8,2.7203374885983584 -2015,8,19,11,12,9,1,15,13,16,8.077758832179537,10.0,4.806448561226887,17.954915906644953,0,0,0,3,0,0,0,0.0,0.0,3.337472518094427,0.0,3.021895953757225,2.88,1.8,1.7,2.6120290812954394,2.58,2.43,2.0010432968179446,2.8033143856580676,2.74,2.6612257952973724 -2015,8,20,10,12,3,1,16,10,10,2.3592529440598455,8.0,5.589990206398304,18.18915314459534,0,0,0,1,0,0,0,0.6407470559401542,0.0,0.8995713344104741,0.0,3.030200078462142,2.87,1.59,1.71,2.6087030941408824,2.6,2.35,1.8714395229982965,2.804969108561342,2.8,2.668126516141071 -2015,8,21,10,8,2,2,14,9,13,0.6407470559401542,7.0,6.70213956856564,17.657627620496115,0,0,0,0,0,0,0,2.2814941118803085,0.0,0.07076247675768944,0.0,2.9921126242178873,2.82,1.79,1.82,2.550563758389262,2.75,2.28,1.996145994432416,2.7174132029339853,2.74,2.636486801242236 -2015,8,22,6,4,2,6,13,11,17,0.7185058881196914,8.0,5.604678482285353,18.42339038254573,0,0,0,0,0,0,0,1.2814941118803085,0.0,1.175717493145302,0.0,2.9372139093782934,2.77,1.48,1.97,2.4708753773178094,2.36,2.36,1.8154221138931974,2.643245785966288,2.68,2.6248311273391147 -2015,8,23,5,4,4,2,12,12,18,1.077758832179537,9.0,4.996980420480016,17.189153144595338,0,0,0,3,0,0,0,0.0,0.0,2.8014058442199916,0.0,2.9372139093782934,2.77,1.48,1.97,2.4708753773178094,2.36,2.36,1.8154221138931974,2.643245785966288,2.68,2.6248311273391147 -2015,8,24,8,7,1,1,14,11,18,1.3592529440598455,10.0,6.613401689142465,17.720678668694564,0,0,2,4,0,0,0,1.2814941118803085,0.0,0.22197970702065958,0.0,2.9372139093782934,2.77,1.48,1.97,2.4708753773178094,2.36,2.36,1.8154221138931974,2.643245785966288,2.68,2.6248311273391147 -2015,8,25,9,7,0,1,13,5,16,1.3592529440598455,11.0,8.881792750484603,15.126102096396892,0,1,4,3,0,0,0,1.2814941118803085,0.0,0.0,0.0,2.924073312778349,2.73,1.67,1.79,2.3827134287032763,2.92,2.44,1.947895038715228,2.6852426778242675,2.61,2.5725129819040125 -2015,8,26,7,3,0,2,11,3,15,1.7185058881196913,13.0,8.043376888197626,16.423390382545726,0,1,3,2,0,0,0,0.6407470559401542,0.0,0.0,0.0,2.988146021328958,2.8,1.54,1.86,2.5364393268379097,3.26,2.41,1.8984392014519058,2.761700773078672,2.69,2.631655150753769 -2015,8,27,2,2,0,2,9,5,14,4.359252944059845,15.0,7.472137559903145,16.657627620496115,0,1,2,1,0,0,0,0.0,0.0,0.0,0.0,2.96,2.82,1.61,1.75,2.5626379066478076,3.05,2.45,1.9231636820609488,2.779193548387097,2.7,2.6372460532610424 -2015,8,28,1,2,0,4,10,8,14,1.7185058881196913,16.0,7.181382840643913,17.423390382545726,0,1,2,1,0,0,0,0.0,0.0,0.0,0.0,2.93,2.79,1.52,1.68,2.5277305533279875,2.67,2.45,1.8291082474226803,2.718257993384785,2.69,2.602464141821112 -2015,8,29,1,3,3,4,11,10,14,0.6407470559401542,13.0,7.8826207063467155,18.954915906644953,0,0,0,0,0,0,0,1.3592529440598455,0.0,0.0,0.0,2.8925146689019274,2.77,1.24,1.34,2.4986157135221805,2.57,2.44,1.6647571477781604,2.6350935828877007,2.67,2.607696811971373 -2015,8,30,6,7,7,6,10,10,15,0.0,9.0,7.73877769594338,17.189153144595338,0,0,0,0,0,0,0,5.359252944059845,0.0,0.18412670928397218,0.0,2.8925146689019274,2.77,1.24,1.34,2.4986157135221805,2.57,2.44,1.6647571477781604,2.6350935828877007,2.67,2.607696811971373 -2015,8,31,9,11,8,10,12,11,15,0.0,7.0,5.592600301409138,17.423390382545726,0,0,0,0,0,0,0,5.281494111880308,0.0,0.5500057488359636,0.0,2.8925146689019274,2.77,1.24,1.34,2.4986157135221805,2.57,2.44,1.6647571477781604,2.6350935828877007,2.67,2.607696811971373 -2015,9,1,7,10,10,11,14,12,15,0.0,7.0,5.7284922189025025,14.126102096396894,0,0,0,0,0,0,0,3.9222411678204625,0.0,0.18412670928397218,0.0,2.873028967254408,2.77,1.75,1.82,2.541280487804878,3.7,2.45,2.040352422907489,2.672092565238799,2.7,2.6078311137128636 -2015,9,2,8,10,12,12,15,13,16,0.0,5.0,6.8327458498618086,15.126102096396892,0,0,0,0,0,0,0,6.640747055940154,0.0,0.25488918604166166,0.0,2.9678606158833065,2.85,1.88,2.02,2.609375339489408,3.64,2.52,2.250814261623705,2.7350426309378806,2.77,2.674181415929204 -2015,9,3,9,11,12,13,15,15,16,0.0,3.0,5.7290738940831165,14.126102096396894,0,0,0,0,0,0,0,10.640747055940153,0.0,0.8780317906512677,0.0,2.900484622553588,2.84,1.89,1.76,2.5492464358452134,3.13,2.49,2.1251124437781113,2.670194750211685,2.76,2.647483833884179 -2015,9,4,5,10,11,13,15,15,17,0.0,2.0,4.261782232447254,10.360339334347282,0,0,0,0,0,0,0,12.359252944059845,1.0,2.082423489716307,0.0,2.875649940734887,2.76,1.7,1.8,2.5053176795580105,2.28,2.45,1.9613208100968595,2.6263640661938537,2.68,2.6110281402295237 -2015,9,5,1,7,10,14,13,15,19,0.0,3.0,4.363757801403649,10.82881381024806,1,0,0,0,0,0,0,12.0,1.0,2.953471816708999,0.0,2.816782453796482,2.73,1.77,1.57,2.4542430878729813,2.97,2.41,2.005833170158606,2.5127819548872177,2.64,2.6192033127260004 -2015,9,6,2,6,13,15,12,14,20,0.0,5.0,3.295079106178119,14.126102096396894,0,0,0,0,0,0,0,11.0,0.0,4.342475103012554,0.0,2.816782453796482,2.73,1.77,1.57,2.4542430878729813,2.97,2.41,2.005833170158606,2.5127819548872177,2.64,2.6192033127260004 -2015,9,7,8,9,13,9,12,13,20,0.0,9.0,2.940298132712221,15.126102096396892,0,0,0,0,0,0,0,6.640747055940154,0.0,3.065524861863292,0.0,2.816782453796482,2.73,1.77,1.57,2.4542430878729813,2.97,2.41,2.005833170158606,2.5127819548872177,2.64,2.6192033127260004 -2015,9,8,13,13,12,7,13,13,19,0.0,14.0,3.333871263393828,16.423390382545726,0,0,0,0,0,0,0,3.5629882237606165,0.0,3.165432016104424,0.0,2.816782453796482,2.73,1.77,1.57,2.4542430878729813,2.97,2.41,2.005833170158606,2.5127819548872177,2.64,2.6192033127260004 -2015,9,9,12,13,7,5,15,12,15,0.7185058881196914,15.0,3.6440220612609133,13.891864858446505,0,0,0,2,0,0,0,1.2814941118803085,0.0,1.2973797381933454,0.0,3.026359637063514,2.81,1.88,2.06,2.6429844767150725,3.62,2.48,2.130225461170576,2.7912037470725997,2.74,2.667775654219348 -2015,9,10,7,6,3,5,14,12,16,2.437011776239383,16.0,4.158855155676831,12.360339334347282,0,0,0,3,0,0,0,1.2814941118803085,0.0,1.4166676042254356,0.0,3.0753945211894167,2.79,1.9,2.06,2.6202360080917058,3.66,2.58,2.177080096437182,2.807284738041002,2.72,2.643741429970617 -2015,9,11,2,5,1,1,12,9,13,3.7962647202992286,16.0,4.216088865204478,13.423390382545728,0,0,3,5,0,0,0,0.0,0.0,1.910132522331278,0.0,3.011761565836299,2.73,1.85,1.65,2.5726227470478555,2.62,2.55,2.046959718670077,2.7526530612244895,2.67,2.6166512027491406 -2015,9,12,1,2,0,0,9,3,10,3.7962647202992286,13.0,4.908312446353344,15.18915314459534,1,2,7,7,0,0,0,0.0,0.0,0.8288088576527846,0.0,2.9286198428290766,2.7,1.57,1.36,2.542988019732206,2.15,2.56,1.7415358244772028,2.6206194690265487,2.62,2.6100480608025034 -2015,9,13,1,2,0,1,6,0,8,1.0,12.0,5.2801151194111435,15.657627620496116,2,2,8,4,1,3,0,1.9222411678204627,0.0,0.11098985351032979,0.0,2.9286198428290766,2.7,1.57,1.36,2.542988019732206,2.15,2.56,1.7415358244772028,2.6206194690265487,2.62,2.6100480608025034 -2015,9,14,0,0,0,2,4,1,9,0.0,6.0,3.756171423428249,12.126102096396894,3,3,3,0,1,3,0,10.640747055940153,0.0,0.7035973581148867,0.0,2.9286198428290766,2.7,1.57,1.36,2.542988019732206,2.15,2.56,1.7415358244772028,2.6206194690265487,2.62,2.6100480608025034 -2015,9,15,2,1,2,7,6,2,11,0.0,4.0,2.2063148150384064,11.59457657229767,0,1,0,0,0,1,0,13.71850588811969,1.0,2.8289132010835796,0.0,2.993842592592593,2.75,1.77,1.73,2.6067871259175606,2.28,2.58,2.0180851633636854,2.7149302325581397,2.71,2.62482119008755 -2015,9,16,3,3,4,9,6,4,15,0.0,2.0,2.540264490359518,12.360339334347282,0,0,0,0,0,0,0,11.359252944059845,2.0,4.032033707661675,0.0,3.000958835341365,2.78,1.92,1.81,2.6291294117647057,1.95,2.63,2.108161174189975,2.731011736139215,2.73,2.650734394124847 -2015,9,17,5,4,5,9,7,6,17,0.0,2.0,1.3581098787777672,11.59457657229767,0,0,0,0,0,0,0,10.359252944059845,1.0,6.245193410599152,0.0,2.9317087587318644,2.7,1.71,1.77,2.5798352344740176,2.58,2.56,1.9731639950678175,2.710422670509126,2.68,2.6081636145815508 -2015,9,18,4,4,5,5,8,7,17,0.0,4.0,1.1807193920448185,11.59457657229767,0,0,0,4,0,0,0,7.640747055940154,0.0,8.004399300151254,0.23423723795038845,2.9056359482102057,2.73,1.81,1.89,2.5689401888772303,4.65,2.6,2.033471074380165,2.672225721784777,2.67,2.5897829661295626 -2015,9,19,3,4,2,0,10,8,13,0.0,8.0,1.5742925227264246,11.18915314459534,0,0,1,5,0,0,0,5.640747055940154,0.0,7.2735101322204825,0.23423723795038845,2.77,2.65,1.71,1.48,2.4896217802412783,4.1,2.42,1.906993127147766,2.5666587957497047,2.6,2.5471675137653538 -2015,9,20,3,3,0,0,10,6,12,0.0,13.0,1.9678656534080308,12.423390382545728,0,2,5,4,0,0,0,2.640747055940154,0.0,3.88946525123648,0.0,2.77,2.65,1.71,1.48,2.4896217802412783,4.1,2.42,1.906993127147766,2.5666587957497047,2.6,2.5471675137653538 -2015,9,21,0,0,0,1,8,4,13,0.0,12.0,2.743511567371418,8.126102096396892,7,6,4,1,1,0,0,6.562988223760617,0.0,1.2093198509638288,0.0,2.77,2.65,1.71,1.48,2.4896217802412783,4.1,2.42,1.906993127147766,2.5666587957497047,2.6,2.5471675137653538 -2015,9,22,0,0,0,3,7,4,13,0.0,8.0,2.856875799897701,7.59457657229767,6,4,2,1,0,0,0,10.562988223760616,0.0,2.4601382711672413,0.23423723795038845,2.86,2.69,1.79,1.64,2.5077912457912457,3.08,2.51,1.9433095025320228,2.6265919749869724,2.62,2.510982142857143 -2015,9,23,0,0,1,4,8,5,12,0.0,8.0,3.1449804292610537,9.360339334347282,5,2,1,2,0,0,0,8.922241167820463,0.0,1.0351726544200452,0.0,2.8720669671603347,2.72,1.8,1.81,2.535665924276169,2.71,2.51,1.9715827555019596,2.655195291599786,2.65,2.5211930585683295 -2015,9,24,0,0,1,4,6,6,11,0.0,10.0,3.28563647160322,12.423390382545728,4,2,0,1,0,0,0,5.922241167820463,0.0,1.7127642818098598,0.23423723795038845,2.884860813704497,2.71,1.81,1.72,2.5247401908801694,2.01,2.45,2.0156965777418487,2.636836448598131,2.65,2.524519813116456 -2015,9,25,0,0,1,4,5,4,12,0.0,12.0,4.18690419283599,12.95491590664495,8,3,0,0,1,1,0,7.203735279700771,0.0,1.3871126190105088,0.23423723795038845,2.872886977886978,2.68,1.68,1.63,2.523673668783586,1.97,2.39,1.8955970149253731,2.66911345646438,2.63,2.491189523463077 -2015,9,26,0,0,1,2,6,4,11,0.0,12.0,4.431813866137463,13.720678668694562,9,4,0,0,0,0,0,8.922241167820463,0.0,1.1142331436994954,0.23423723795038845,2.840723897911833,2.63,1.49,1.26,2.467891585250552,1.66,2.41,1.6488767948124132,2.545344082925425,2.56,2.4718915557766445 -2015,9,27,0,0,2,3,7,6,9,0.0,10.0,3.9960412610009945,13.18915314459534,11,4,0,0,0,0,0,12.922241167820463,0.0,1.059784120919287,0.0,2.840723897911833,2.63,1.49,1.26,2.467891585250552,1.66,2.41,1.6488767948124132,2.545344082925425,2.56,2.4718915557766445 -2015,9,28,0,1,5,4,9,7,10,0.0,9.0,3.3769545356257695,13.657627620496116,5,1,0,1,0,0,0,9.203735279700771,0.0,2.4764517251447224,0.0,2.840723897911833,2.63,1.49,1.26,2.467891585250552,1.66,2.41,1.6488767948124132,2.545344082925425,2.56,2.4718915557766445 -2015,9,29,2,5,2,1,10,8,12,0.0,6.0,3.1722722390769373,13.423390382545728,0,0,1,5,0,0,0,6.203735279700771,0.0,2.8163250339716415,0.0,2.9169250780437044,2.71,1.69,1.58,2.509501738122827,2.03,2.45,1.8931419558359621,2.673421701602959,2.63,2.5439327759767956 -2015,9,30,4,4,0,0,12,5,12,0.0,6.0,3.1801679702849666,14.18915314459534,0,1,8,8,0,0,0,7.922241167820462,1.0,2.499783972739267,0.0,2.8538623595505617,2.69,1.8,1.6,2.4499022801302934,2.08,2.37,1.9206258972150445,2.54661511268228,2.59,2.4758920300271523 -2015,10,1,0,0,0,0,6,2,9,0.0,5.0,2.991277136152193,13.657627620496116,9,9,11,10,2,2,0,7.281494111880308,1.0,2.4920791605107935,0.0,2.7726129216695257,2.59,1.74,1.87,2.3575339260645762,2.01,2.41,1.978283438615765,2.490504532912889,2.53,2.4201950858130634 -2015,10,2,0,0,0,0,5,0,5,0.0,3.0,0.9839328267040154,10.126102096396894,15,15,12,12,5,6,1,10.281494111880308,0.0,5.051255194532925,0.0,2.700221238938053,2.47,1.67,1.66,2.291185354691075,2.04,2.25,1.8588684369342185,2.433288409703504,2.43,2.327502343645373 -2015,10,3,0,0,0,0,4,0,3,0.0,3.0,0.9839328267040154,6.360339334347281,15,16,15,14,5,9,1,10.077758832179537,1.0,9.473831065447273,0.7027117138511654,2.5670598669623055,2.29,1.41,1.27,2.0928085519922255,1.44,2.1,1.6734363992172208,2.2651302974466963,2.28,2.217772463272976 -2015,10,4,0,0,0,0,3,0,2,0.0,0.0,0.7871462613632123,6.126102096396893,13,11,10,14,3,3,2,7.281494111880308,3.0,9.829715705655207,1.1711861897519422,2.5670598669623055,2.29,1.41,1.27,2.0928085519922255,1.44,2.1,1.6734363992172208,2.2651302974466963,2.28,2.217772463272976 -2015,10,5,0,0,0,0,3,3,4,0.3592529440598457,0.0,0.0,4.59457657229767,13,10,6,10,2,0,1,4.844482335640926,3.0,8.483534867307537,0.9369489518015538,2.5670598669623055,2.29,1.41,1.27,2.0928085519922255,1.44,2.1,1.6734363992172208,2.2651302974466963,2.28,2.217772463272976 -2015,10,6,0,0,0,0,4,5,6,0.0,0.0,0.0,1.5315255240992232,11,8,4,5,2,0,0,7.844482335640925,1.0,8.201353871449992,1.468474475900777,2.69179548156956,2.38,1.58,1.61,2.1842420299284324,3.0,2.17,1.7720092260379292,2.372558139534884,2.33,2.2708565767413504 -2015,10,7,0,0,0,0,4,6,8,0.0,3.0,0.39357313068160615,1.5315255240992232,10,6,3,6,1,0,0,8.203735279700771,0.0,6.842386606611683,2.4054234277023308,2.6813986013986013,2.43,1.41,1.73,2.2413228089275994,2.86,2.21,1.723058795524875,2.382814498933902,2.39,2.2899023943876773 -2015,10,8,0,0,0,2,5,6,9,0.0,8.0,1.1807193920448185,3.828813810248058,11,7,4,5,0,0,0,4.203735279700771,0.0,5.5496482645375576,1.639660665652719,2.741801162040026,2.49,1.51,1.64,2.296305797845049,2.71,2.22,1.7476011630724497,2.448811154598826,2.45,2.3724191356346833 -2015,10,9,0,0,0,0,7,5,9,0.0,11.0,1.8844433205935103,6.126102096396893,10,4,6,9,0,0,0,4.562988223760617,0.0,5.192067237507327,1.4054234277023308,2.759129934840935,2.45,1.37,1.44,2.312846390694492,2.34,2.25,1.6002511470659262,2.4651544401544405,2.42,2.361894928636502 -2015,10,10,0,0,0,0,5,1,7,0.0,11.0,1.80102098777899,7.657627620496116,14,12,12,7,2,2,0,4.281494111880308,0.0,2.639918023520011,0.7027117138511654,2.671965537383178,2.41,1.31,1.27,2.2397861534349106,2.45,2.19,1.5760703245749614,2.4402793733681465,2.35,2.315196224540487 -2015,10,11,0,0,0,1,4,0,8,0.0,10.0,1.5742925227264246,8.891864858446505,13,12,6,1,3,4,0,8.922241167820463,0.0,3.0773721288749076,0.23423723795038845,2.671965537383178,2.41,1.31,1.27,2.2397861534349106,2.45,2.19,1.5760703245749614,2.4402793733681465,2.35,2.315196224540487 -2015,10,12,0,0,0,1,3,1,11,0.0,10.0,1.9678656534080308,8.891864858446505,7,7,2,4,2,2,0,9.562988223760616,0.0,6.356048667257924,0.23423723795038845,2.671965537383178,2.41,1.31,1.27,2.2397861534349106,2.45,2.19,1.5760703245749614,2.4402793733681465,2.35,2.315196224540487 -2015,10,13,0,0,0,0,4,2,10,0.0,11.0,1.7710790880672276,9.657627620496116,7,7,9,9,1,2,0,7.562988223760616,0.0,5.15136637070909,0.23423723795038845,2.835339449541284,2.5,1.49,1.27,2.371682098765432,2.63,2.3,1.6566216515386316,2.5873093401885177,2.45,2.3812794408144655 -2015,10,14,0,0,0,0,4,1,8,0.0,10.0,1.9678656534080308,10.18915314459534,7,9,12,9,2,4,0,9.766723503461387,0.0,4.510233476830133,0.4684744759007769,2.810344715447154,2.48,1.53,1.56,2.3399384344766934,2.79,2.31,1.7121612483745123,2.5703428571428573,2.44,2.372580371052259 -2015,10,15,0,0,0,0,3,1,9,0.0,7.0,1.3775059573856216,8.657627620496116,16,13,12,10,4,3,0,7.125976447521233,0.0,8.019766048444989,0.23423723795038845,2.7700366972477064,2.5,1.62,1.66,2.328025594149908,2.77,2.29,1.8877384039181793,2.5529757343550448,2.45,2.3868685223571218 -2015,10,16,0,0,0,0,3,1,6,0.0,5.0,0.7871462613632123,8.423390382545728,14,13,18,19,4,5,0,6.562988223760617,0.0,8.36637557982293,1.4054234277023308,2.825728730822873,2.55,1.75,1.81,2.364466769706337,2.91,2.34,1.9495542635658916,2.61796992481203,2.52,2.4423263831883104 -2015,10,17,0,0,0,0,3,0,4,0.0,3.0,0.39357313068160615,4.59457657229767,21,20,24,20,8,13,1,8.0,1.0,8.115557159619518,1.639660665652719,2.632942789968652,2.42,1.9,1.97,2.1879442060085834,4.79,2.16,2.0664244503352562,2.391316064887494,2.38,2.32501269035533 -2015,10,18,0,0,0,0,2,0,2,0.0,2.0,0.19678656534080308,5.360339334347281,28,27,22,14,12,15,1,9.562988223760616,1.0,7.338460659302302,1.1711861897519422,2.632942789968652,2.42,1.9,1.97,2.1879442060085834,4.79,2.16,2.0664244503352562,2.391316064887494,2.38,2.32501269035533 -2015,10,19,0,0,0,0,2,0,2,0.0,0.0,0.0,3.828813810248058,29,25,15,6,13,13,1,10.077758832179537,3.0,8.959243771499823,0.4684744759007769,2.632942789968652,2.42,1.9,1.97,2.1879442060085834,4.79,2.16,2.0664244503352562,2.391316064887494,2.38,2.32501269035533 -2015,10,20,0,0,0,1,3,0,4,0.0,0.0,0.0,1.5315255240992232,15,14,7,4,9,9,0,10.0,1.0,10.482554272304386,1.9369489518015537,2.648864468864469,2.44,1.92,2.04,2.2442271880819367,4.77,2.19,2.0564824409902127,2.4328977497039084,2.39,2.339670858562335 -2015,10,21,0,0,0,1,3,0,7,0.0,1.0,0.0,0.0,9,8,4,6,5,5,0,12.922241167820463,1.0,14.255660956979499,5.63966066565272,2.6626759339704607,2.44,1.86,1.94,2.200340406719717,3.6,2.17,2.0180961873909795,2.3708137432188066,2.39,2.3397740363314137 -2015,10,22,0,0,0,1,4,1,8,0.0,1.0,0.0,0.0,7,6,6,9,3,3,0,13.281494111880308,1.0,15.5993029090482,5.873897903603108,2.59967976088813,2.36,1.79,1.94,2.118181818181818,2.82,2.13,1.9710486128785951,2.2147584541062804,2.31,2.258724014336918 -2015,10,23,0,0,0,0,4,2,7,0.0,2.0,0.0,0.7657627620496116,17,14,10,9,3,1,0,16.281494111880306,1.0,14.395914718007933,4.108135141553496,2.56929648241206,2.39,1.89,2.02,2.157655099894848,4.89,2.13,2.0349672091328634,2.2639419087136927,2.35,2.257777130654242 -2015,10,24,0,0,0,0,3,3,5,0.0,3.0,0.0,2.297288286148835,24,20,6,10,5,2,1,14.844482335640926,1.0,14.845894082568103,3.3423723795038844,2.433713580246913,2.31,1.83,1.95,2.031600422089342,4.96,2.06,2.015990271021543,2.1297127937336815,2.3,2.1797895384615384 -2015,10,25,0,0,0,0,4,2,1,0.0,3.0,0.0,3.0630510481984463,16,12,13,16,2,3,4,13.0,1.0,12.723956126640134,3.576609617454273,2.433713580246913,2.31,1.83,1.95,2.031600422089342,4.96,2.06,2.015990271021543,2.1297127937336815,2.3,2.1797895384615384 -2015,10,26,0,0,0,0,4,1,2,0.0,3.0,0.0,3.0630510481984463,21,19,16,16,5,5,3,13.640747055940153,1.0,12.713670649599255,2.108135141553496,2.433713580246913,2.31,1.83,1.95,2.031600422089342,4.96,2.06,2.015990271021543,2.1297127937336815,2.3,2.1797895384615384 -2015,10,27,0,0,0,0,3,1,2,0.0,2.0,0.0,2.297288286148835,23,20,17,16,8,6,1,14.999999999999998,2.0,15.841379599891992,2.8738979036031074,2.5131978967495217,2.35,1.8,1.93,2.0433594976452123,6.38,2.06,1.9130909609352724,2.188873015873016,2.29,2.0868036592026216 -2015,10,28,0,0,0,0,4,2,3,0.0,2.0,0.0,1.5315255240992232,17,13,12,16,3,2,2,16.281494111880306,2.0,19.093066451055588,4.04508409335505,2.4726138189609,2.37,1.66,1.56,2.0570377448638317,4.63,2.09,1.7644125034886964,2.190590717299578,2.32,2.047434830837493 -2015,10,29,0,0,0,0,5,1,2,0.0,1.0,0.0,0.7657627620496116,5,6,21,22,1,4,2,12.640747055940153,2.0,18.926830352536733,4.8108468554046615,2.4899574065309986,2.44,1.64,1.55,2.0844639865996655,5.36,2.08,1.7475472957934564,2.1744333181611286,2.34,2.0633981272964323 -2015,10,30,0,0,0,0,3,0,3,0.0,1.0,0.0,0.0,15,16,20,22,7,12,4,11.71850588811969,2.0,18.986840722394064,7.342372379503884,2.4425267249757048,2.34,1.66,1.47,2.053929035049762,5.53,2.06,1.7452850831054072,2.173103197674419,2.3,2.0725931171222207 -2015,10,31,0,0,0,0,3,0,4,0.0,3.0,0.0,0.0,24,22,18,18,9,10,2,10.640747055940153,1.0,13.841256528153107,6.576609617454273,2.4425267249757048,2.34,1.66,1.47,2.053929035049762,5.53,2.06,1.7452850831054072,2.173103197674419,2.3,2.0725931171222207 -2015,11,1,0,0,0,0,4,0,2,0.0,2.0,0.0,0.0,16,14,11,11,6,6,3,15.281494111880308,2.0,11.448622556950522,4.342372379503884,2.305296089385475,2.07,1.29,1.23,1.8732213170400545,4.72,1.86,1.501123183086184,1.9609818181818184,2.02,1.8823830128205128 -2015,11,2,0,0,0,0,5,1,1,0.0,0.0,0.0,0.7657627620496116,13,12,9,10,3,3,1,18.640747055940153,6.0,12.614400532240678,3.8738979036031074,2.305296089385475,2.07,1.29,1.23,1.8732213170400545,4.72,1.86,1.501123183086184,1.9609818181818184,2.02,1.8823830128205128 -2015,11,3,0,0,0,0,5,1,2,0.0,0.0,0.0,0.0,13,10,8,9,3,1,1,22.0,11.0,15.852544552792699,5.405423427702331,2.338856140350877,1.98,1.3,1.31,1.9273927502494181,4.1,1.93,1.5115371839822844,2.0281486186090825,1.99,1.852438733463457 -2015,11,4,0,0,0,0,5,2,3,0.0,0.0,0.0,0.0,13,9,6,9,2,1,0,24.640747055940153,13.0,22.00169288812738,10.468474475900777,2.408290306867998,2.01,1.28,1.31,1.9358863443596266,3.83,2.03,1.483710073710074,1.969709347996858,2.01,1.8509673489278753 -2015,11,5,0,0,0,0,6,4,8,0.0,0.0,0.0,0.0,10,7,3,6,1,0,0,22.71850588811969,13.0,27.24001897801887,15.405423427702331,2.4527402862985683,2.2,1.43,1.28,2.072162162162162,3.72,2.09,1.5716426146010187,2.133344947735192,2.17,1.9835482475118997 -2015,11,6,0,0,0,0,7,4,5,0.0,0.0,0.0,0.0,4,2,8,19,0,0,3,18.562988223760616,11.0,27.03242542428879,14.342372379503885,2.504569961489089,2.24,1.26,1.21,2.1332041102288652,2.65,2.12,1.5121851187808157,2.222085792994884,2.19,2.0573827940015783 -2015,11,7,0,0,0,0,6,1,2,0.0,0.0,0.0,0.0,8,8,19,21,1,5,5,18.359252944059843,8.0,26.3507625508477,12.045084093355051,2.420431142737547,2.16,1.34,1.46,2.0278055964653903,4.3,2.03,1.6413193430656934,2.0883783783783785,2.12,2.0714513981358187 -2015,11,8,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,19,18,23,20,8,11,7,19.359252944059847,9.0,22.89497123661166,9.27932133130544,2.420431142737547,2.16,1.34,1.46,2.0278055964653903,4.3,2.03,1.6413193430656934,2.0883783783783785,2.12,2.0714513981358187 -2015,11,9,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,21,21,22,18,11,14,6,21.71850588811969,13.0,22.539056823195992,9.108135141553497,2.420431142737547,2.16,1.34,1.46,2.0278055964653903,4.3,2.03,1.6413193430656934,2.0883783783783785,2.12,2.0714513981358187 -2015,11,10,0,0,0,0,4,0,1,0.0,0.0,0.0,0.0,21,19,22,17,6,10,3,25.0,15.0,24.006095686973552,11.936948951801554,2.4851003874603736,2.16,1.52,1.54,2.093681917211329,3.04,2.07,1.7426852466268525,2.2484682080924854,2.1,2.0400942040555643 -2015,11,11,0,0,0,0,3,0,6,0.0,0.0,0.0,0.0,19,14,18,17,6,9,1,22.71850588811969,14.0,28.2462183224046,16.936948951801554,2.4926319396847156,2.18,1.54,1.49,2.073655319148936,2.34,2.07,1.7126523994811933,2.159471865745311,2.12,2.058618702667106 -2015,11,12,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,16,14,18,20,5,8,6,24.0,12.0,28.310244576611268,14.810846855404662,2.5151569037656905,2.15,1.49,1.42,2.101620658949243,2.66,2.06,1.644319526627219,2.2282730923694776,2.12,2.0465044378698223 -2015,11,13,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,14,14,23,23,7,15,8,19.359252944059847,8.0,25.51521747064389,11.27932133130544,2.4537433414043583,2.1,1.48,1.48,1.98629409070087,2.36,1.98,1.6275586854460093,2.07369500213584,2.05,1.9431730237700386 -2015,11,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,22,23,18,12,18,8,17.562988223760616,8.0,22.088279756194474,10.342372379503885,2.398006166495375,2.09,1.34,1.5,1.9943580246913577,2.54,2.06,1.5717130750605326,2.042233128834356,2.07,1.9600184289334253 -2015,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,20,17,17,12,17,7,23.640747055940153,14.0,21.993427804498968,13.405423427702331,2.398006166495375,2.09,1.34,1.5,1.9943580246913577,2.54,2.06,1.5717130750605326,2.042233128834356,2.07,1.9600184289334253 -2015,11,16,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,19,16,17,16,10,13,2,26.999999999999996,17.0,27.050370916542818,15.0,2.398006166495375,2.09,1.34,1.5,1.9943580246913577,2.54,2.06,1.5717130750605326,2.042233128834356,2.07,1.9600184289334253 -2015,11,17,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,27,22,13,13,9,6,3,20.71850588811969,14.0,29.55516913651661,19.40542342770233,2.598202959830867,2.15,1.56,1.67,2.167737627651218,2.36,2.1,1.7353589909443725,2.345438765670203,2.13,2.0410846975088965 -2015,11,18,0,0,0,0,4,1,0,0.0,0.0,0.0,0.0,29,19,8,16,5,4,7,23.281494111880306,10.0,26.585689349917786,17.40542342770233,2.5489289698772777,2.1,1.63,1.65,2.066024796590469,2.25,2.07,1.7413333333333332,2.181789627465303,2.08,1.9634729835552074 -2015,11,19,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,21,12,17,27,2,9,7,24.562988223760616,7.0,27.41881827257221,13.576609617454274,2.491243243243243,2.21,1.63,1.69,2.1115520481022174,1.91,2.18,1.758267266040049,2.2420808174640037,2.19,2.0489015753721636 -2015,11,20,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,13,15,28,31,8,16,6,27.20373527970077,4.0,25.593666854544296,10.576609617454274,2.6396968590211833,2.27,1.77,1.87,2.126069221260816,2.34,2.19,1.8879887054735012,2.285033591731266,2.24,2.114477138323958 -2015,11,21,0,0,0,0,3,0,0,0.0,1.0,0.0,0.0,25,24,30,37,12,15,10,27.844482335640922,4.0,33.702422962854016,10.216270283106994,2.4405483028720627,2.31,1.81,1.86,2.150896490710705,3.93,2.25,2.0106702077800347,2.2420498026116005,2.28,2.1554320131727187 -2015,11,22,0,0,0,0,2,0,0,0.0,1.0,0.0,0.0,25,22,40,36,13,27,21,27.92224116782046,4.0,28.591403198932227,11.216270283106994,2.4405483028720627,2.31,1.81,1.86,2.150896490710705,3.93,2.25,2.0106702077800347,2.2420498026116005,2.28,2.1554320131727187 -2015,11,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,31,36,28,20,26,17,28.20373527970077,6.0,26.560603913159923,10.747795807206217,2.4405483028720627,2.31,1.81,1.86,2.150896490710705,3.93,2.25,2.0106702077800347,2.2420498026116005,2.28,2.1554320131727187 -2015,11,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,31,31,25,17,22,12,28.359252944059847,12.0,24.823098232925823,10.810846855404662,2.553232604373757,2.26,1.82,1.86,2.2411240506329113,4.33,2.34,1.9368898582333696,2.3052678973435388,2.22,2.117777777777778 -2015,11,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,28,24,22,14,16,4,29.999999999999996,18.0,28.31766729798673,10.405423427702331,2.541072151045179,2.16,1.69,1.77,2.2160167714884693,2.3,2.35,1.9056814851001467,2.264188679245283,2.15,2.0695418774592467 -2015,11,26,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,24,21,15,22,9,9,1,31.359252944059847,21.0,37.11997182658767,13.468474475900777,2.4088684210526314,2.06,1.54,1.59,2.137579265223956,2.84,2.36,1.6902303049555274,2.154373297002725,2.05,1.971379553052965 -2015,11,27,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,15,15,17,36,7,5,7,31.640747055940153,20.0,42.611131790761036,19.171186189751943,2.4088684210526314,2.06,1.54,1.59,2.137579265223956,2.84,2.36,1.6902303049555274,2.154373297002725,2.05,1.971379553052965 -2015,11,28,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,15,17,28,37,6,5,18,32.281494111880306,20.0,42.88188268752456,22.108135141553497,2.4088684210526314,2.06,1.54,1.59,2.137579265223956,2.84,2.36,1.6902303049555274,2.154373297002725,2.05,1.971379553052965 -2015,11,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,25,31,35,6,9,19,32.92224116782046,18.0,42.58786931125927,21.468474475900777,2.4088684210526314,2.06,1.54,1.59,2.137579265223956,2.84,2.36,1.6902303049555274,2.154373297002725,2.05,1.971379553052965 -2015,11,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,34,29,28,32,9,8,15,34.64074705594015,19.0,41.57997358005124,22.63966066565272,2.4088684210526314,2.06,1.54,1.59,2.137579265223956,2.84,2.36,1.6902303049555274,2.154373297002725,2.05,1.971379553052965 -2015,12,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,25,23,31,9,8,15,28.640747055940153,16.0,40.25013562587947,22.342372379503885,2.5565,2.24,1.45,1.51,2.236274742676168,2.41,2.3,1.6508333333333334,2.342263797942002,2.2,2.0820564181581127 -2015,12,2,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,18,29,32,6,14,15,25.640747055940153,13.0,36.09527282411361,19.810846855404662,2.5374787972243635,2.25,1.54,1.57,2.238022181146026,2.38,2.27,1.7316909230180006,2.3478789237668165,2.22,2.1529545454545453 -2015,12,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,20,21,31,32,13,24,17,20.640747055940153,10.0,31.804298716102448,17.04508409335505,2.472469900240798,2.2,1.74,1.81,2.172497839239412,2.99,2.19,1.9131107764390898,2.321928609483218,2.17,2.156145426114152 -2015,12,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,24,28,29,15,24,17,23.359252944059843,14.0,28.57681302370661,14.810846855404662,2.417468434343434,2.11,1.6,1.69,2.100046403712297,2.71,2.08,1.772785400658617,2.25359375,2.08,2.0852642738149325 -2015,12,5,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,26,29,27,15,21,15,23.640747055940153,13.0,29.48027957179267,14.108135141553497,2.401077891424076,2.11,1.5,1.53,2.0623522167487685,2.16,2.02,1.7162131219726993,2.1967837032129847,2.07,2.0642359371441583 -2015,12,6,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,27,28,26,14,18,12,21.0,10.0,29.694404502916402,14.045084093355051,2.401077891424076,2.11,1.5,1.53,2.0623522167487685,2.16,2.02,1.7162131219726993,2.1967837032129847,2.07,2.0642359371441583 -2015,12,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,26,29,25,13,17,11,18.562988223760616,8.0,26.264690128137303,11.513558569255828,2.401077891424076,2.11,1.5,1.53,2.0623522167487685,2.16,2.02,1.7162131219726993,2.1967837032129847,2.07,2.0642359371441583 -2015,12,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,27,25,24,13,17,9,14.922241167820463,6.0,21.00684488789907,12.810846855404662,2.38,2.05,1.59,1.69,1.9852029047415634,2.62,1.87,1.7782497116493656,2.1797641277641278,2.01,1.9799800871188549 -2015,12,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,25,21,21,13,16,7,17.281494111880306,7.0,19.44598735365851,12.108135141553497,2.2637548764629387,2.0,1.37,1.62,1.8475765472312704,2.21,1.84,1.6376351173213815,1.9997378435517972,1.9599999999999997,1.9247922587630262 -2015,12,10,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,19,19,19,19,9,12,4,22.640747055940153,10.0,21.142956674357393,10.108135141553497,2.3475027382256295,2.02,1.44,1.46,1.9354286730700818,1.89,1.91,1.621359649122807,2.147537826685007,1.9799999999999998,1.938505352187128 -2015,12,11,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,18,17,18,22,6,5,2,25.359252944059847,16.0,25.201074181662122,11.702711713851166,2.311549636803874,1.93,1.23,1.29,1.9534673659673658,1.46,1.94,1.3983942766295707,2.098515625,1.9,1.839788855572214 -2015,12,12,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,16,14,13,22,4,1,1,25.281494111880306,18.0,31.69411390543261,19.23423723795039,2.155882614495331,1.74,1.0,0.92,1.7574577498792852,1.07,1.83,1.152327086882453,1.9381203007518795,1.75,1.6818855250709555 -2015,12,13,0,0,0,0,2,2,2,0.0,0.0,0.0,0.0,17,11,9,20,4,2,5,25.71850588811969,18.0,32.28441823975307,22.40542342770233,2.155882614495331,1.74,1.0,0.92,1.7574577498792852,1.07,1.83,1.152327086882453,1.9381203007518795,1.75,1.6818855250709555 -2015,12,14,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,15,9,10,25,2,6,9,28.077758832179533,21.0,33.74996871755132,24.702711713851166,2.155882614495331,1.74,1.0,0.92,1.7574577498792852,1.07,1.83,1.152327086882453,1.9381203007518795,1.75,1.6818855250709555 -2015,12,15,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,13,11,23,27,4,12,8,29.999999999999996,22.0,37.52351596337868,27.40542342770233,2.3085447263017356,1.78,1.2,1.32,1.884005884825557,1.42,1.95,1.383155672823219,1.9946187258687256,1.75,1.6293425051991681 -2015,12,16,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,20,20,29,9,12,10,29.359252944059843,22.0,40.70090645011163,29.342372379503885,2.359085855466337,1.72,1.22,1.34,1.969887640449438,1.71,2.05,1.3547954376394742,2.0922548120989917,1.7,1.610724663049186 -2015,12,17,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,22,17,29,37,9,16,17,28.844482335640926,19.0,43.680514889896756,28.108135141553497,2.3561686659396583,1.84,1.23,1.38,2.004635024549918,1.9,2.03,1.4607862248213126,2.1619330708661417,1.8299999999999998,1.6966321313240043 -2015,12,18,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,22,35,41,11,27,21,25.92224116782046,16.0,37.05440134448671,22.576609617454274,2.33921146953405,1.87,1.3,1.4,1.9095931849791377,2.33,1.94,1.466976649746193,2.1239627805145047,1.83,1.7258888162197514 -2015,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,32,39,38,21,27,17,27.92224116782046,17.0,32.030628878749226,19.576609617454274,2.274442934782609,1.79,1.2,1.26,1.8241398759165257,2.85,1.9,1.3832375242461648,1.8918037135278516,1.78,1.6714677298778966 -2015,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,30,32,31,19,24,12,27.359252944059843,20.0,30.646125394323494,18.936948951801554,2.274442934782609,1.79,1.2,1.26,1.8241398759165257,2.85,1.9,1.3832375242461648,1.8918037135278516,1.78,1.6714677298778966 -2015,12,21,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,27,25,23,29,14,17,5,27.562988223760616,19.0,31.601827251732605,19.63966066565272,2.274442934782609,1.79,1.2,1.26,1.8241398759165257,2.85,1.9,1.3832375242461648,1.8918037135278516,1.78,1.6714677298778966 -2015,12,22,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,19,17,19,29,8,7,7,28.640747055940153,14.0,29.238196020762768,21.936948951801554,2.351858316221766,1.85,0.9,1.26,1.8949758648431214,1.78,1.98,1.276796494644596,2.034955527318932,1.81,1.7057643066481567 -2015,12,23,0,0,0,0,4,1,3,0.0,0.0,0.0,0.0,18,12,16,25,3,2,3,29.999999999999996,15.0,33.847176662963996,15.63966066565272,2.346695278969957,1.79,0.88,0.92,1.8860559440559441,1.42,1.96,1.150754195878479,1.9034590616375344,1.79,1.6695147286821703 -2015,12,24,0,0,0,0,5,2,2,0.0,0.0,0.0,0.0,11,7,21,33,1,3,5,30.359252944059843,19.0,38.77183295391931,16.342372379503885,2.35358865248227,1.71,0.95,0.91,1.9032504201680673,1.03,2.02,1.160252495596007,1.9321169504071058,1.75,1.523565912851627 -2015,12,25,0,0,0,0,6,2,3,0.0,0.0,0.0,0.0,13,12,24,35,1,4,6,32.0,22.0,40.95856879778806,18.936948951801554,2.46825817555938,1.68,0.92,0.86,2.0082514734774066,1.69,2.25,1.0770698254364088,2.0092885154061624,1.69,1.4588782631170845 -2015,12,26,0,0,0,0,4,3,5,0.0,0.0,0.0,0.0,19,17,23,32,2,2,3,35.0,23.0,46.26721364759938,27.87389790360311,2.46825817555938,1.68,0.92,0.86,2.0082514734774066,1.69,2.25,1.0770698254364088,2.0092885154061624,1.69,1.4588782631170845 -2015,12,27,0,0,0,0,5,4,4,0.0,0.0,0.0,0.0,19,14,22,40,1,0,10,33.35925294405985,23.0,49.43165704228289,27.513558569255828,2.46825817555938,1.68,0.92,0.86,2.0082514734774066,1.69,2.25,1.0770698254364088,2.0092885154061624,1.69,1.4588782631170845 -2015,12,28,0,0,0,0,5,2,0,0.0,0.0,0.0,0.0,32,27,29,42,5,3,22,30.640747055940153,25.0,48.0328685237099,28.513558569255828,2.46825817555938,1.68,0.92,0.86,2.0082514734774066,1.69,2.25,1.0770698254364088,2.0092885154061624,1.69,1.4588782631170845 -2015,12,29,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,35,27,29,43,5,13,24,31.640747055940153,23.0,46.82905513833428,29.04508409335505,2.7959959668384493,2.27,1.51,1.49,2.623040540540541,4.37,2.61,1.7942770288131114,2.889698974528614,2.3,2.1415961395694136 -2015,12,30,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,34,25,33,42,6,16,21,33.92224116782046,22.0,46.03089306451648,27.810846855404662,2.953340647284696,2.53,1.76,1.71,2.8340395220588235,4.69,2.88,2.0237554285714285,2.9966510318949346,2.61,2.3883996299722474 -2015,12,31,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,27,23,36,43,6,20,21,37.281494111880306,22.0,48.452033235680865,27.27932133130544,2.7483684904416608,2.36,1.64,1.62,2.515906432748538,4.95,2.59,1.8372474809535513,2.5903290870488322,2.37,2.2410892857142857 -2016,1,1,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,29,38,40,13,26,23,37.2814556922917,22.0,49.46044194717936,24.936280570726595,2.706898349261512,2.44,1.73,1.93,2.4099687890137327,5.19,2.59,2.022923100443357,2.5407214076246336,2.41,2.308896667848281 -2016,1,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,33,32,36,38,17,27,23,38.0,20.0,46.18132086146378,20.93628057072659,2.706898349261512,2.44,1.73,1.93,2.4099687890137327,5.19,2.59,2.022923100443357,2.5407214076246336,2.41,2.308896667848281 -2016,1,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,31,37,40,18,25,19,38.64072784614585,17.0,40.83868857773397,19.39937240257678,2.706898349261512,2.44,1.73,1.93,2.4099687890137327,5.19,2.59,2.022923100443357,2.5407214076246336,2.41,2.308896667848281 -2016,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,40,39,43,21,30,22,33.92218353843756,15.0,37.39412652195929,20.7047346548015,2.706898349261512,2.44,1.73,1.93,2.4099687890137327,5.19,2.59,2.022923100443357,2.5407214076246336,2.41,2.308896667848281 -2016,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,48,43,40,27,31,24,29.922183538437555,16.0,33.72577052141513,20.010096907026217,2.703005671077505,2.48,1.8,3.67,2.4389522872602067,7.73,2.49,2.3426612384829655,2.5646153846153847,2.45,2.365066478409225 -2016,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,41,38,37,24,28,19,27.359272153854146,19.0,32.23210722734296,19.315459159250935,2.651867572156197,2.37,1.69,3.04,2.3567533490937747,5.13,2.52,2.1566366243342894,2.45912676056338,2.32,2.2753053152039557 -2016,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,37,32,32,19,24,11,27.922183538437555,19.0,33.51059885326029,21.620821411475657,2.7042237762237766,2.41,1.7,2.33,2.3862582781456956,4.64,2.49,2.0003128113169955,2.5079557428872494,2.38,2.310034509202454 -2016,1,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,34,29,31,16,18,13,27.281455692291704,20.0,36.05357837908164,24.85236732740075,2.7221761658031087,2.42,1.74,1.93,2.40376188094047,3.69,2.44,1.974431594488189,2.504051553205552,2.38,2.298924395946999 -2016,1,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,26,25,45,12,14,17,29.0,20.0,38.96796516593229,25.31545915925094,2.735792207792208,2.59,1.77,2.66,2.5257383720930235,3.28,2.48,2.242891624817755,2.620031496062992,2.63,2.422587698892714 -2016,1,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,17,39,60,10,28,28,27.281455692291704,17.0,41.2765400171239,27.010096907026217,2.735792207792208,2.59,1.77,2.66,2.5257383720930235,3.28,2.48,2.242891624817755,2.620031496062992,2.63,2.422587698892714 -2016,1,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,36,51,53,25,36,25,29.281455692291704,16.0,41.5052149070764,25.241642822951313,2.735792207792208,2.59,1.77,2.66,2.5257383720930235,3.28,2.48,2.242891624817755,2.620031496062992,2.63,2.422587698892714 -2016,1,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,38,49,51,23,30,19,25.922183538437555,14.0,39.30181200475928,23.241642822951313,2.7265464480874315,2.57,2.06,3.75,2.4520911793855302,4.81,2.39,2.4548575980880303,2.553627608346709,2.65,2.4369256148770244 -2016,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,43,51,44,25,31,17,22.64072784614585,16.0,35.819788520942225,22.010096907026217,2.5635477486392877,2.4,1.81,3.93,2.293978132884777,6.0,2.22,2.342740726124704,2.3568165596002855,2.37,2.2933716289756925 -2016,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,38,39,34,19,23,14,27.359272153854146,17.0,34.4770181717378,21.315459159250935,2.487471395881007,2.32,1.76,2.09,2.18821758135017,4.43,2.15,2.0076704816404387,2.2744809160305346,2.3,2.2201141297605758 -2016,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,31,30,38,17,20,10,28.56291138458341,16.0,36.08938038968204,23.315459159250935,2.443388269510422,2.29,1.73,1.89,2.162612765957447,3.4,2.1,1.9103131881575728,2.23456,2.3,2.1514401749453294 -2016,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,27,36,49,13,24,18,24.64072784614585,13.0,37.07422935711964,22.54700507517603,2.37,2.33,1.81,3.96,2.139930093209055,4.71,2.11,2.0879653161907608,2.198478605388272,2.42,2.1526992329430765 -2016,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,50,62,18,28,23,24.281455692291704,12.0,35.285136921002255,18.315459159250935,2.37,2.33,1.81,3.96,2.139930093209055,4.71,2.11,2.0879653161907608,2.198478605388272,2.42,2.1526992329430765 -2016,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,44,58,61,28,40,24,23.281455692291704,12.0,32.06027057324029,17.778550991101127,2.37,2.33,1.81,3.96,2.139930093209055,4.71,2.11,2.0879653161907608,2.198478605388272,2.42,2.1526992329430765 -2016,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,46,46,55,56,33,40,18,25.0,13.0,31.127646254930138,16.083913243325842,2.37,2.33,1.81,3.96,2.139930093209055,4.71,2.11,2.0879653161907608,2.198478605388272,2.42,2.1526992329430765 -2016,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,42,51,48,30,35,18,24.281455692291704,12.0,30.027653178448073,14.85236732740075,2.393614627285513,2.28,1.81,2.94,2.1151156583629893,5.01,2.05,2.069324228867436,2.2078705636743217,2.26,2.1325443859434308 -2016,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,40,47,44,25,28,15,21.922183538437558,10.0,33.04001921579891,17.241642822951313,2.3523373173970783,2.21,1.79,3.14,2.05159484494563,5.56,1.96,2.100528694968554,2.1818324324324325,2.17,2.0985355800703114 -2016,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,45,44,44,24,30,23,18.64072784614585,11.0,32.51436798673276,15.704734654801499,2.3660980592441265,2.24,1.82,3.26,2.048287852112676,4.97,1.99,2.141677175283733,2.177730956239871,2.2,2.1494103343465047 -2016,1,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,43,41,42,29,35,24,24.281455692291704,13.0,29.272246626235837,14.778550991101124,2.368431618569636,2.18,1.81,2.86,2.0260761460761465,4.62,1.97,2.0955077394114645,2.1309337223843268,2.15,2.1374520054850876 -2016,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,43,40,37,28,35,18,24.35927215385415,15.0,29.42868445871316,16.620821411475657,2.368431618569636,2.18,1.81,2.86,2.0260761460761465,4.62,1.97,2.0955077394114645,2.1309337223843268,2.15,2.1374520054850876 -2016,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,40,34,34,25,26,10,24.56291138458341,14.0,33.10599980187672,19.54700507517603,2.368431618569636,2.18,1.81,2.86,2.0260761460761465,4.62,1.97,2.0955077394114645,2.1309337223843268,2.15,2.1374520054850876 -2016,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,32,32,36,18,22,16,21.281455692291704,13.0,36.459223246069115,20.473188738876406,2.355624566273421,2.17,1.71,1.77,2.070922710248553,3.77,1.98,1.8685861690450054,2.1944632768361583,2.14,2.0873476837865055 -2016,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,30,36,35,15,26,20,17.56291138458341,11.0,33.50856977664434,19.473188738876406,2.392563667232597,2.22,1.82,2.0,2.09441699963676,4.02,1.98,2.009828470031546,2.2478003384094754,2.17,2.1781932021466908 -2016,1,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,36,32,31,19,26,17,17.0,11.0,30.358239620661397,16.778550991101124,2.3586817325800378,2.22,1.83,1.98,2.0572496617050064,3.51,1.97,2.001589709762533,2.221414752116082,2.18,2.171967882058708 -2016,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,35,36,30,20,24,11,23.640727846145854,10.0,27.50717279157323,14.85236732740075,2.1872115384615385,2.12,1.6,1.67,1.9307382352941178,2.5,1.92,1.768077511473738,2.0532038834951454,2.08,2.058041518987342 -2016,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,34,28,27,19,16,7,27.359272153854146,12.0,24.872790952406145,12.389275495550562,2.1872115384615385,2.12,1.6,1.67,1.9307382352941178,2.5,1.92,1.768077511473738,2.0532038834951454,2.08,2.058041518987342 -2016,1,31,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,24,24,22,26,14,10,3,28.718544307708296,17.0,34.29124918618298,10.620821411475657,2.1872115384615385,2.12,1.6,1.67,1.9307382352941178,2.5,1.92,1.768077511473738,2.0532038834951454,2.08,2.058041518987342 -2016,2,1,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,18,21,26,30,8,8,5,28.718544307708296,20.0,38.3888737582205,21.463091831850186,2.4044290657439444,2.3,1.7,1.92,2.204155429382541,2.42,2.13,1.956263943710314,2.2715636363636365,2.28,2.2110950268503387 -2016,2,2,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,28,28,28,30,9,5,7,28.35927215385415,22.0,41.92368420768502,27.620821411475657,2.3437376509330408,2.2,1.73,1.76,2.1042048740190005,2.19,2.05,1.876079952267303,2.2115812917594653,2.19,2.0899467882934246 -2016,2,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,25,23,24,38,7,10,18,28.35927215385415,21.0,45.669539679180644,30.010096907026217,2.198914525432617,2.05,1.53,1.4,1.980832737669764,1.94,1.95,1.680321110420551,2.067087818696884,2.06,1.961219422700587 -2016,2,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,20,37,42,10,25,22,24.922183538437558,17.0,44.250608203383536,26.7047346548015,2.225355969331873,2.07,1.66,1.57,2.0023082911638768,1.91,1.94,1.7836623146713875,2.098974358974359,2.06,1.9949065485255433 -2016,2,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,30,38,41,20,29,22,21.0,13.0,37.53348215972732,22.7047346548015,2.1464999999999996,2.06,1.67,1.61,1.9465829307568439,2.84,1.89,1.79394471773249,2.029382911392405,2.03,1.977199351297405 -2016,2,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,34,34,34,22,27,19,23.640727846145854,10.0,35.45558009902925,18.167826486651688,2.0997029077117575,2.09,1.6,1.66,1.9335511679644046,3.06,1.88,1.8619130772215753,2.022905982905983,2.06,2.0206978494623655 -2016,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,28,29,22,24,18,21.766550615312667,6.0,32.70389611861916,14.241642822951313,2.0997029077117575,2.09,1.6,1.66,1.9335511679644046,3.06,1.88,1.8619130772215753,2.022905982905983,2.06,2.0206978494623655 -2016,2,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,32,33,40,21,25,18,18.485094923020966,3.0,31.625884334332767,10.936280570726593,2.0997029077117575,2.09,1.6,1.66,1.9335511679644046,3.06,1.88,1.8619130772215753,2.022905982905983,2.06,2.0206978494623655 -2016,2,9,0,0,0,0,0,0,0,0.0,2.0,0.0,0.0,41,35,42,46,24,34,17,16.20363923072926,3.0,29.023481320267635,9.167826486651688,2.2111971830985913,2.27,1.73,2.06,2.048214856230032,5.59,1.92,1.977958435207824,2.0967460317460316,2.28,2.152583065380493 -2016,2,10,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,39,35,49,45,28,38,14,18.20363923072926,3.0,26.246794330219146,7.473188738876406,2.1686530014641288,2.22,1.81,2.79,1.955272346368715,4.48,1.87,2.0491207479610107,2.045900747790619,2.21,2.1093380455514414 -2016,2,11,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,42,44,50,46,28,30,9,18.844367076875113,3.0,25.872945280725034,7.0100969070262185,2.114962809917355,2.17,1.78,4.55,1.8759031167855804,6.42,1.78,2.3405918456817187,1.9684263065179093,2.17,2.053011323425336 -2016,2,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,53,50,49,46,26,26,8,17.281455692291704,3.0,25.789053769686817,6.778550991101125,2.089765237020316,2.17,1.71,4.0,1.8540796703296702,6.74,1.68,2.1274963087956125,1.9242638297872339,2.21,2.035162179085786 -2016,2,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,51,55,52,27,34,11,22.0,6.0,24.406290319707274,6.547005075176031,1.92440329218107,2.06,1.71,5.57,1.7330880996309963,6.51,1.56,2.285054091116867,1.8055891354246367,2.07,1.9550985270700636 -2016,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,65,59,53,45,30,32,9,20.0,5.0,25.7107713203864,7.778550991101125,1.92440329218107,2.06,1.71,5.57,1.7330880996309963,6.51,1.56,2.285054091116867,1.8055891354246367,2.07,1.9550985270700636 -2016,2,15,0,0,0,0,0,0,1,0.0,1.0,0.0,0.0,52,46,44,35,23,25,6,15.922183538437556,3.0,21.61005201680863,7.0100969070262185,1.92440329218107,2.06,1.71,5.57,1.7330880996309963,6.51,1.56,2.285054091116867,1.8055891354246367,2.07,1.9550985270700636 -2016,2,16,0,0,0,0,1,0,0,0.0,2.0,0.0,0.0,33,31,38,32,15,22,8,17.0,2.0,20.373545858791548,5.241642822951312,1.92440329218107,2.06,1.71,5.57,1.7330880996309963,6.51,1.56,2.285054091116867,1.8055891354246367,2.07,1.9550985270700636 -2016,2,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7684540840749062,29,31,37,32,16,23,9,16.281455692291704,6.0,19.8200035143939,4.547005075176031,1.88,1.91,1.54,1.67,1.632047181127549,3.32,1.52,1.6796125699526474,1.7021166134185306,1.85,1.8099818840579711 -2016,2,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,39,37,24,19,20,5,21.796360769270738,11.0,17.17559580043425,4.389275495550562,1.8747987117552336,1.92,1.56,1.89,1.6313483642793987,4.23,1.52,1.7196344172894364,1.7024110953058322,1.8,1.801791336557259 -2016,2,19,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,39,38,23,17,18,13,1,22.718544307708292,13.0,20.802331268604423,3.6208214114756565,1.8781349206349205,1.91,1.53,1.42,1.5892587719298246,3.0,1.49,1.654867469879518,1.6665176784523017,1.77,1.7800045526974733 -2016,2,20,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,25,22,15,18,11,7,0,23.718544307708292,12.0,21.723937206256593,4.6208214114756565,1.827942415730337,1.87,1.37,1.37,1.5525539790252931,2.12,1.52,1.5125003894687645,1.6109765625,1.76,1.7235766850643919 -2016,2,21,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,21,21,25,26,8,5,1,26.0,10.0,25.494652088500107,5.315459159250937,1.827942415730337,1.87,1.37,1.37,1.5525539790252931,2.12,1.52,1.5125003894687645,1.6109765625,1.76,1.7235766850643919 -2016,2,22,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,29,27,30,30,9,11,6,24.0,8.0,27.07857038936893,8.010096907026218,1.827942415730337,1.87,1.37,1.37,1.5525539790252931,2.12,1.52,1.5125003894687645,1.6109765625,1.76,1.7235766850643919 -2016,2,23,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,36,31,29,29,11,11,10,23.281455692291704,7.0,29.33194928205953,13.473188738876406,1.8295148842337376,1.86,1.48,1.34,1.6125819344524381,2.78,1.53,1.6099422766104825,1.6819322033898303,1.78,1.743031914893617 -2016,2,24,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,22,31,30,7,14,12,21.281455692291704,5.0,28.02245223987277,12.241642822951313,1.8611907114624506,1.86,1.28,1.26,1.6331721550646103,1.76,1.52,1.4882450331125827,1.6956178050652344,1.82,1.7269944247339077 -2016,2,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,16,20,32,33,15,24,16,17.20363923072926,4.0,27.441662410885012,10.936280570726593,1.826357894736842,1.8,1.29,1.24,1.5976524879614769,1.76,1.49,1.4577263157894738,1.6746017699115043,1.76,1.7176646706586827 -2016,2,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,34,36,30,20,25,17,18.281455692291704,5.0,22.30361063484746,7.7047346548015,1.7842162818955043,1.77,1.39,1.36,1.5376295666949873,2.93,1.42,1.5698501596659296,1.6034054054054052,1.7,1.6914804469273743 -2016,2,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,27,20,21,21,12,17.64072784614585,6.0,18.271694094414652,5.778550991101125,1.6462107623318385,1.71,1.19,1.05,1.4347589098532494,1.65,1.35,1.3652767382312387,1.4912151137827394,1.61,1.5913482821672602 -2016,2,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,22,18,21,14,15,7,20.0,6.0,18.826878716161136,5.315459159250937,1.6462107623318385,1.71,1.19,1.05,1.4347589098532494,1.65,1.35,1.3652767382312387,1.4912151137827394,1.61,1.5913482821672602 -2016,2,29,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,20,20,23,26,9,11,4,21.359272153854146,4.0,19.79103540738358,4.547005075176031,1.6462107623318385,1.71,1.19,1.05,1.4347589098532494,1.65,1.35,1.3652767382312387,1.4912151137827394,1.61,1.5913482821672602 -2016,3,1,0,0,0,0,0,0,2,0.0,0.0,0.0,0.7684540840749062,27,24,33,37,8,11,4,20.64072784614585,4.0,21.68900502164241,4.778550991101125,1.65,1.67,1.2,1.07,1.3958940972222222,1.94,1.28,1.3548151848151848,1.4495432300163131,1.62,1.5164351181862037 -2016,3,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7684540840749062,24,26,41,36,13,23,7,19.281455692291704,5.0,17.921232432079346,3.083913243325844,1.6513563308506467,1.72,1.31,1.33,1.3928287526427061,3.0,1.3,1.4135830784913355,1.4535907335907337,1.67,1.5155904399782727 -2016,3,3,0,0,0,0,1,0,2,0.0,0.0,0.0,0.7684540840749062,41,39,40,33,19,24,5,17.0,6.0,18.497755187644884,3.547005075176031,1.6877106227106227,1.72,1.21,1.3,1.4726679712981083,4.17,1.36,1.362742281303602,1.5118465227817748,1.69,1.5360367052654578 -2016,3,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7684540840749062,40,36,37,28,17,21,8,18.281455692291704,7.0,17.115238919402152,3.083913243325844,1.6560834518729253,1.67,1.24,1.26,1.3973527625986644,3.31,1.3,1.3783384413309983,1.4501303780964798,1.63,1.5086549165120593 -2016,3,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,35,33,25,17,18,5,15.359272153854148,9.0,16.30078656832122,4.083913243325844,1.5681759290828508,1.58,1.1,1.06,1.261748518204911,2.05,1.17,1.2657142857142858,1.3047755491881565,1.48,1.4351102093516555 -2016,3,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,27,17,14,16,4,17.43708861541659,11.0,15.97220754142504,3.3892754955505624,1.5681759290828508,1.58,1.1,1.06,1.261748518204911,2.05,1.17,1.2657142857142858,1.3047755491881565,1.48,1.4351102093516555 -2016,3,7,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,31,23,17,11,11,11,2,22.718544307708292,17.0,22.643316551337684,11.694637747775282,1.5681759290828508,1.58,1.1,1.06,1.261748518204911,2.05,1.17,1.2657142857142858,1.3047755491881565,1.48,1.4351102093516555 -2016,3,8,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,23,15,7,9,5,4,1,25.43708861541659,15.0,25.037195149272666,13.85236732740075,1.6762280701754384,1.61,1.01,0.96,1.3889527027027027,1.52,1.29,1.217944893308473,1.4703731343283581,1.52,1.4594313750157253 -2016,3,9,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,13,9,7,18,3,2,4,22.64072784614585,11.0,23.298248754846465,11.315459159250938,1.6729510395707579,1.66,1.02,0.97,1.3939003200731597,1.15,1.29,1.1976827757125157,1.4510050251256281,1.54,1.4773810470510271 -2016,3,10,0,0,0,0,3,2,1,0.0,0.0,0.0,0.0,11,7,14,18,1,1,3,18.35927215385415,7.0,18.13365034857821,6.778550991101125,1.7110625814863103,1.72,1.02,0.95,1.4167909645034062,1.12,1.29,1.2457242582897035,1.4708536585365852,1.61,1.5220840586918678 -2016,3,11,0,0,0,0,4,1,1,0.0,0.0,0.0,0.0,14,11,20,16,1,4,4,21.64072784614585,11.0,14.690490001522367,5.315459159250937,1.7579797088663431,1.76,1.13,1.05,1.4603822557810289,1.16,1.33,1.3026362232517095,1.5111536088834052,1.69,1.6257223618090453 -2016,3,12,0,0,0,0,4,1,1,0.0,0.0,0.0,0.0,23,19,18,16,3,1,2,22.718544307708292,15.0,16.59387750474794,9.926183663700375,1.7938387667424815,1.77,1.02,0.87,1.4721493624772313,1.17,1.3,1.290452495723838,1.5107736539466807,1.69,1.6617307116478692 -2016,3,13,0,0,0,0,4,1,3,0.0,0.0,0.0,0.0,16,17,17,13,3,1,1,23.359272153854146,15.0,17.21667203363021,9.926183663700375,1.7938387667424815,1.77,1.02,0.87,1.4721493624772313,1.17,1.3,1.290452495723838,1.5107736539466807,1.69,1.6617307116478692 -2016,3,14,0,0,0,0,4,2,4,0.0,0.0,0.0,0.0,24,20,12,9,4,2,0,25.359272153854146,10.0,18.011588524937082,7.463091831850187,1.7938387667424815,1.77,1.02,0.87,1.4721493624772313,1.17,1.3,1.290452495723838,1.5107736539466807,1.69,1.6617307116478692 -2016,3,15,0,0,0,0,4,3,5,0.0,0.0,0.0,0.0,22,17,12,11,3,1,1,24.718544307708296,9.0,25.465468988038104,4.852367327400749,1.8115655965120887,1.75,1.2,1.1,1.5081078331637843,1.62,1.36,1.3695927379784103,1.5554126473740622,1.67,1.6312812358019082 -2016,3,16,0,0,0,0,5,2,3,0.0,0.0,0.0,0.0,18,13,13,19,2,2,3,21.922183538437558,5.0,25.37413698956263,5.0100969070262185,1.8552555850056796,1.84,1.29,1.15,1.5659324009324012,1.68,1.45,1.5154404510218464,1.6342105263157893,1.76,1.720059742023082 -2016,3,17,0,0,0,0,3,1,3,0.0,0.0,0.0,0.7684540840749062,15,15,17,22,4,7,4,21.56291138458341,4.0,24.613209302940753,4.778550991101125,1.8261313220940552,1.83,1.33,1.18,1.5243226473629783,1.48,1.42,1.481856160761502,1.566028146989836,1.74,1.6659740063472872 -2016,3,18,0,0,0,0,3,0,3,0.0,0.0,0.0,0.7684540840749062,22,19,24,28,5,9,5,18.922183538437558,4.0,27.842236172128644,4.778550991101125,1.8500639431616341,1.89,1.36,1.33,1.6180261299435028,2.22,1.49,1.5396268656716419,1.649181395348837,1.8400000000000003,1.7579029056127051 -2016,3,19,0,0,0,0,2,0,0,0.0,0.0,0.0,1.5369081681498125,31,29,28,31,9,13,11,15.922183538437556,5.0,26.675600456601288,5.399372402576781,1.8824279677295428,1.94,1.39,1.5,1.6399188034188033,3.01,1.49,1.596392380204242,1.6708473221422862,1.8699999999999999,1.7931073113207547 -2016,3,20,0,0,0,0,2,0,0,0.0,0.0,0.1970135614576259,1.5369081681498125,35,31,29,30,14,21,16,16.64072784614585,6.0,21.049857494296536,5.167826486651688,1.8824279677295428,1.94,1.39,1.5,1.6399188034188033,3.01,1.49,1.596392380204242,1.6708473221422862,1.8699999999999999,1.7931073113207547 -2016,3,21,0,0,0,0,0,0,0,0.0,0.0,0.1970135614576259,2.3053622522247186,30,29,28,24,16,21,15,19.43708861541659,9.0,14.841726895424378,3.3154591592509375,1.8824279677295428,1.94,1.39,1.5,1.6399188034188033,3.01,1.49,1.596392380204242,1.6708473221422862,1.8699999999999999,1.7931073113207547 -2016,3,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7684540840749062,27,25,19,18,13,15,8,20.43708861541659,12.0,16.048524076027515,2.1577295796254687,1.8154704595185998,1.91,1.3,1.19,1.602666666666667,2.01,1.39,1.4639113010953781,1.6497395422257304,1.8099999999999998,1.7282998370450844 -2016,3,23,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,17,16,19,17,7,9,1,20.718544307708296,10.0,24.62430292455876,8.85236732740075,1.8483033033033034,1.87,1.28,1.18,1.614360655737705,1.52,1.43,1.4535488917861799,1.6494778067885119,1.8,1.7086098908884795 -2016,3,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,15,17,25,3,4,7,21.0,7.0,25.06129506494881,10.010096907026218,1.8720384047267353,1.89,1.31,1.24,1.6120641711229946,1.43,1.44,1.4965704953728907,1.6355576739752142,1.83,1.7358798017348203 -2016,3,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,21,13,27,26,2,13,10,20.718544307708296,6.0,24.711486818053732,7.547005075176031,1.7338779527559054,1.79,1.21,1.12,1.579665945686133,1.36,1.38,1.4512568191355435,1.574353846153846,1.75,1.6679091969873765 -2016,3,26,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,22,24,25,7,9,6,20.077816461562442,6.0,28.111129143448814,6.0100969070262185,1.7338779527559054,1.79,1.21,1.12,1.579665945686133,1.36,1.38,1.4512568191355435,1.574353846153846,1.75,1.6679091969873765 -2016,3,27,0,0,0,0,4,0,1,0.0,0.0,0.0,0.0,25,20,17,24,7,7,6,21.718544307708296,7.0,24.66765683320179,6.936280570726593,1.7338779527559054,1.79,1.21,1.12,1.579665945686133,1.36,1.38,1.4512568191355435,1.574353846153846,1.75,1.6679091969873765 -2016,3,28,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,24,16,20,20,3,9,7,22.718544307708292,12.0,21.414237924466985,5.083913243325844,1.7338779527559054,1.79,1.21,1.12,1.579665945686133,1.36,1.38,1.4512568191355435,1.574353846153846,1.75,1.6679091969873765 -2016,3,29,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,22,20,22,17,7,12,4,18.718544307708296,15.0,22.03785787704696,9.0,1.75,1.79,1.4,1.38,1.547296795169531,1.6,1.44,1.5384787528287653,1.559410288582183,1.71,1.6904582785808147 -2016,3,30,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,24,23,17,13,8,7,1,14.359272153854148,14.0,24.310565463819017,13.926183663700375,1.8209540150995196,1.8,1.47,1.42,1.6060329218106997,1.83,1.49,1.6055427946404155,1.6401845018450185,1.73,1.709159094663803 -2016,3,31,0,0,0,0,3,1,7,0.0,0.0,0.0,0.0,14,13,11,16,4,4,1,11.0,11.0,24.56092682286915,15.083913243325844,1.903943661971831,1.9,1.33,1.22,1.705900573613767,1.34,1.59,1.528365691816171,1.7796296296296295,1.81,1.8037746005046258 -2016,4,1,0,0,0,0,5,1,1,0.0,0.0,0.0,0.0,8,5,18,24,0,4,6,9.640727846145852,8.0,22.412838105207243,12.010096907026218,1.9154545454545453,1.94,1.52,1.26,1.7248850750842784,1.39,1.52,1.6400019770660341,1.7766315789473683,1.89,1.8516686474922748 -2016,4,2,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,17,15,27,25,3,11,9,11.281455692291704,5.0,16.92000462107708,8.473188738876406,1.7866037735849056,1.88,1.59,1.52,1.5859668126296382,2.8,1.38,1.661921049073949,1.6136793819410915,1.78,1.7837047175837213 -2016,4,3,0,0,0,0,1,0,0,0.0,0.0,0.1970135614576259,0.7684540840749062,30,29,23,15,10,13,7,10.0,3.0,13.3302750188676,4.778550991101125,1.7866037735849056,1.88,1.59,1.52,1.5859668126296382,2.8,1.38,1.661921049073949,1.6136793819410915,1.78,1.7837047175837213 -2016,4,4,0,0,0,0,1,0,0,0.0,0.0,0.1970135614576259,1.5369081681498125,39,29,27,20,6,7,2,17.718544307708296,3.0,12.42697551045087,2.85236732740075,1.7866037735849056,1.88,1.59,1.52,1.5859668126296382,2.8,1.38,1.661921049073949,1.6136793819410915,1.78,1.7837047175837213 -2016,4,5,0,0,0,0,1,0,1,0.0,0.0,0.1970135614576259,2.3053622522247186,39,34,32,20,8,9,0,19.35927215385415,2.0,13.292701977777801,2.3892754955505624,1.8615463917525776,2.02,1.69,1.83,1.6644975162399693,5.89,1.43,1.7718016442189959,1.7305844155844157,1.89,1.8444323200831385 -2016,4,6,0,0,0,0,1,0,0,0.0,2.0,0.3940271229152518,3.8422704203745313,33,29,25,21,12,10,1,10.922183538437558,0.0,13.658457124394427,2.083913243325844,1.8817466174661746,1.96,1.63,1.6,1.6914923469387753,4.33,1.44,1.7126415094339622,1.7502656748140277,1.8900000000000001,1.8232921979980805 -2016,4,7,0,0,0,0,2,0,1,0.0,0.0,0.5910406843728777,4.610724504449437,22,21,25,20,8,10,1,5.562911384583408,3.0,12.593224224269077,1.85236732740075,1.8670337411939193,1.92,1.59,1.61,1.6870787545787544,2.59,1.47,1.675360383064516,1.7285769980506822,1.87,1.8028482922954727 -2016,4,8,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,20,24,29,25,9,14,3,5.281455692291704,7.0,11.624556247037598,4.083913243325844,1.88378074490513,1.97,1.68,1.71,1.7256784285194615,3.55,1.42,1.7536163198021841,1.783021582733813,1.93,1.8480172646344755 -2016,4,9,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,29,31,34,26,13,17,4,9.640727846145852,8.0,11.491458227838535,3.6208214114756565,1.8855251921434673,1.99,1.64,1.6,1.7343057409879838,4.01,1.46,1.7337452615617892,1.765773329028092,1.94,1.8545076466057875 -2016,4,10,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,28,29,27,19,15,11,0,13.640727846145852,9.0,12.41061259232707,7.463091831850187,1.8855251921434673,1.99,1.64,1.6,1.7343057409879838,4.01,1.46,1.7337452615617892,1.765773329028092,1.94,1.8545076466057875 -2016,4,11,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,20,20,20,21,7,8,1,13.640727846145852,7.0,14.88404531300779,8.157729579625467,1.8855251921434673,1.99,1.64,1.6,1.7343057409879838,4.01,1.46,1.7337452615617892,1.765773329028092,1.94,1.8545076466057875 -2016,4,12,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,15,16,25,23,4,9,4,16.0,7.0,12.622314808716562,6.547005075176031,1.8390965013456362,1.89,1.53,1.65,1.68,2.32,1.43,1.6415899198167239,1.7345602049530318,1.85,1.7834354418747127 -2016,4,13,0,0,0,0,2,0,2,0.0,0.0,0.0,0.7684540840749062,23,23,22,15,8,10,4,17.0,6.0,12.039232458531771,3.3154591592509375,1.9201814595660749,1.91,1.64,1.67,1.7294993581514764,4.51,1.46,1.707495784148398,1.7731185944363104,1.84,1.8374033327940462 -2016,4,14,0,0,0,0,2,0,2,0.0,0.0,0.1970135614576259,1.5369081681498125,22,20,17,9,8,6,2,20.43708861541659,8.0,12.125546526040527,2.1577295796254687,1.9199786324786325,1.92,1.64,1.55,1.726867768595041,3.67,1.51,1.7038937442502298,1.7853097345132745,1.82,1.8615040365040365 -2016,4,15,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,20,18,11,6,8,3,1,17.718544307708296,8.0,18.855782649043235,2.694637747775281,1.8758910433979687,1.86,1.54,1.42,1.6737160352085725,3.0,1.43,1.6448305582762,1.7456633906633907,1.7400000000000002,1.7761919596499038 -2016,4,16,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,19,15,7,3,6,2,1,14.0,4.0,22.059010573952893,7.3154591592509375,1.741936936936937,1.67,1.39,1.31,1.56,1.9,1.31,1.473525712171661,1.6243432647922786,1.58,1.6242073229639646 -2016,4,17,0,0,0,0,2,1,4,0.0,1.0,0.0,0.0,15,11,4,3,6,2,1,7.281455692291704,1.0,21.09646586125324,7.241642822951313,1.741936936936937,1.67,1.39,1.31,1.56,1.9,1.31,1.473525712171661,1.6243432647922786,1.58,1.6242073229639646 -2016,4,18,0,0,0,0,1,0,3,0.3592721538541478,3.0,0.0,0.0,11,7,2,7,2,1,1,3.562911384583409,0.0,19.442541549205295,5.241642822951312,1.741936936936937,1.67,1.39,1.31,1.56,1.9,1.31,1.473525712171661,1.6243432647922786,1.58,1.6242073229639646 -2016,4,19,0,0,0,0,2,0,4,0.3592721538541478,3.0,0.1970135614576259,1.5369081681498125,15,9,8,10,0,1,1,1.640727846145852,0.0,16.75477864446966,3.778550991101125,1.779774983454666,1.71,1.48,1.35,1.5394590643274855,2.47,1.25,1.5562500000000001,1.6224908869987849,1.45,1.6892345454545457 -2016,4,20,0,0,0,0,2,3,4,0.0,2.0,0.7880542458305037,3.073816336299625,16,12,6,9,2,0,0,1.7185443077082954,1.0,13.028789283204006,2.083913243325844,1.9192875104777871,1.94,1.65,1.52,1.7563500678426052,2.39,1.41,1.7342317106336687,1.8194383473208522,1.7899999999999998,1.8479314528359114 -2016,4,21,0,0,0,0,3,2,4,0.0,0.0,0.9850678072881296,4.610724504449437,12,10,6,9,1,0,1,5.718544307708296,2.0,9.62670516934412,1.6208214114756563,2.041156462585034,2.0,1.58,1.44,1.8438693254136613,2.21,1.53,1.7116272040302267,1.9252488455618266,1.8400000000000003,1.9106666666666665 -2016,4,22,0,0,0,0,4,2,4,0.0,0.0,1.1820813687457554,5.3791785885243435,5,4,9,11,1,1,0,10.437088615416592,7.0,7.140791829115161,0.6946377477752812,1.948450643776824,1.95,1.56,1.38,1.7483550613496932,2.13,1.49,1.6763257575757573,1.8120304017372422,1.78,1.8745302106430155 -2016,4,23,0,0,0,0,4,1,3,0.0,0.0,0.0,3.8422704203745313,7,7,14,7,1,3,0,12.796360769270738,8.0,9.07947085158461,0.4630918318501875,1.8850997365449755,1.89,1.49,1.32,1.67,2.27,1.45,1.628950948800573,1.7248810289389067,1.8400000000000003,1.8423028684241087 -2016,4,24,0,0,0,0,3,1,3,0.0,0.0,0.0,0.7684540840749062,18,15,10,6,3,2,0,16.43708861541659,7.0,14.064197341585052,1.926183663700375,1.8850997365449755,1.89,1.49,1.32,1.67,2.27,1.45,1.628950948800573,1.7248810289389067,1.8400000000000003,1.8423028684241087 -2016,4,25,0,0,0,1,3,3,8,0.0,0.0,0.0,0.0,16,11,4,7,1,0,0,18.43708861541659,12.0,16.086971869193288,2.694637747775281,1.8850997365449755,1.89,1.49,1.32,1.67,2.27,1.45,1.628950948800573,1.7248810289389067,1.8400000000000003,1.8423028684241087 -2016,4,26,0,0,1,1,5,5,10,0.0,0.0,0.0,0.0,21,10,9,9,0,0,0,18.077816461562442,10.0,18.684487797333382,7.389275495550562,2.008557692307692,1.96,1.62,1.46,1.79,2.74,1.55,1.7478282548476454,1.8681876332622602,1.9,1.8770044342256529 -2016,4,27,0,0,0,0,6,5,7,0.0,0.0,0.0,0.0,20,15,15,12,1,0,0,16.79636076927074,10.0,19.34549569149344,5.389275495550562,1.905907692307692,1.92,1.56,1.43,1.6862144275314361,2.68,1.47,1.670010085728694,1.7347871545929798,1.85,1.8324190719183544 -2016,4,28,0,0,0,0,7,7,7,0.0,0.0,0.0,0.0,20,18,15,16,2,0,0,14.077816461562444,10.0,21.398043977969987,5.231545915925094,1.903315392895587,1.94,1.6,1.45,1.7106119510439164,2.88,1.52,1.7114305177111715,1.7601706749418156,1.88,1.8359884691245638 -2016,4,29,0,0,0,0,7,3,8,0.0,0.0,0.0,0.0,18,17,15,17,3,1,1,15.077816461562444,8.0,21.400742732870434,6.083913243325844,1.872837552742616,1.94,1.45,1.3,1.7439063026626223,2.3,1.53,1.5851737891737894,1.7676143141153082,1.8800000000000001,1.8359867184563339 -2016,4,30,0,0,0,0,6,3,7,0.0,0.0,0.0,0.0,16,14,16,14,3,1,1,12.718544307708296,7.0,21.678890409753496,5.315459159250937,1.872837552742616,1.94,1.45,1.3,1.7439063026626223,2.3,1.53,1.5851737891737894,1.7676143141153082,1.8800000000000001,1.8359867184563339 -2016,5,1,0,0,0,0,7,5,6,0.0,0.0,0.0,0.0,20,17,11,14,2,0,2,7.0,4.0,18.85980240576728,8.010096907026218,1.887765687341313,1.94,1.46,1.41,1.7492181588902902,2.32,1.34,1.6283946055791614,1.77243955250812,1.87,1.816735880398671 -2016,5,2,0,0,0,0,8,3,2,0.0,0.0,0.0,0.7684540840749062,18,13,13,14,0,1,4,2.718544307708296,3.0,15.565768359334088,5.0100969070262185,1.887765687341313,1.94,1.46,1.41,1.7492181588902902,2.32,1.34,1.6283946055791614,1.77243955250812,1.87,1.816735880398671 -2016,5,3,0,0,0,0,7,1,1,0.0,0.0,0.3940271229152518,3.073816336299625,18,14,12,10,1,3,3,5.077816461562444,1.0,11.329619106642152,2.85236732740075,1.9659975165562915,1.98,1.47,1.75,1.7765134099616857,2.54,1.41,1.6006191222570534,1.8280102915951975,1.89,1.8295055983713828 -2016,5,4,0,0,0,0,4,0,2,0.0,0.0,0.9850678072881296,6.916086756674156,18,15,14,10,3,5,1,9.718544307708296,3.0,7.056463987989519,1.1577295796254687,2.025604959384352,2.05,1.59,1.78,1.8552266666666668,2.72,1.54,1.7186608695652172,1.912564383561644,1.98,1.8799912600145665 -2016,5,5,0,0,0,0,2,0,3,0.0,0.0,0.7880542458305037,7.14763267259925,19,14,13,7,7,10,1,8.718544307708296,7.0,4.274356477227699,0.4630918318501875,2.0964637374272104,2.08,1.56,1.88,1.8987578947368422,2.8,1.69,1.7310566375643608,1.9636475942782836,2.0,1.9513572474377745 -2016,5,6,0,0,0,1,1,0,3,0.0,0.0,0.0,2.0,13,14,7,1,7,7,0,4.359272153854148,9.0,5.304163504072054,1.0,2.0742857142857143,2.0,1.56,1.67,1.8773793103448275,2.56,1.57,1.7020611127125973,1.950810481413772,1.92,1.9062870699881376 -2016,5,7,0,0,0,1,1,0,4,0.0,0.0,0.0,0.0,15,11,5,4,3,2,0,1.640727846145852,8.0,10.707818500719615,4.231545915925094,1.8500082338410868,1.88,1.42,1.43,1.6756265727226973,2.25,1.51,1.5306787249283667,1.6948098784790278,1.79,1.7461100765570041 -2016,5,8,0,0,0,0,3,2,4,0.0,0.0,0.0,0.0,12,10,10,4,1,1,0,9.359272153854148,7.0,12.22151134323266,5.6208214114756565,1.8500082338410868,1.88,1.42,1.43,1.6756265727226973,2.25,1.51,1.5306787249283667,1.6948098784790278,1.79,1.7461100765570041 -2016,5,9,0,0,0,1,4,2,8,0.0,0.0,0.1970135614576259,0.7684540840749062,14,11,12,5,2,0,0,12.359272153854148,5.0,10.999813145992567,2.1577295796254687,1.8500082338410868,1.88,1.42,1.43,1.6756265727226973,2.25,1.51,1.5306787249283667,1.6948098784790278,1.79,1.7461100765570041 -2016,5,10,0,0,0,1,6,6,12,0.0,0.0,0.7880542458305037,3.073816336299625,14,14,8,5,2,0,0,9.0,3.0,14.006248373715573,0.4630918318501875,2.0675044143613888,1.96,1.55,1.62,1.8755724033358605,2.16,1.7,1.6983049242424244,1.9359823788546258,1.9,1.8890049581124977 -2016,5,11,0,0,1,1,7,8,11,0.0,1.0,0.9850678072881296,4.842270420374531,8,8,3,6,2,0,0,4.922183538437556,1.0,14.950200539089671,0.6946377477752812,2.115686845168801,2.02,1.59,1.53,1.8912342941611235,2.18,1.72,1.692467032967033,1.942724795640327,1.96,1.937875968992248 -2016,5,12,0,0,1,0,7,7,10,0.0,2.0,1.3790949302033815,8.452994924823969,6,4,2,8,1,0,0,4.562911384583409,0.0,10.465561369091256,0.926183663700375,2.0717127071823205,2.01,1.6,1.52,1.8679447852760735,2.04,1.64,1.725196850393701,1.9300063211125156,1.94,1.9204681053633765 -2016,5,13,0,0,0,0,7,3,9,0.0,2.0,1.7731220531186331,9.916086756674156,7,5,7,11,0,1,0,2.640727846145852,1.0,8.158845678159256,0.4630918318501875,2.073494570582428,2.01,1.66,1.5,1.8861248185776487,2.03,1.54,1.723613777526821,1.931495535714286,1.9700000000000002,1.9282960300604475 -2016,5,14,0,0,0,0,5,1,6,0.0,0.0,1.9701356145762592,10.452994924823969,2,6,17,18,1,5,1,10.077816461562442,3.0,9.622572989804478,0.4630918318501875,1.8644543080939946,1.96,1.54,1.52,1.7553065260382335,2.22,1.48,1.659853515625,1.7788522789676002,1.89,1.8669221246905245 -2016,5,15,0,0,0,0,4,1,3,0.0,0.0,1.3790949302033815,8.14763267259925,12,17,20,15,6,9,1,12.718544307708296,4.0,11.019357508332515,0.6946377477752812,1.8644543080939946,1.96,1.54,1.52,1.7553065260382335,2.22,1.48,1.659853515625,1.7788522789676002,1.89,1.8669221246905245 -2016,5,16,0,0,0,0,4,1,5,0.0,0.0,0.9850678072881296,4.842270420374531,16,15,14,15,6,7,1,11.077816461562442,3.0,13.792276984444895,0.6946377477752812,1.8644543080939946,1.96,1.54,1.52,1.7553065260382335,2.22,1.48,1.659853515625,1.7788522789676002,1.89,1.8669221246905245 -2016,5,17,0,0,0,0,5,2,7,0.0,1.0,0.5910406843728777,4.610724504449437,11,12,13,12,4,4,1,6.640727846145852,1.0,13.111597661821376,2.083913243325844,1.9294565217391304,1.9,1.57,1.59,1.7543698630136988,2.08,1.57,1.6292496765847349,1.8133333333333335,1.85,1.831938886867952 -2016,5,18,0,0,0,0,6,3,4,0.0,3.0,0.7880542458305037,3.073816336299625,10,10,11,10,3,4,3,7.281455692291704,0.0,9.593133597713647,3.547005075176031,1.925892094017094,1.93,1.55,1.54,1.782412714955706,2.06,1.61,1.6442611464968155,1.8303618030842232,1.88,1.8689352170916609 -2016,5,19,0,0,0,0,5,2,3,0.0,1.0,1.3790949302033815,4.610724504449437,8,7,10,8,2,3,2,14.718544307708296,2.0,7.825891608750246,2.083913243325844,1.9037084257206207,1.81,1.51,1.45,1.7158894070619586,1.78,1.48,1.60501726844584,1.7822872928176796,1.78,1.8005260882098588 -2016,5,20,0,0,0,0,5,2,5,0.0,0.0,0.9850678072881296,6.916086756674156,7,7,8,7,3,3,0,13.79636076927074,8.0,7.482300761937872,0.4630918318501875,1.7969496855345912,1.76,1.45,1.36,1.5973910256410258,1.53,1.44,1.51256291730868,1.6505503258508327,1.69,1.6847631619816739 -2016,5,21,0,0,0,0,6,4,8,0.0,0.0,0.0,5.842270420374531,7,10,4,4,2,1,0,15.077816461562444,10.0,6.585098672951907,0.23154591592509374,1.72,1.76,1.41,1.33,1.5631089234677673,1.59,1.53,1.5142394603709948,1.571037037037037,1.69,1.7086026003391748 -2016,5,22,0,0,0,1,5,2,11,0.0,0.0,0.0,4.536908168149813,5,6,3,1,2,1,0,12.437088615416592,8.0,9.467966785468658,0.23154591592509374,1.72,1.76,1.41,1.33,1.5631089234677673,1.59,1.53,1.5142394603709948,1.571037037037037,1.69,1.7086026003391748 -2016,5,23,0,0,1,2,4,2,10,0.0,0.0,0.1970135614576259,3.7684540840749063,3,3,3,0,2,1,0,12.077816461562442,8.0,11.066234650844157,0.4630918318501875,1.72,1.76,1.41,1.33,1.5631089234677673,1.59,1.53,1.5142394603709948,1.571037037037037,1.69,1.7086026003391748 -2016,5,24,0,1,2,4,5,4,12,0.0,0.0,0.1970135614576259,3.5369081681498122,7,2,0,0,0,0,0,9.718544307708296,7.0,9.1103629003089,0.4630918318501875,1.9647028948704925,1.89,1.51,1.51,1.7771916214119474,1.94,1.62,1.660215186742518,1.8210571604179473,1.81,1.8740370244565216 -2016,5,25,3,3,5,4,8,6,15,0.0,0.0,0.0,3.3053622522247186,0,0,0,1,0,0,0,9.718544307708296,6.0,8.821172887125874,1.2315459159250937,1.9322404991491775,1.86,1.56,1.6,1.7271858974358973,2.24,1.57,1.6725730442978322,1.7886799410029501,1.78,1.808803813926611 -2016,5,26,5,5,7,5,9,9,14,0.0,0.0,0.1970135614576259,1.0,0,0,0,1,0,0,0,11.718544307708296,4.0,9.554088533034763,1.6946377477752812,1.7783201803833144,1.76,1.54,1.58,1.6120201421800948,2.0,1.4,1.603536155202822,1.6549084017687936,1.7,1.7084945736434107 -2016,5,27,4,8,8,3,10,10,10,0.0,0.0,0.9850678072881296,3.073816336299625,1,0,0,2,0,0,0,13.359272153854148,2.0,10.501234424109066,1.1577295796254687,1.719907317073171,1.81,1.55,1.54,1.5839652173913044,1.86,1.32,1.6214129443938012,1.609622641509434,1.74,1.7148916867246804 -2016,5,28,9,11,10,3,10,10,11,0.0,1.0,1.3790949302033815,6.3791785885243435,0,0,0,2,0,0,0,11.922183538437558,1.0,9.073051211899058,0.6946377477752812,1.7273097345132746,1.85,1.51,1.5,1.608136160714286,1.88,1.56,1.6440223976500825,1.6239084132055377,1.7600000000000002,1.800301749442292 -2016,5,29,3,9,9,4,9,10,12,0.0,1.0,1.5761084916610073,7.3791785885243435,1,0,0,0,0,0,0,10.0,1.0,5.399806235970766,0.23154591592509374,1.7273097345132746,1.85,1.51,1.5,1.608136160714286,1.88,1.56,1.6440223976500825,1.6239084132055377,1.7600000000000002,1.800301749442292 -2016,5,30,2,7,7,5,11,11,11,0.0,3.0,1.9701356145762592,7.610724504449437,1,0,0,0,0,0,0,7.922183538437556,0.0,5.205844690781923,0.23154591592509374,1.7273097345132746,1.85,1.51,1.5,1.608136160714286,1.88,1.56,1.6440223976500825,1.6239084132055377,1.7600000000000002,1.800301749442292 -2016,5,31,6,7,6,3,12,11,11,0.0,5.0,2.167149176033885,7.3791785885243435,0,0,0,1,0,0,0,3.281455692291704,0.0,6.8072935280088025,0.23154591592509374,1.7273097345132746,1.85,1.51,1.5,1.608136160714286,1.88,1.56,1.6440223976500825,1.6239084132055377,1.7600000000000002,1.800301749442292 -2016,6,1,2,5,6,3,12,12,10,0.0,6.0,3.077257215304403,10.758357177048687,0,0,0,2,0,0,0,2.2814556922917046,0.0,4.3983342123816795,0.4630918318501875,2.206522506619594,2.03,1.68,1.55,1.9542850658193371,2.07,1.88,1.8057604840392238,2.076154328732748,1.9400000000000002,2.0171112785732226 -2016,6,2,0,3,5,3,12,11,9,0.0,8.0,3.4796982344894305,13.758357177048687,3,0,0,1,0,0,0,4.640727846145852,0.0,2.597385083098411,0.0,2.3410966340933768,2.21,1.8,1.67,2.0972193732193736,2.01,2.03,1.9990953189425178,2.209252061248528,2.09,2.1873846549286724 -2016,6,3,0,3,4,4,13,11,9,1.0778164615624433,10.0,4.192792712302322,16.758357177048687,2,0,0,1,0,0,0,0.0,0.0,1.1604632575786205,0.0,2.370179439252336,2.19,1.8,1.78,2.118717653824037,1.93,2.07,1.9997197671912053,2.2401775147928995,2.07,2.2034776139591505 -2016,6,4,4,6,4,4,14,11,10,5.437088615416592,9.0,5.224954545012854,18.526811261123594,0,0,0,1,0,0,0,0.0,0.0,1.350601617269008,0.0,2.3048568832348932,2.19,1.68,1.65,2.066965998256321,2.04,1.86,1.875796992481203,2.1712388326384753,2.08,2.193284106040431 -2016,6,5,0,4,4,4,13,10,10,8.359272153854148,7.0,6.252480724818099,18.989903092973783,2,0,0,0,0,0,0,0.0,0.0,0.45308756509186554,0.0,2.3048568832348932,2.19,1.68,1.65,2.066965998256321,2.04,1.86,1.875796992481203,2.1712388326384753,2.08,2.193284106040431 -2016,6,6,5,6,5,4,11,10,11,7.718544307708296,6.0,6.805911456168328,18.221449008898873,0,0,0,1,0,0,0,0.0,0.0,0.41359496853240857,0.0,2.3048568832348932,2.19,1.68,1.65,2.066965998256321,2.04,1.86,1.875796992481203,2.1712388326384753,2.08,2.193284106040431 -2016,6,7,4,5,0,2,13,9,12,5.077816461562444,6.0,7.017130983242117,16.379178588524343,0,0,4,3,0,0,0,0.0,0.0,0.3741023719729516,0.0,2.317141914191419,2.23,1.78,1.74,2.099256830601093,2.22,1.89,1.998635914332784,2.1821651221566976,2.14,2.216906956004756 -2016,6,8,0,0,0,4,10,6,13,0.6407278461458522,6.0,7.537802610368704,17.14763267259925,2,4,4,1,0,0,0,4.640727846145852,0.0,0.0,0.0,2.2925586995785667,2.23,1.82,1.77,2.086846625766871,2.12,1.86,1.9918053556003454,2.1557992565055764,2.14,2.2124310392867095 -2016,6,9,0,0,1,9,7,6,14,0.0,4.0,7.802402123320136,17.379178588524343,7,6,3,0,0,0,0,8.0,0.0,0.07032411511232564,0.0,2.3237727272727273,2.26,1.79,1.7,2.13,1.89,1.83,2.006658264314008,2.2024444444444446,2.16,2.2653035526907512 -2016,6,10,0,0,7,13,10,9,15,0.0,3.0,7.33174096919534,15.610724504449436,5,4,0,0,0,0,0,11.077816461562442,0.0,0.3679280245651275,0.0,2.292465023317788,2.24,1.73,1.59,2.0904255319148937,1.67,1.76,1.8842772129928094,2.1581038211968275,2.16,2.2483709981167608 -2016,6,11,0,3,13,13,13,13,16,0.0,1.0,5.3017539038923935,13.842270420374533,7,2,0,0,0,0,0,11.0,1.0,1.4539301288827033,0.0,2.297322911577919,2.36,1.74,1.6,2.1286244789693063,1.61,1.73,1.941045387514337,2.182498647917793,2.19,2.333135646687697 -2016,6,12,1,6,7,12,16,14,17,0.0,1.0,3.750957753314381,13.073816336299625,1,1,0,0,0,0,0,8.281455692291704,1.0,1.585210285999324,0.0,2.297322911577919,2.36,1.74,1.6,2.1286244789693063,1.61,1.73,1.941045387514337,2.182498647917793,2.19,2.333135646687697 -2016,6,13,0,1,4,10,13,15,16,0.0,1.0,2.344237986549211,12.073816336299625,5,3,2,0,0,0,0,11.359272153854146,1.0,2.449406089024834,0.0,2.297322911577919,2.36,1.74,1.6,2.1286244789693063,1.61,1.73,1.941045387514337,2.182498647917793,2.19,2.333135646687697 -2016,6,14,0,1,6,10,13,14,18,0.0,1.0,2.372576633761287,10.84227042037453,2,2,0,1,0,0,0,15.359272153854148,2.0,2.53540819334241,0.0,2.4009178743961352,2.46,1.87,1.78,2.2036967808930426,2.15,1.97,2.0981668800682884,2.2817899159663866,2.29,2.4345038477116243 -2016,6,15,2,1,10,12,13,15,19,0.0,0.0,3.9452312616944023,11.073816336299624,0,0,0,1,0,0,0,14.718544307708296,4.0,2.4138080725249975,0.0,2.396703296703297,2.46,1.99,1.83,2.193566569484937,2.43,1.95,2.188854877374147,2.2810193204530314,2.32,2.4376008940767417 -2016,6,16,4,2,7,12,15,16,19,0.0,0.0,3.553944191856755,11.84227042037453,0,0,0,0,0,0,0,13.077816461562444,3.0,2.697453198098448,0.0,2.4658247775496234,2.51,2.02,1.85,2.2687110894941633,2.15,1.98,2.259943907156673,2.3359068219633943,2.4,2.5164859766067162 -2016,6,17,1,4,7,12,13,14,20,0.0,2.0,4.319333633667354,13.842270420374533,1,0,0,0,0,0,0,10.718544307708296,2.0,1.7482761385070684,0.0,2.5021217887725977,2.49,1.98,1.79,2.3026005888125614,2.04,2.04,2.253232923207467,2.3972286689419793,2.39,2.4959781357882624 -2016,6,18,1,3,7,11,11,11,18,0.0,6.0,6.205298704586852,17.379178588524343,1,0,0,0,0,0,0,12.0,1.0,0.932869610587881,0.0,2.835080613448683,2.53,1.86,1.69,2.4521023046655426,2.35,2.27,2.25003825717322,2.730937401698647,2.45,2.5177202208782536 -2016,6,19,1,6,10,12,9,12,16,0.0,10.0,8.520281993670853,21.68454084074906,0,0,0,0,0,0,0,9.0,0.0,0.9593126579722756,0.0,2.835080613448683,2.53,1.86,1.69,2.4521023046655426,2.35,2.27,2.25003825717322,2.730937401698647,2.45,2.5177202208782536 -2016,6,20,4,7,13,11,10,12,17,0.0,12.0,8.407828811767768,22.45299492482397,0,0,0,0,0,0,0,5.0,0.0,0.2542881273948894,0.0,2.835080613448683,2.53,1.86,1.69,2.4521023046655426,2.35,2.27,2.25003825717322,2.730937401698647,2.45,2.5177202208782536 -2016,6,21,7,9,8,10,12,13,17,0.0,12.0,11.764604776444601,22.221449008898873,0,0,0,0,0,0,0,5.0,0.0,0.32461224250721504,0.0,3.0229600244125723,2.67,2.24,2.05,2.5837861372344126,3.18,2.48,2.3666220556745183,2.8572723838307517,2.59,2.633490510948905 -2016,6,22,1,4,6,12,13,15,18,0.0,10.0,9.100998538638358,21.916086756674154,1,0,0,0,0,0,0,4.0,0.0,0.21097234533697692,0.0,2.9833488569009314,2.74,2.17,2.09,2.5930112570356467,2.68,2.45,2.3296677900818485,2.8549440298507465,2.65,2.686599848139712 -2016,6,23,1,4,7,9,14,17,19,0.0,8.0,9.864694620224123,21.14763267259925,1,0,0,0,0,0,0,6.718544307708296,0.0,0.18396401228256376,0.0,2.9228051181102366,2.72,2.12,2.0,2.6100000000000003,2.79,2.45,2.37748968008256,2.7663515255694024,2.6399999999999997,2.7082374230908433 -2016,6,24,2,5,6,9,15,15,18,0.0,7.0,8.636331693462795,20.14763267259925,0,0,0,0,0,0,0,9.0,0.0,0.6925402670723425,0.0,2.7089552919708026,2.61,2.21,1.99,2.514913151364764,2.65,2.33,2.390609929078014,2.617786058746164,2.53,2.6103697525715877 -2016,6,25,2,5,9,13,15,16,18,0.0,9.0,5.875517374386061,19.916086756674154,0,0,0,0,0,0,0,4.640727846145852,0.0,1.0691293696440582,0.0,2.742442835365854,2.59,2.06,1.85,2.487651122625216,2.63,2.33,2.319402054292003,2.611396598030439,2.5,2.5961953192010783 -2016,6,26,3,6,12,12,14,17,19,0.3592721538541478,11.0,6.616950499411029,19.45299492482397,0,0,0,0,0,0,0,1.2814556922917044,0.0,0.364104839066672,0.0,2.742442835365854,2.59,2.06,1.85,2.487651122625216,2.63,2.33,2.319402054292003,2.611396598030439,2.5,2.5961953192010783 -2016,6,27,5,6,12,9,13,16,18,2.359272153854148,13.0,9.39401173731984,19.989903092973783,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.742442835365854,2.59,2.06,1.85,2.487651122625216,2.63,2.33,2.319402054292003,2.611396598030439,2.5,2.5961953192010783 -2016,6,28,6,7,4,6,14,15,18,2.0,13.0,11.061641510768297,20.758357177048687,0,0,0,1,0,0,0,0.6407278461458522,0.0,0.0,0.0,3.0283205574912895,2.7,2.15,1.99,2.626644435181326,2.88,2.48,2.328888628370457,2.864745130542893,2.62,2.6625069735006974 -2016,6,29,8,6,1,6,13,11,16,1.640727846145852,12.0,10.858453601902848,19.221449008898876,0,0,1,0,0,0,0,1.640727846145852,0.0,0.0,0.0,3.0793637454981995,2.8,2.15,2.08,2.6765786384976527,2.8,2.46,2.415770513675784,2.9541701323251415,2.7200000000000006,2.768760887428102 -2016,6,30,6,4,1,6,12,10,17,1.640727846145852,10.0,7.874696876778117,14.073816336299625,0,0,0,0,0,0,0,2.640727846145852,0.0,0.03949259655945696,0.0,3.1523737591713425,2.84,2.02,1.96,2.7727527075812275,2.93,2.56,2.376178254783014,2.99671826625387,2.76,2.84229792147806 -2016,7,1,5,5,3,4,14,11,17,1.0,9.0,6.067530347412143,13.14763267259925,0,0,0,2,0,0,0,2.2814556922917046,0.0,0.3741023719729516,0.0,2.9881306532663316,2.78,1.91,1.78,2.6394600340136054,2.65,2.47,2.225037673033117,2.77944,2.7,2.7889495499763144 -2016,7,2,4,3,0,2,14,13,19,1.359272153854148,8.0,5.638848520445567,14.916086756674154,0,0,1,1,0,0,0,0.6407278461458522,0.0,0.0,0.0,2.7812871822606815,2.73,1.73,1.5,2.5075918153200423,2.32,2.21,2.0779272778721,2.632671601615074,2.61,2.752734830921736 -2016,7,3,2,2,0,2,13,15,19,1.0,7.0,8.082365772826556,17.916086756674154,0,0,1,1,0,0,0,2.640727846145852,0.0,0.0,0.0,2.7812871822606815,2.73,1.73,1.5,2.5075918153200423,2.32,2.21,2.0779272778721,2.632671601615074,2.61,2.752734830921736 -2016,7,4,5,4,2,6,14,16,20,0.0,6.0,9.079737332796368,19.68454084074906,0,0,0,0,0,0,0,5.640727846145852,0.0,0.18396401228256376,0.0,2.7812871822606815,2.73,1.73,1.5,2.5075918153200423,2.32,2.21,2.0779272778721,2.632671601615074,2.61,2.752734830921736 -2016,7,5,8,10,10,12,17,15,20,0.0,6.0,8.73576562501687,19.916086756674154,0,0,0,0,0,0,0,6.281455692291704,0.0,0.32461224250721504,0.0,2.7812871822606815,2.73,1.73,1.5,2.5075918153200423,2.32,2.21,2.0779272778721,2.632671601615074,2.61,2.752734830921736 -2016,7,6,11,12,11,11,17,16,21,0.0,5.0,7.5723236351897185,19.610724504449436,0,0,0,0,0,0,0,3.0,0.0,0.6492244850144301,0.0,2.6708219178082193,2.72,1.75,2.09,2.4477550047664445,3.29,2.16,2.2775053918044574,2.522328977709454,2.63,2.6968844334309527 -2016,7,7,9,13,10,10,17,16,21,0.0,5.0,6.4084260832808795,19.379178588524343,1,0,0,0,0,0,0,4.281455692291704,0.0,0.5480688513492357,0.0,2.483225088967972,2.67,1.87,2.26,2.3238823012736054,3.55,2.12,2.3742301216089805,2.398402270884023,2.53,2.63121006981172 -2016,7,8,4,12,11,9,18,17,20,0.0,6.0,8.118982747619011,19.14763267259925,0,0,0,0,0,0,0,3.718544307708296,0.0,0.2542881273948894,0.0,2.6,2.77,2.0,2.01,2.471217303822938,3.07,2.23,2.364711599408409,2.533377239199157,2.66,2.7270530209617756 -2016,7,9,0,6,7,9,17,15,19,0.0,7.0,9.83253278751359,20.916086756674158,3,0,0,0,0,0,0,4.718544307708296,0.0,0.2542881273948894,0.0,2.634738095238095,2.65,1.66,1.55,2.4852830188679245,2.03,2.34,2.0712990804262152,2.555164954029205,2.55,2.6623910423779877 -2016,7,10,1,6,6,11,15,13,19,0.0,6.0,8.97904340195489,21.379178588524343,2,0,0,0,0,0,0,6.437088615416592,0.0,1.2699661166001397,0.0,2.634738095238095,2.65,1.66,1.55,2.4852830188679245,2.03,2.34,2.0712990804262152,2.555164954029205,2.55,2.6623910423779877 -2016,7,11,2,4,10,12,15,13,20,0.0,5.0,5.208231549971874,20.379178588524343,0,0,0,0,0,0,0,4.359272153854148,0.0,2.534765979695333,0.0,2.634738095238095,2.65,1.66,1.55,2.4852830188679245,2.03,2.34,2.0712990804262152,2.555164954029205,2.55,2.6623910423779877 -2016,7,12,5,7,12,10,15,14,20,0.0,5.0,4.693792910965449,18.610724504449436,0,0,0,0,0,0,0,3.718544307708296,0.0,1.1216715153785772,0.0,2.8263341067285386,2.75,1.88,1.77,2.6509474346868114,2.88,2.55,2.234024743862362,2.7498027989821887,2.64,2.7182230623818526 -2016,7,13,9,10,13,10,16,16,21,0.0,8.0,5.293247491608103,19.610724504449436,0,0,0,0,0,0,0,2.2814556922917046,0.0,0.5875614479086927,0.0,2.719016786570743,2.7,1.94,1.82,2.5720061307901902,3.06,2.48,2.2554150702426563,2.6404793233082704,2.61,2.6557930274217996 -2016,7,14,10,14,11,7,17,15,20,0.6407278461458522,10.0,6.889396733503133,21.916086756674154,0,0,0,0,0,0,0,2.2814556922917046,0.0,0.364104839066672,0.0,2.85,2.74,2.02,2.01,2.618454699407282,3.08,2.48,2.3318503466411666,2.6943936731107203,2.66,2.7037202419251063 -2016,7,15,14,14,7,5,17,14,19,0.0,10.0,7.985007479558752,22.68454084074906,0,0,0,0,0,0,0,4.0,0.0,0.1098167116717826,0.0,2.837046818727491,2.69,1.88,1.85,2.6126710334788936,3.1,2.45,2.214078654464507,2.704131023280996,2.6,2.667438867438867 -2016,7,16,11,11,4,6,15,14,18,0.0,8.0,9.038005187374958,21.916086756674154,0,0,0,0,0,0,0,3.359272153854148,0.0,0.39493635761954066,0.0,2.627422373458103,2.61,1.8,1.6,2.452941176470588,2.71,2.31,2.064398727465536,2.499333838001514,2.49,2.584584928229665 -2016,7,17,11,11,7,10,15,15,19,0.6407278461458522,7.0,9.391727246323923,21.14763267259925,0,0,0,0,0,0,0,2.437088615416591,0.0,0.14064823022465128,0.0,2.627422373458103,2.61,1.8,1.6,2.452941176470588,2.71,2.31,2.064398727465536,2.499333838001514,2.49,2.584584928229665 -2016,7,18,11,12,10,11,16,16,20,0.0,7.0,10.125545986195073,20.14763267259925,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,2.627422373458103,2.61,1.8,1.6,2.452941176470588,2.71,2.31,2.064398727465536,2.499333838001514,2.49,2.584584928229665 -2016,7,19,8,8,10,13,16,17,19,0.0,7.0,11.445380866365577,20.14763267259925,0,0,0,0,0,0,0,1.359272153854148,0.0,0.0,0.0,2.867002417405318,2.79,1.74,1.63,2.6675613346418054,2.73,2.45,2.0743009027081243,2.76411214953271,2.7,2.7170077172018923 -2016,7,20,2,5,10,16,15,17,21,0.6407278461458522,10.0,11.733616702710348,19.14763267259925,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.903474240422722,2.74,1.73,1.63,2.659569045412419,2.73,2.46,2.186321570460388,2.7610317084713674,2.67,2.7226668401196825 -2016,7,21,6,8,13,17,15,18,21,1.9221835384375567,11.0,12.526650550480408,21.68454084074906,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.8996304591265396,2.68,1.78,1.86,2.5725553505535057,2.76,2.4,2.2243006369426754,2.741825431989366,2.59,2.642578219417215 -2016,7,22,13,13,14,17,16,17,21,0.6407278461458522,13.0,12.878900585840285,23.45299492482397,0,0,0,0,0,0,0,2.640727846145852,0.0,0.0,0.0,2.958149556400507,2.69,1.76,1.93,2.5837513873473923,2.84,2.38,2.276792858679286,2.7799776286353466,2.62,2.6370823740086977 -2016,7,23,14,16,15,15,17,17,21,0.0,13.0,11.712062630710083,23.68454084074906,0,0,0,0,0,0,0,1.640727846145852,0.0,0.0,0.0,3.1805475285171103,2.77,1.66,2.13,2.6545773132493085,3.06,2.6,2.2470108492330714,3.098959802538787,2.67,2.7253381761068027 -2016,7,24,10,12,15,15,17,17,21,1.359272153854148,12.0,10.358026719110853,22.147632672599247,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1805475285171103,2.77,1.66,2.13,2.6545773132493085,3.06,2.6,2.2470108492330714,3.098959802538787,2.67,2.7253381761068027 -2016,7,25,10,14,14,10,18,18,20,3.0,13.0,10.609568652686109,20.916086756674158,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1805475285171103,2.77,1.66,2.13,2.6545773132493085,3.06,2.6,2.2470108492330714,3.098959802538787,2.67,2.7253381761068027 -2016,7,26,12,13,11,11,18,17,18,3.359272153854148,14.0,12.026986806716973,21.45299492482397,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.020087565674255,2.72,1.87,2.07,2.67449433304272,3.21,2.43,2.362062596203181,2.852661512976256,2.66,2.729723887881746 -2016,7,27,11,12,12,10,19,16,18,5.0,15.0,11.982903499386197,22.989903092973783,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.9960849056603776,2.67,1.91,2.04,2.5872319909245602,3.11,2.45,2.386682915506035,2.8378033137359706,2.58,2.6445555555555558 -2016,7,28,11,12,10,9,18,14,18,7.359272153854148,15.0,12.006404254090139,22.221449008898873,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.197555791710946,2.71,1.71,1.74,2.6325451880801176,2.94,2.52,2.1898683955873812,3.138088587390263,2.64,2.68659631311782 -2016,7,29,10,11,9,6,17,14,18,8.718544307708296,15.0,12.171002660358393,22.758357177048687,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0685528756957328,2.68,1.68,1.59,2.611134065934066,2.19,2.46,2.150378555798687,2.8990567401517886,2.57,2.6838357453818094 -2016,7,30,10,9,8,7,17,15,19,3.359272153854148,14.0,12.496070464947294,18.916086756674154,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0685528756957328,2.68,1.68,1.59,2.611134065934066,2.19,2.46,2.150378555798687,2.8990567401517886,2.57,2.6838357453818094 -2016,7,31,6,9,9,9,17,15,19,1.0,12.0,11.552891358261956,18.916086756674154,0,0,0,0,0,0,0,1.640727846145852,0.0,0.0,0.0,3.0685528756957328,2.68,1.68,1.59,2.611134065934066,2.19,2.46,2.150378555798687,2.8990567401517886,2.57,2.6838357453818094 -2016,8,1,6,8,9,10,16,15,20,1.0,11.0,11.094714467642204,17.379178588524343,0,0,0,0,0,0,0,0.6407278461458522,0.0,0.0,0.0,3.0259270833333334,2.85,2.02,1.61,2.7154676258992807,2.48,2.54,2.305984165984166,2.8359083601286175,2.78,2.8391168866512455 -2016,8,2,6,8,11,11,16,15,20,0.0,11.0,10.83705682737146,15.610724504449436,0,0,0,0,0,0,0,3.640727846145852,0.0,0.0,0.0,2.9843516270033996,2.8,2.08,1.6,2.707333333333333,2.71,2.56,2.365872899926954,2.8482604562737643,2.76,2.8019747357566382 -2016,8,3,7,7,12,13,14,16,21,0.6407278461458522,10.0,10.116990380493872,16.379178588524343,0,0,0,0,0,0,0,0.6407278461458522,0.0,0.32461224250721504,0.0,2.915289115646259,2.75,1.95,1.58,2.616839402427638,2.83,2.49,2.348019607843137,2.7594648252050065,2.7,2.720720893908447 -2016,8,4,7,8,13,13,14,16,21,2.718544307708296,9.0,5.632712502064909,16.14763267259925,0,0,0,0,0,0,0,0.0,0.0,0.07032411511232564,0.0,2.9111921097770157,2.83,1.93,1.5,2.6165691182133233,2.91,2.51,2.2212896881146387,2.70118554429264,2.75,2.783104410943607 -2016,8,5,9,8,12,8,15,17,21,2.0,7.0,6.4960704649472945,16.916086756674154,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.9735073710073703,2.83,2.06,1.46,2.7181727828746176,2.84,2.63,2.2930002595380223,2.8221601489757915,2.77,2.811709000552181 -2016,8,6,11,11,9,6,17,16,20,1.0,7.0,7.6744895896202845,18.45299492482397,0,0,0,0,0,0,0,3.281455692291704,0.0,0.0,0.0,2.8747435478601764,2.75,1.56,1.37,2.613377102995486,2.78,2.55,1.8881648012350447,2.699524184034605,2.72,2.7525049622866216 -2016,8,7,10,9,8,6,15,15,21,0.6407278461458522,8.0,8.646009232976784,19.45299492482397,0,0,0,0,0,0,0,4.0,0.0,0.0,0.0,2.8747435478601764,2.75,1.56,1.37,2.613377102995486,2.78,2.55,1.8881648012350447,2.699524184034605,2.72,2.7525049622866216 -2016,8,8,8,8,8,7,14,15,20,0.0,8.0,8.926604839066673,20.45299492482397,0,0,0,0,0,0,0,3.718544307708296,0.0,0.0,0.0,2.8747435478601764,2.75,1.56,1.37,2.613377102995486,2.78,2.55,1.8881648012350447,2.699524184034605,2.72,2.7525049622866216 -2016,8,9,8,9,11,11,14,16,20,0.0,7.0,9.42128898089055,17.14763267259925,0,0,0,0,0,0,0,4.359272153854148,0.0,0.3679280245651275,0.0,2.9644398340248967,2.73,1.88,1.66,2.6635260115606934,2.96,2.52,2.2145272867025363,2.804846445098864,2.7,2.71977488301505 -2016,8,10,7,10,12,13,16,16,21,0.6407278461458522,7.0,7.922469690377039,16.68454084074906,0,0,0,0,0,0,0,0.6407278461458522,0.0,0.39493635761954066,0.0,2.8891698473282443,2.72,1.77,1.66,2.597329498767461,2.98,2.51,2.0937028714107364,2.6920903010033443,2.6700000000000004,2.6647491589878602 -2016,8,11,14,15,14,13,17,16,21,3.359272153854148,8.0,7.535115529626179,16.379178588524343,0,0,0,0,0,0,0,0.0,0.0,0.18014082678410825,0.0,2.856108786610879,2.68,1.71,1.81,2.554427645788337,3.72,2.48,2.0817545541706615,2.6520421299005266,2.65,2.6247267298455146 -2016,8,12,15,16,13,10,17,16,21,6.718544307708296,10.0,6.5259927487958755,18.68454084074906,0,0,0,0,0,0,0,0.0,0.0,0.03949259655945696,0.0,2.775478527607362,2.64,1.77,1.77,2.49519324744558,3.61,2.44,2.124431498593813,2.6022003474232775,2.58,2.5710271862863268 -2016,8,13,12,16,12,8,18,15,17,8.718544307708296,12.0,7.906970322536065,18.758357177048687,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.9659414225941423,2.65,1.69,1.71,2.557168602322787,3.34,2.51,2.1181074168797958,2.8081595092024543,2.61,2.6020784358047018 -2016,8,14,15,15,9,7,18,15,15,6.718544307708296,14.0,9.580774443392347,17.758357177048687,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.9659414225941423,2.65,1.69,1.71,2.557168602322787,3.34,2.51,2.1181074168797958,2.8081595092024543,2.61,2.6020784358047018 -2016,8,15,12,12,8,6,18,15,13,5.359272153854148,13.0,10.184649481046566,18.989903092973783,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.9659414225941423,2.65,1.69,1.71,2.557168602322787,3.34,2.51,2.1181074168797958,2.8081595092024543,2.61,2.6020784358047018 -2016,8,16,9,13,10,8,18,15,13,5.0,12.0,9.880871224185942,20.52681126112359,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.2848333333333333,2.66,1.87,2.0,2.5658837485172006,5.71,2.49,2.264208154506438,3.1627771556550948,2.61,2.6018594917787747 -2016,8,17,10,11,10,10,17,14,14,4.0,13.0,9.404282904390131,19.758357177048687,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1616070577014788,2.65,1.8,1.94,2.5174147414741475,3.52,2.44,2.204615010930289,2.9842190669371202,2.61,2.597714514835605 -2016,8,18,10,10,10,10,17,13,14,8.077816461562444,11.0,8.06585358743499,17.98990309297378,0,0,0,0,0,0,0,0.0,0.0,0.1098167116717826,0.0,3.013880846325167,2.65,1.81,1.72,2.501541232986389,2.77,2.44,2.172000595415302,2.8129603960396037,2.61,2.590929091216788 -2016,8,19,10,11,10,8,16,13,16,9.437088615416592,10.0,6.54784508540895,17.221449008898876,0,0,0,0,0,0,0,0.0,0.0,1.4465976105360556,0.0,2.906027397260274,2.66,1.77,1.84,2.476126126126126,2.89,2.43,2.109584745762712,2.649118811881188,2.61,2.592698271252896 -2016,8,20,9,10,8,4,16,13,14,9.077816461562444,10.0,6.5761837326210255,16.221449008898873,0,0,0,1,0,0,0,0.0,0.0,2.2481156694461513,0.0,2.7524866857845143,2.57,1.59,1.49,2.408257197696737,2.81,2.35,2.0218447737909515,2.5255833333333335,2.49,2.5443687323219333 -2016,8,21,9,9,4,3,16,13,13,3.0778164615624437,10.0,7.212988128258642,14.221449008898874,0,0,0,1,0,0,0,0.6407278461458522,0.0,0.0,0.0,2.7524866857845143,2.57,1.59,1.49,2.408257197696737,2.81,2.35,2.0218447737909515,2.5255833333333335,2.49,2.5443687323219333 -2016,8,22,6,5,3,5,14,10,14,0.0,9.0,6.912016595389073,14.452994924823967,0,0,0,0,0,0,0,2.2814556922917046,0.0,0.14064823022465128,0.0,2.7524866857845143,2.57,1.59,1.49,2.408257197696737,2.81,2.35,2.0218447737909515,2.5255833333333335,2.49,2.5443687323219333 -2016,8,23,4,4,5,6,14,12,17,0.3592721538541478,9.0,4.863753197234695,13.916086756674156,0,0,0,0,0,0,0,0.0,0.0,0.43442895417899763,0.0,2.94999518999519,2.63,1.85,1.52,2.4426154618473896,2.74,2.5,2.0973193021323735,2.7694580863674854,2.54,2.607870485678705 -2016,8,24,8,7,8,8,14,14,18,3.359272153854148,9.0,4.08756671140186,15.221449008898874,0,0,0,0,0,0,0,0.0,0.0,2.452913667375304,0.0,2.965606936416185,2.66,2.02,1.6,2.49,2.74,2.46,2.2511633853234465,2.6669968304278924,2.54,2.6281375614113442 -2016,8,25,8,8,10,6,15,16,17,6.718544307708296,8.0,3.9957791508446965,15.221449008898874,0,0,0,1,0,0,0,0.0,0.0,3.5405660792428346,0.0,2.999742198100407,2.76,2.04,1.59,2.5728347338935573,2.85,2.57,2.2436671035386633,2.67354381443299,2.65,2.7094652860295363 -2016,8,26,12,12,9,4,17,17,16,7.718544307708296,5.0,4.2012066085720985,13.452994924823969,0,0,0,1,0,0,0,0.0,0.0,2.26894965509274,0.0,3.0532467532467535,2.8,1.94,1.98,2.628704620462046,3.12,2.57,2.327949800609899,2.710513489991297,2.7,2.7578719974206027 -2016,8,27,10,10,9,7,17,16,16,1.7185443077082954,5.0,3.6404321570820706,12.916086756674156,0,0,0,1,0,0,0,0.0,0.0,0.8975140521771428,0.0,3.022485939257593,2.81,1.85,1.67,2.5793190593190594,2.91,2.56,2.2339880396187626,2.626072701354241,2.72,2.7814944077617567 -2016,8,28,9,11,11,10,16,16,16,2.0778164615624433,8.0,5.819416567425078,13.684540840749062,0,0,0,0,0,0,0,1.2814556922917044,0.0,0.0,0.0,3.022485939257593,2.81,1.85,1.67,2.5793190593190594,2.91,2.56,2.2339880396187626,2.626072701354241,2.72,2.7814944077617567 -2016,8,29,11,11,11,10,16,16,15,2.359272153854148,10.0,6.069673128976636,15.758357177048687,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.022485939257593,2.81,1.85,1.67,2.5793190593190594,2.91,2.56,2.2339880396187626,2.626072701354241,2.72,2.7814944077617567 -2016,8,30,6,8,10,9,15,16,16,0.6407278461458522,11.0,6.996608960786706,15.526811261123592,0,0,0,0,0,0,0,3.0,0.0,0.3741023719729516,0.0,3.162755381604697,2.94,1.87,1.74,2.7547006548175865,2.89,2.73,2.1650080589454297,2.8500803212851404,2.83,2.8566415297603016 -2016,8,31,7,8,8,6,15,16,17,0.6407278461458522,11.0,7.207581306123684,15.758357177048687,0,0,0,0,0,0,0,4.0,0.0,0.3741023719729516,0.0,3.2736569987389657,2.96,1.83,1.79,2.8140095905569904,3.14,2.75,2.219643298969072,2.89493934983018,2.91,2.8671462544589774 -2016,9,1,7,6,3,4,14,14,16,0.0,8.0,6.030948057690044,15.98990309297378,0,0,0,1,0,0,0,6.0,0.0,0.0,0.0,3.100119230769231,2.89,1.7,1.47,2.7121953156014293,2.81,2.59,2.0491863376251787,2.795205592105263,2.84,2.8142692990703018 -2016,9,2,5,4,3,2,11,11,15,0.0,7.0,6.109797682119563,16.758357177048687,0,0,0,1,0,0,0,5.640727846145852,0.0,0.43825213967745313,0.0,3.0191906327033684,2.84,1.56,1.34,2.6744541484716158,2.74,2.54,1.89388369255795,2.771769759450172,2.77,2.80667487347832 -2016,9,3,3,3,3,3,11,11,15,0.0,4.0,6.205096464984004,17.221449008898876,0,0,0,0,0,0,0,6.0,0.0,0.8765042793549063,0.0,2.86664347342054,2.76,1.38,1.18,2.506579634464752,1.82,2.44,1.6240550488078092,2.6045768209967557,2.66,2.7491014694201747 -2016,9,4,4,4,5,5,12,12,16,0.0,2.0,4.102752226592571,15.916086756674156,0,0,0,0,0,0,0,6.718544307708296,1.0,2.025184127787897,0.0,2.86664347342054,2.76,1.38,1.18,2.506579634464752,1.82,2.44,1.6240550488078092,2.6045768209967557,2.66,2.7491014694201747 -2016,9,5,4,6,8,8,12,13,16,0.0,2.0,3.5148085006224417,15.147632672599249,0,0,0,0,0,0,0,6.640727846145852,0.0,2.26169028580498,0.0,2.86664347342054,2.76,1.38,1.18,2.506579634464752,1.82,2.44,1.6240550488078092,2.6045768209967557,2.66,2.7491014694201747 -2016,9,6,3,7,12,10,13,14,17,0.0,5.0,2.7466790057342383,13.684540840749062,0,0,0,0,0,0,0,7.718544307708296,0.0,2.782049949740388,0.0,2.86664347342054,2.76,1.38,1.18,2.506579634464752,1.82,2.44,1.6240550488078092,2.6045768209967557,2.66,2.7491014694201747 -2016,9,7,7,10,13,10,14,15,18,0.0,7.0,3.897324768865169,9.379178588524343,0,0,0,0,0,0,0,4.922183538437556,0.0,1.6967486997822263,0.0,2.987442235357334,2.79,1.83,1.77,2.5964487843762454,2.92,2.45,2.1104190260475653,2.7082261741906066,2.73,2.7282231451341343 -2016,9,8,9,12,11,7,16,15,18,0.0,7.0,3.91724951980747,12.916086756674156,0,0,0,0,0,0,0,3.281455692291704,0.0,1.1356302992579284,0.0,2.8916322314049587,2.81,1.88,1.95,2.5616008537886876,3.61,2.44,2.2586877457404984,2.646375112714157,2.73,2.7302698666666667 -2016,9,9,13,13,8,6,16,15,18,0.3592721538541478,8.0,3.534733251564742,15.684540840749062,0,0,0,1,0,0,0,2.2814556922917046,0.0,3.20226868702028,0.0,2.945520907158044,2.81,1.86,1.95,2.5971050347222224,3.47,2.49,2.177696691176471,2.6601705191360363,2.73,2.7567033244848944 -2016,9,10,10,13,6,2,16,15,14,1.0778164615624433,8.0,3.5714857950465944,15.2952653451985,0,0,0,1,0,0,0,1.2814556922917044,0.0,2.8000077062938424,0.0,2.94189035243859,2.84,1.77,1.45,2.6009367759020194,2.95,2.53,2.174428134556575,2.674968152866242,2.72,2.821841200375117 -2016,9,11,9,9,2,2,15,10,13,0.0,7.0,4.35644308247435,15.221449008898874,0,0,0,0,0,0,0,4.281455692291704,0.0,1.3960927740606421,0.0,2.94189035243859,2.84,1.77,1.45,2.6009367759020194,2.95,2.53,2.174428134556575,2.674968152866242,2.72,2.821841200375117 -2016,9,12,3,3,3,3,13,11,14,0.0,3.0,3.149120024919266,13.452994924823969,1,0,0,1,0,0,0,4.0,1.0,4.452104169118465,0.0,2.94189035243859,2.84,1.77,1.45,2.6009367759020194,2.95,2.53,2.174428134556575,2.674968152866242,2.72,2.821841200375117 -2016,9,13,4,5,5,3,13,12,15,0.0,0.0,1.781535949388409,11.916086756674156,0,0,0,4,0,0,0,3.0,2.0,6.457966553335111,0.0,2.9786987270155585,2.91,1.95,1.69,2.707833430401864,3.22,2.53,2.2051485148514853,2.7928495915425278,2.81,2.89626151519318 -2016,9,14,7,7,4,3,15,13,16,0.0,0.0,0.7880542458305037,11.14763267259925,0,0,0,4,0,0,0,2.359272153854148,1.0,5.219347912579586,0.0,3.0783481933364616,2.92,2.01,1.83,2.77517571884984,3.02,2.65,2.3988758586027807,2.844690265486726,2.81,2.9345438282647587 -2016,9,15,1,2,4,5,13,15,16,0.0,2.0,0.9850678072881296,10.147632672599249,1,1,0,2,0,0,0,2.2814556922917046,0.0,5.193736564596288,0.0,3.068624823695345,2.92,1.92,1.69,2.7635322777101097,2.91,2.62,2.2719495671810312,2.85875,2.8199999999999994,2.9242894312972374 -2016,9,16,1,2,6,4,12,14,15,0.7185443077082956,4.0,1.3790949302033815,10.147632672599249,1,1,0,1,0,0,0,2.2814556922917046,0.0,5.936649743411457,0.23154591592509374,3.0114705882352943,2.84,1.83,1.66,2.6749719626168225,2.46,2.52,2.1136191626409015,2.7690408357075027,2.74,2.8455125777657564 -2016,9,17,3,3,5,4,13,11,16,0.0,7.0,2.175563072303661,11.916086756674156,1,0,0,1,0,0,0,6.281455692291704,0.0,3.3695400030879163,0.23154591592509374,3.012949609035621,2.88,1.42,1.33,2.6313009708737862,2.26,2.49,1.9048987561469481,2.6964005949429843,2.73,2.869726977248104 -2016,9,18,5,6,6,5,14,12,17,0.0,11.0,3.1575339211890423,14.684540840749062,0,0,0,1,0,0,0,4.281455692291704,0.0,1.1812972432252096,0.0,3.012949609035621,2.88,1.42,1.33,2.6313009708737862,2.26,2.49,1.9048987561469481,2.6964005949429843,2.73,2.869726977248104 -2016,9,19,5,6,7,6,13,13,18,0.0,12.0,4.406277160974357,13.916086756674156,0,0,0,1,0,0,0,7.640727846145852,0.0,0.7590411966862126,0.0,3.012949609035621,2.88,1.42,1.33,2.6313009708737862,2.26,2.49,1.9048987561469481,2.6964005949429843,2.73,2.869726977248104 -2016,9,20,8,8,7,8,13,12,18,0.0,9.0,3.3909431208033762,10.073816336299625,0,0,0,1,0,0,0,7.640727846145852,0.0,0.8996894269108638,0.0,3.1415061475409836,2.97,1.89,1.71,2.7343203422053235,3.06,2.61,2.2008532357473034,2.8473340143003063,2.8699999999999997,2.916930806120119 -2016,9,21,7,7,6,8,12,12,16,0.0,6.0,2.144127466688836,11.610724504449438,0,0,0,1,0,0,0,7.359272153854148,0.0,2.060853538848898,0.0,3.263469079939668,3.08,2.09,1.72,2.869163201663202,3.29,2.72,2.368524237685692,2.92639923591213,2.9800000000000004,3.025730856187949 -2016,9,22,6,6,8,8,13,13,16,0.0,1.0,1.5561837407187071,9.536908168149813,0,0,0,2,0,0,0,8.718544307708296,2.0,4.48234206011503,0.0,3.259311851447296,3.08,2.12,1.63,2.914886699507389,3.18,2.75,2.4256604581460075,2.989085444396737,2.99,3.0822290318919534 -2016,9,23,5,6,7,7,13,14,16,0.0,1.0,0.9452183054035291,6.7684540840749055,1,0,0,2,0,0,0,11.437088615416592,2.0,5.612861777430358,0.23154591592509374,3.202897889332573,3.06,1.68,1.38,2.898305268875611,2.71,2.7,2.028349286970111,2.990186915887851,2.97,3.062921333680646 -2016,9,24,0,1,5,7,13,14,16,0.0,4.0,0.5910406843728777,4.842270420374531,3,2,0,1,0,0,0,7.640727846145852,0.0,8.856530334995698,0.6946377477752812,3.087732463295269,2.94,1.19,0.8,2.8170718050065875,1.89,2.76,1.7008685698895774,2.9093988892518783,2.8500000000000005,2.9727949913170644 -2016,9,25,0,0,6,3,11,15,13,0.3592721538541478,10.0,0.7880542458305037,6.3791785885243435,5,4,0,2,0,0,0,2.9221835384375567,0.0,7.513512804054456,0.4630918318501875,3.087732463295269,2.94,1.19,0.8,2.8170718050065875,1.89,2.76,1.7008685698895774,2.9093988892518783,2.8500000000000005,2.9727949913170644 -2016,9,26,0,0,0,0,10,10,9,1.796360769270739,13.0,1.3790949302033815,5.3791785885243435,6,4,2,4,0,0,0,0.0,0.0,5.248070727312186,0.6946377477752812,3.087732463295269,2.94,1.19,0.8,2.8170718050065875,1.89,2.76,1.7008685698895774,2.9093988892518783,2.8500000000000005,2.9727949913170644 -2016,9,27,0,1,0,1,11,7,8,0.0,12.0,1.6897483888312455,5.3791785885243435,3,2,3,4,0,0,0,2.9221835384375567,0.0,2.9565744943537564,0.23154591592509374,3.2761448900388097,2.98,1.38,1.34,2.8523402113739307,1.71,2.72,1.8770998349834984,2.982636789994789,2.88,2.9833117408906884 -2016,9,28,0,0,0,0,10,5,10,0.0,9.0,1.8118021822712596,7.3791785885243435,4,2,5,7,0,0,0,4.281455692291704,0.0,2.229457058533283,0.23154591592509374,3.092370311252993,2.95,1.44,1.22,2.8039134966128194,1.77,2.61,1.8200542604501608,2.8970151574038088,2.86,2.9447105953861032 -2016,9,29,0,0,0,0,9,2,7,0.0,8.0,1.8033882860014836,9.14763267259925,4,5,4,5,0,2,0,5.640727846145852,0.0,2.2942362860360337,0.23154591592509374,2.9655539358600587,2.87,1.29,0.87,2.696396217023395,2.41,2.53,1.6057094047833125,2.791310344827586,2.78,2.883982780612245 -2016,9,30,0,0,0,0,8,2,5,0.0,6.0,2.205829305186511,8.684540840749063,5,5,3,5,0,2,0,8.0,0.0,2.972116914869611,0.23154591592509374,3.002146892655367,2.85,1.18,0.81,2.660624056366381,2.14,2.51,1.549045601291364,2.7458268996342947,2.7800000000000002,2.8702610828806727 -2016,10,1,0,0,0,0,8,3,7,0.0,4.0,2.183976968573437,8.379178588524343,6,4,2,4,0,1,0,11.077816461562442,2.0,2.8545871612874665,0.23154591592509374,2.9713658536585372,2.65,0.77,0.41,2.5856266116554925,1.38,2.51,1.318862765141835,2.656191222570533,2.61,2.7604796777737093 -2016,10,2,0,0,0,0,9,4,9,0.0,1.0,1.781535949388409,6.305362252224718,6,3,2,2,0,0,0,11.796360769270738,3.0,4.353165883170966,0.23154591592509374,2.9713658536585372,2.65,0.77,0.41,2.5856266116554925,1.38,2.51,1.318862765141835,2.656191222570533,2.61,2.7604796777737093 -2016,10,3,1,1,0,1,9,5,9,0.0,0.0,0.0,4.536908168149813,1,1,2,2,0,0,0,12.796360769270738,5.0,7.971681664473094,0.23154591592509374,2.9713658536585372,2.65,0.77,0.41,2.5856266116554925,1.38,2.51,1.318862765141835,2.656191222570533,2.61,2.7604796777737093 -2016,10,4,0,0,2,2,8,7,11,0.0,0.0,0.0,2.5369081681498122,2,2,1,2,0,0,0,13.077816461562444,4.0,13.309824390973354,0.926183663700375,3.0117455138662317,2.71,1.56,1.27,2.586458641063515,1.65,2.5,1.964738778513613,2.6616315049226444,2.66,2.74791680068618 -2016,10,5,0,0,4,2,7,8,13,0.0,0.0,0.0,3.3053622522247186,5,3,0,4,0,0,0,11.077816461562442,3.0,13.658640132003011,0.6946377477752812,2.938517298187809,2.74,1.65,1.48,2.5741996233521656,1.86,2.48,2.0169616451016634,2.6486653581943083,2.7,2.7520369676533036 -2016,10,6,0,0,4,2,7,8,14,0.0,2.0,0.0,4.073816336299625,3,2,1,7,0,0,0,11.359272153854146,2.0,15.622472106185443,0.926183663700375,3.0108196721311478,2.8,1.73,1.45,2.62,2.37,2.49,2.0382287042908476,2.6745,2.76,2.826874404194471 -2016,10,7,1,1,3,0,7,8,10,0.0,4.0,0.3940271229152518,4.610724504449437,1,1,1,12,0,0,1,10.0,1.0,12.982551520150812,1.3892754955505624,3.1363551815766164,2.89,1.78,1.38,2.7642520491803277,2.4,2.62,2.18458275703089,2.839294003868472,2.9,2.918313328332083 -2016,10,8,0,0,0,0,9,4,7,0.0,7.0,0.7880542458305037,4.610724504449437,3,4,7,11,0,0,1,7.562911384583408,0.0,9.41491482318442,1.1577295796254687,3.113705966930266,2.86,1.35,1.01,2.674689018464529,1.5,2.59,1.9307034648267587,2.752556894243641,2.79,2.8711450445902744 -2016,10,9,0,0,0,0,7,3,5,0.0,7.0,0.9850678072881296,6.14763267259925,6,6,8,8,1,2,0,8.844367076875113,0.0,6.917991132498589,0.6946377477752812,3.113705966930266,2.86,1.35,1.01,2.674689018464529,1.5,2.59,1.9307034648267587,2.752556894243641,2.79,2.8711450445902744 -2016,10,10,0,0,0,0,4,2,6,0.0,4.0,1.3790949302033815,6.610724504449437,7,9,6,6,2,2,0,11.922183538437558,0.0,7.14362311607433,0.23154591592509374,3.113705966930266,2.86,1.35,1.01,2.674689018464529,1.5,2.59,1.9307034648267587,2.752556894243641,2.79,2.8711450445902744 -2016,10,11,0,0,0,1,4,3,8,0.0,1.0,1.3790949302033815,6.842270420374531,9,9,4,5,2,1,0,12.281455692291704,1.0,8.86610786813951,0.23154591592509374,3.2347805267358343,2.97,1.94,1.59,2.8543116634799235,1.9,2.71,2.30525297909748,2.953241795043537,2.96,3.0545538261997405 -2016,10,12,0,0,1,0,5,3,9,0.0,0.0,0.7880542458305037,5.0738163362996245,7,7,2,13,2,1,0,12.281455692291704,2.0,14.082447626893373,0.4630918318501875,3.1648394241417495,3.09,2.02,1.41,2.7975139523084733,2.16,2.69,2.342385139591119,2.847104267963263,3.0,3.034629886332132 -2016,10,13,0,0,0,0,6,3,8,0.0,0.0,0.7880542458305037,4.610724504449437,5,7,10,16,1,2,1,14.281455692291704,2.0,10.062170896715688,0.6946377477752812,3.1479321486268175,3.14,1.9,1.53,2.764791352438411,2.6,2.67,2.18775611024441,2.7982585278276484,3.05,3.082081459270365 -2016,10,14,0,0,0,0,5,3,8,0.0,1.0,0.9850678072881296,4.842270420374531,9,10,9,11,2,1,0,12.359272153854148,2.0,7.5621182617840175,0.23154591592509374,3.0398055271238484,2.99,1.92,1.52,2.7153108348134993,2.73,2.59,2.217986984815618,2.7670070197830245,2.9,3.030483068908359 -2016,10,15,0,0,0,1,6,6,12,0.0,0.0,1.3790949302033815,6.0738163362996245,10,8,5,4,1,0,0,13.359272153854148,2.0,4.628098847861834,0.23154591592509374,3.0260566228513657,2.92,1.44,0.96,2.645759849906191,1.38,2.55,2.006239588066031,2.6938097405553028,2.8400000000000003,3.012481233352167 -2016,10,16,0,0,2,4,8,8,14,0.0,0.0,0.7880542458305037,5.305362252224718,7,5,1,3,0,0,0,14.077816461562444,3.0,6.030539867046862,0.23154591592509374,3.0260566228513657,2.92,1.44,0.96,2.645759849906191,1.38,2.55,2.006239588066031,2.6938097405553028,2.8400000000000003,3.012481233352167 -2016,10,17,1,2,7,6,9,8,15,0.0,0.0,0.5910406843728777,5.536908168149812,3,1,0,4,0,0,0,13.359272153854148,4.0,9.452750971451893,0.23154591592509374,3.0260566228513657,2.92,1.44,0.96,2.645759849906191,1.38,2.55,2.006239588066031,2.6938097405553028,2.8400000000000003,3.012481233352167 -2016,10,18,4,7,6,3,11,11,15,0.0,0.0,0.1970135614576259,3.5369081681498122,2,0,0,3,0,0,0,14.718544307708296,4.0,12.311543596299252,0.23154591592509374,3.10881694255112,3.03,1.78,1.32,2.77,2.15,2.64,2.0774222026042817,2.787963446475196,2.96,3.0424888765294775 -2016,10,19,3,4,1,1,9,10,13,0.0,2.0,0.0,3.8422704203745313,1,1,5,10,0,0,0,17.0,3.0,17.52488633553986,0.926183663700375,3.181110572259942,3.21,1.96,1.39,2.9161666666666664,2.99,2.77,2.204509147701919,2.933774319066148,3.13,3.1361772223800055 -2016,10,20,0,1,0,0,8,7,8,0.0,4.0,0.1970135614576259,5.3791785885243435,9,4,10,16,0,0,1,14.359272153854148,1.0,18.780966479916128,2.547005075176031,3.179447255741534,3.14,1.81,1.29,2.977602820211516,2.81,2.81,2.243050175029172,3.0187188612099645,3.1399999999999997,3.0857092725064112 -2016,10,21,0,2,0,0,5,0,1,0.0,5.0,0.3940271229152518,6.14763267259925,4,3,16,18,1,6,4,13.922183538437556,1.0,13.59500821104934,2.083913243325844,3.1338100686498858,3.03,1.81,1.33,2.8988333333333336,1.52,2.76,2.1222285714285714,2.965354523227384,3.03,3.0074037526059763 -2016,10,22,0,0,0,0,1,0,0,0.0,2.0,0.7880542458305037,7.6845408407490625,6,15,18,12,7,12,4,15.640727846145852,1.0,11.140381951454938,1.3892754955505624,2.914336372847011,2.81,1.73,1.27,2.6471571428571425,2.53,2.59,2.0283451932468255,2.690068493150685,2.8,2.7723606621608385 -2016,10,23,0,0,0,0,1,0,1,0.0,1.0,0.7880542458305037,6.14763267259925,16,14,11,11,7,8,1,14.640727846145852,2.0,11.177461101435881,0.6946377477752812,2.914336372847011,2.81,1.73,1.27,2.6471571428571425,2.53,2.59,2.0283451932468255,2.690068493150685,2.8,2.7723606621608385 -2016,10,24,0,0,0,0,1,0,4,0.0,0.0,0.0,5.3791785885243435,15,13,15,14,4,5,0,12.718544307708296,4.0,10.407792912045139,0.926183663700375,2.914336372847011,2.81,1.73,1.27,2.6471571428571425,2.53,2.59,2.0283451932468255,2.690068493150685,2.8,2.7723606621608385 -2016,10,25,0,0,0,0,1,0,5,0.0,0.0,0.0,5.3791785885243435,23,20,20,13,7,5,0,13.359272153854148,3.0,10.008583947587484,0.6946377477752812,2.8711053984575834,2.78,1.77,1.72,2.62496648385131,3.7,2.44,1.9843900442115605,2.655368558382257,2.76,2.676838709677419 -2016,10,26,0,0,0,0,3,0,6,0.0,0.0,0.1970135614576259,5.3791785885243435,25,25,20,12,8,3,0,13.922183538437556,1.0,9.752011329196678,0.926183663700375,2.8856273062730633,2.78,1.84,1.66,2.5480163727959697,3.04,2.46,2.049913274336283,2.5949565217391304,2.75,2.647637669592977 -2016,10,27,0,0,0,0,3,2,6,0.0,1.0,0.1970135614576259,6.916086756674156,27,23,18,11,5,2,0,14.359272153854148,3.0,8.344524037158642,0.926183663700375,2.8681609195402302,2.81,1.76,1.39,2.6025647249190937,3.2,2.47,1.9616865620736699,2.6133799533799533,2.76,2.662842399222924 -2016,10,28,0,0,0,0,4,2,7,0.0,1.0,0.3940271229152518,6.916086756674156,21,20,14,5,3,2,0,13.0,3.0,7.6645394281525085,0.6946377477752812,2.854036970781157,2.73,1.81,1.47,2.5495307262569833,2.98,2.42,2.0044758317639673,2.6330209140201393,2.68,2.6334093594894825 -2016,10,29,0,0,0,2,4,2,7,0.0,1.0,0.5910406843728777,6.3791785885243435,19,16,6,7,3,1,0,16.281455692291704,2.0,8.117765058718991,0.6946377477752812,2.7698123827392123,2.55,1.57,1.21,2.4867749911691988,2.44,2.35,1.984991423670669,2.548318425760286,2.56,2.5959554548886374 -2016,10,30,0,0,0,0,5,3,7,0.0,0.0,0.5910406843728777,6.14763267259925,12,8,8,13,0,0,0,18.281455692291704,4.0,9.80354538102832,0.6946377477752812,2.7698123827392123,2.55,1.57,1.21,2.4867749911691988,2.44,2.35,1.984991423670669,2.548318425760286,2.56,2.5959554548886374 -2016,10,31,0,0,0,1,4,3,6,0.0,0.0,0.0,3.073816336299625,20,19,16,9,3,0,0,16.64072784614585,8.0,9.69129443872808,0.4630918318501875,2.7698123827392123,2.55,1.57,1.21,2.4867749911691988,2.44,2.35,1.984991423670669,2.548318425760286,2.56,2.5959554548886374 -2016,11,1,0,0,0,1,3,5,8,0.0,0.0,0.0,0.7684540840749062,24,20,5,7,4,0,0,16.0,9.0,15.287198388345386,1.926183663700375,2.785464895635674,2.56,1.92,1.87,2.432660385823239,2.6,2.18,2.2240679105732055,2.559919604205318,2.48,2.612896454209267 -2016,11,2,0,0,1,2,4,4,10,0.0,0.0,0.0,0.0,14,11,4,8,1,0,0,13.922183538437556,6.0,16.553022743149093,3.3892754955505624,2.3644693992139247,2.22,1.83,1.62,2.0615596725549334,2.03,1.79,2.040601277048599,2.1140506329113924,2.15,2.3169016750260245 -2016,11,3,0,0,0,0,4,3,8,0.0,1.0,0.0,0.7684540840749062,11,7,7,8,1,0,0,11.640727846145852,3.0,15.352957165422684,3.85236732740075,2.268778443113772,2.18,1.84,1.71,1.9331545873481355,1.94,1.94,1.9546014146434716,1.966322314049587,2.15,2.1746365844544098 -2016,11,4,0,0,0,0,3,2,5,0.0,1.0,0.1970135614576259,0.0,16,14,15,10,3,3,1,12.922183538437556,2.0,14.56392951075966,3.083913243325844,2.2848109339407743,2.29,1.83,1.78,2.0459111243662393,2.05,2.0,1.9491080127666724,2.105045045045045,2.22,2.263449962777837 -2016,11,5,0,0,0,0,2,0,3,0.0,1.0,0.1970135614576259,0.0,24,18,14,10,8,9,1,13.640727846145852,3.0,14.288177937919933,3.85236732740075,2.1662690707350905,2.12,1.72,1.55,1.8652267699115044,1.83,1.86,1.8345412293853072,1.906860759493671,2.05,2.110564332371259 -2016,11,6,0,0,0,0,2,0,3,0.0,0.0,0.0,0.7684540840749062,22,17,12,11,7,8,2,15.0,4.0,13.420412271874808,3.85236732740075,2.1662690707350905,2.12,1.72,1.55,1.8652267699115044,1.83,1.86,1.8345412293853072,1.906860759493671,2.05,2.110564332371259 -2016,11,7,0,0,0,0,2,0,3,0.0,0.0,0.0,0.7684540840749062,25,21,12,12,9,6,2,12.640727846145852,2.0,14.611707048006298,3.3154591592509375,2.1662690707350905,2.12,1.72,1.55,1.8652267699115044,1.83,1.86,1.8345412293853072,1.906860759493671,2.05,2.110564332371259 -2016,11,8,0,0,0,0,2,0,1,0.0,2.0,0.1970135614576259,2.3053622522247186,19,17,14,14,9,8,2,9.640727846145852,1.0,15.028424347677747,3.547005075176031,2.3504759916492692,2.26,1.76,1.82,2.109087779690189,1.83,2.01,1.941805486284289,2.2075061124694377,2.2,2.2311911911911912 -2016,11,9,0,0,0,0,1,0,1,0.0,3.0,0.1970135614576259,1.5369081681498125,20,20,18,18,8,9,3,10.640727846145852,1.0,13.51806221664862,4.473188738876406,2.2904907975460125,2.25,1.88,2.0,2.0579491833030854,2.18,1.97,2.033415925855873,2.146785524215008,2.17,2.2132945953514427 -2016,11,10,0,0,0,0,1,0,0,0.0,3.0,0.0,0.0,22,20,17,15,9,13,5,10.922183538437558,1.0,13.96778026886463,5.7047346548015,2.2711408379606266,2.14,1.89,1.94,2.0057063492063487,2.7,1.89,1.9840555555555552,2.078443435177539,2.08,2.1287632108706593 -2016,11,11,0,0,0,0,1,0,0,0.0,2.0,0.0,0.0,17,17,18,19,9,15,4,11.922183538437558,1.0,16.72489941329596,5.241642822951312,2.145904255319149,2.0,1.82,1.94,1.861957324579401,2.2,1.81,1.8851597589921492,1.9364830722587163,1.97,1.9678429579304937 -2016,11,12,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,26,26,26,22,13,14,5,12.359272153854148,2.0,15.540479838931711,5.473188738876406,1.9610374331550804,2.01,1.85,2.01,1.744748163693599,2.14,1.75,1.9295870248642468,1.7849658497388512,1.88,1.933477497255763 -2016,11,13,0,0,0,0,1,0,0,0.0,2.0,0.0,0.0,19,21,22,18,13,15,7,17.281455692291704,2.0,16.027968785596062,5.0100969070262185,1.9610374331550804,2.01,1.85,2.01,1.744748163693599,2.14,1.75,1.9295870248642468,1.7849658497388512,1.88,1.933477497255763 -2016,11,14,0,0,0,0,1,0,0,0.0,2.0,0.0,0.7684540840749062,19,21,19,17,13,15,4,15.640727846145852,2.0,14.633986604814776,4.778550991101125,1.9610374331550804,2.01,1.85,2.01,1.744748163693599,2.14,1.75,1.9295870248642468,1.7849658497388512,1.88,1.933477497255763 -2016,11,15,0,0,0,0,1,0,2,0.0,0.0,0.0,0.7684540840749062,20,20,19,15,10,13,2,15.922183538437556,3.0,12.092475458625705,3.3154591592509375,2.3944979919678717,2.22,1.98,2.09,2.072231247013856,2.32,2.01,2.0865284489477784,2.1522705961152044,2.17,2.1862613360582452 -2016,11,16,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,15,18,18,14,10,9,1,23.359272153854146,9.0,14.340335916133931,4.3154591592509375,2.611687429218573,2.4,2.14,2.21,2.2255151515151517,2.42,2.15,2.262105350339573,2.26588693957115,2.3,2.40417004048583 -2016,11,17,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,18,18,13,13,9,6,0,23.0,13.0,25.994574080832137,7.463091831850187,2.7167080745341616,2.39,2.18,2.18,2.3642491610738254,2.26,2.32,2.263944719331172,2.4394222833562584,2.25,2.3982497756122583 -2016,11,18,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,16,15,7,18,7,4,3,25.64072784614585,11.0,33.48610262354093,14.241642822951313,2.4158767772511847,2.26,1.92,1.88,2.18037410540013,1.98,2.1,1.9904791631516787,2.2565144596651447,2.22,2.2186032863849765 -2016,11,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,19,15,25,33,8,15,15,21.281455692291704,11.0,28.345325437733685,10.704734654801499,2.4605882352941175,2.55,2.26,2.39,2.2780714285714283,3.23,2.19,2.3783758286588474,2.309263862332696,2.46,2.4842633283725815 -2016,11,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,23,28,34,33,17,24,16,19.0,10.0,19.488361741800556,7.778550991101125,2.4605882352941175,2.55,2.26,2.39,2.2780714285714283,3.23,2.19,2.3783758286588474,2.309263862332696,2.46,2.4842633283725815 -2016,11,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,31,33,31,18,25,10,20.0,12.0,19.28815256518364,9.389275495550562,2.4605882352941175,2.55,2.26,2.39,2.2780714285714283,3.23,2.19,2.3783758286588474,2.309263862332696,2.46,2.4842633283725815 -2016,11,22,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,30,29,33,28,18,21,5,22.0,13.0,24.302428845670065,12.620821411475657,3.0317993630573246,2.82,2.49,2.65,2.6526514084507045,3.81,2.49,2.6113134673802985,2.730384615384615,2.78,2.7116966237551616 -2016,11,23,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,29,30,29,25,15,14,5,23.718544307708292,13.0,26.578635980591475,12.778550991101124,2.998350928285402,2.78,2.42,2.55,2.6080182421227196,4.15,2.5,2.5160372023809523,2.701484828921885,2.72,2.674717034124421 -2016,11,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,27,25,27,9,9,8,22.35927215385415,12.0,28.683990937074533,11.778550991101124,2.891716857043959,2.69,2.36,2.38,2.5604636858291934,3.39,2.46,2.4507511540075533,2.5979346264367815,2.6,2.6534690281899107 -2016,11,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,21,26,25,7,14,8,21.0,12.0,27.5439079925199,11.704734654801499,2.891716857043959,2.69,2.36,2.38,2.5604636858291934,3.39,2.46,2.4507511540075533,2.5979346264367815,2.6,2.6534690281899107 -2016,11,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,24,25,25,11,19,10,20.64072784614585,17.0,24.735000529048545,13.010096907026218,2.891716857043959,2.69,2.36,2.38,2.5604636858291934,3.39,2.46,2.4507511540075533,2.5979346264367815,2.6,2.6534690281899107 -2016,11,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,26,27,25,16,23,7,24.718544307708296,17.0,26.871617193429863,14.69463774777528,2.891716857043959,2.69,2.36,2.38,2.5604636858291934,3.39,2.46,2.4507511540075533,2.5979346264367815,2.6,2.6534690281899107 -2016,11,28,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,28,27,22,20,13,15,3,23.718544307708292,17.0,30.144271807866843,21.389275495550564,2.891716857043959,2.69,2.36,2.38,2.5604636858291934,3.39,2.46,2.4507511540075533,2.5979346264367815,2.6,2.6534690281899107 -2016,11,29,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,25,20,16,25,7,6,5,24.0,16.0,33.46537836148268,22.083913243325846,3.344171220400728,2.95,2.55,2.52,2.9164568413117227,3.21,2.8,2.643152975897688,3.040582901554404,2.8699999999999997,2.848484935851233 -2016,11,30,0,0,0,0,4,1,1,0.0,0.0,0.0,0.0,21,15,21,30,2,7,10,24.35927215385415,17.0,36.231924219734374,24.010096907026217,3.3441313269493844,3.14,2.44,2.31,2.974824624194703,2.72,2.89,2.5378594303050734,3.1135662650602405,3.01,3.00327861235868 -2016,12,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,16,17,27,30,8,20,15,26.718544307708296,17.0,35.46811841456028,23.315459159250935,3.4625695637238065,3.29,2.55,2.76,3.174804753820034,3.07,3.0,2.795145129224652,3.2609223300970873,3.2,3.219052363555851 -2016,12,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,24,28,31,14,21,13,26.077816461562442,17.0,36.63731117555666,21.85236732740075,3.5559903381642513,3.39,2.85,2.98,3.2479312668463614,3.77,3.15,3.0735009205494976,3.3381481481481483,3.28,3.3108854814200854 -2016,12,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,25,30,32,15,24,15,24.35927215385415,16.0,34.31072640524471,18.778550991101124,3.4437037037037035,3.42,2.85,3.09,3.176508302583026,4.27,3.16,3.0433342249565336,3.2716795532646055,3.35,3.293662535376208 -2016,12,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,27,31,30,15,20,15,25.0,13.0,31.58743215492269,18.01009690702622,3.4437037037037035,3.42,2.85,3.09,3.176508302583026,4.27,3.16,3.0433342249565336,3.2716795532646055,3.35,3.293662535376208 -2016,12,5,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,33,26,30,29,12,17,16,32.0,15.0,30.8549767947432,17.31545915925094,3.4437037037037035,3.42,2.85,3.09,3.176508302583026,4.27,3.16,3.0433342249565336,3.2716795532646055,3.35,3.293662535376208 -2016,12,6,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,32,29,31,35,12,15,14,33.2814556922917,17.0,42.18402697175853,17.54700507517603,3.7533500417710948,3.64,3.2,3.39,3.5289367311072053,6.17,3.5,3.324372952040513,3.58806137359961,3.63,3.5019301682415303 -2016,12,7,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,27,35,42,12,20,18,38.0,19.0,45.5091397184814,16.54700507517603,3.795102375102375,3.76,3.33,3.52,3.6642785035629455,4.73,3.6,3.4414847477230013,3.7585574685900416,3.75,3.6035279129024786 -2016,12,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,30,40,46,15,25,23,37.56291138458341,17.0,48.56381783023156,20.39937240257678,3.7511764705882356,3.85,3.49,3.93,3.5940995115995116,6.52,3.59,3.654652905198777,3.6933084434233194,3.81,3.6764520718477685 -2016,12,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,34,42,50,23,34,28,35.203639230729266,12.0,38.573472493794476,17.7047346548015,3.653142194232682,3.7,3.4,4.06,3.480339412360689,9.78,3.47,3.5953802771511443,3.5591165937126945,3.66,3.577088054891361 -2016,12,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,38,42,47,24,34,23,30.844367076875116,10.0,30.826713928336595,14.778550991101124,3.7605838815789476,3.83,3.31,3.67,3.6433268746366982,9.9,4.04,3.504054507879101,3.6610157194679567,3.78,3.6393627859590625 -2016,12,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,43,38,38,40,21,25,10,29.922183538437555,11.0,30.434017119579007,11.85236732740075,3.7605838815789476,3.83,3.31,3.67,3.6433268746366982,9.9,4.04,3.504054507879101,3.6610157194679567,3.78,3.6393627859590625 -2016,12,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,35,31,37,47,13,18,11,29.56291138458341,12.0,32.23012835635414,12.315459159250938,3.7605838815789476,3.83,3.31,3.67,3.6433268746366982,9.9,4.04,3.504054507879101,3.6610157194679567,3.78,3.6393627859590625 -2016,12,13,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,31,31,44,51,14,18,10,33.64072784614585,11.0,35.69106453204577,10.547005075176031,3.662728954671601,3.68,3.23,3.51,3.4795926285160044,5.97,4.35,3.369344637073728,3.5414796500570556,3.73,3.462464743175055 -2016,12,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,33,51,52,14,23,15,37.56291138458341,10.0,36.54432137917557,9.315459159250937,3.68517342248224,3.79,3.34,3.85,3.5071711211384935,9.76,3.5,3.460076947236181,3.535119228817859,3.82,3.4845606060606067 -2016,12,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,41,43,56,55,21,34,20,36.92218353843756,11.0,30.06013588179976,9.547005075176031,3.6142857142857143,3.77,3.25,7.99,3.4139310784939374,12.18,3.5,4.211874222529371,3.4762474645030426,3.74,3.4452093240093244 -2016,12,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,54,48,51,49,26,27,10,38.92218353843756,15.0,28.26135173522524,8.389275495550562,3.645202702702703,3.66,3.12,4.19,3.4609283118599277,9.99,3.5,3.5266161537259806,3.527626238791883,3.6499999999999995,3.452588985088985 -2016,12,17,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,41,37,42,50,16,12,5,43.56291138458341,22.0,49.13640875640122,15.694637747775282,3.7147888198757766,3.89,2.98,3.49,3.719390759857844,6.3,3.65,3.1750891920251836,3.7555737067288995,3.9499999999999997,3.4524136022629444 -2016,12,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,26,25,49,67,8,23,33,39.2814556922917,23.0,51.531763224324145,25.936280570726595,3.7147888198757766,3.89,2.98,3.49,3.719390759857844,6.3,3.65,3.1750891920251836,3.7555737067288995,3.9499999999999997,3.4524136022629444 -2016,12,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,42,42,56,56,18,36,34,32.0,19.0,45.03335651069812,20.93628057072659,3.7147888198757766,3.89,2.98,3.49,3.719390759857844,6.3,3.65,3.1750891920251836,3.7555737067288995,3.9499999999999997,3.4524136022629444 -2016,12,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,46,43,47,41,21,33,25,26.35927215385415,14.0,34.08305994659848,15.704734654801499,3.709359073359073,3.58,3.15,3.67,3.5383951037062222,9.94,3.47,3.3420348162475824,3.6375366568914953,3.5,3.4636810244470313 -2016,12,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,38,38,34,18,26,15,29.359272153854146,13.0,31.42072173828076,13.547005075176031,3.502469711090401,3.34,3.0,3.28,3.2499088623507224,7.46,3.27,3.1763580140869268,3.3472201189832345,3.21,3.248370686588403 -2016,12,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,31,33,34,14,21,13,30.64072784614585,15.0,36.25807311882755,13.473188738876406,3.5801612903225806,3.49,3.13,3.44,3.29997507788162,7.2,3.3,3.2579818523153943,3.3543235435724603,3.38,3.377317341329336 -2016,12,23,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,30,29,34,33,16,19,10,31.281455692291704,18.0,33.39749461774083,15.389275495550562,3.618351534061362,3.52,3.14,3.25,3.3681965761511217,8.76,3.43,3.259416,3.4407221542227657,3.43,3.4309247361174853 -2016,12,24,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,29,27,30,33,12,13,5,32.64072784614585,21.0,30.552965182127664,15.620821411475657,3.6950116472545753,3.52,3.17,3.16,3.4279499217527385,5.33,3.56,3.3232965618679904,3.527705088265836,3.4,3.458744399291445 -2016,12,25,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,28,26,26,26,10,5,2,33.64072784614585,25.0,35.556958621385874,23.694637747775282,3.6950116472545753,3.52,3.17,3.16,3.4279499217527385,5.33,3.56,3.3232965618679904,3.527705088265836,3.4,3.458744399291445 -2016,12,26,0,0,0,0,3,1,5,0.0,0.0,0.0,0.0,32,27,19,29,10,3,2,34.64072784614585,23.0,41.73947348603042,24.620821411475657,3.6950116472545753,3.52,3.17,3.16,3.4279499217527385,5.33,3.56,3.3232965618679904,3.527705088265836,3.4,3.458744399291445 -2016,12,27,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,23,20,33,36,5,9,6,30.35927215385415,18.0,39.96281186871823,19.315459159250935,3.6950116472545753,3.52,3.17,3.16,3.4279499217527385,5.33,3.56,3.3232965618679904,3.527705088265836,3.4,3.458744399291445 -2016,12,28,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,29,30,33,33,11,16,4,29.0,14.0,34.59608520272816,16.85236732740075,3.7472403901319566,3.6,3.25,3.4,3.494783258594918,5.82,3.61,3.3758240705251055,3.5840318302387266,3.5,3.4924265900287392 -2016,12,29,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,34,32,32,32,12,17,8,28.2814556922917,11.0,37.35865685371593,14.167826486651688,3.7310550458715595,3.61,3.29,3.51,3.4775923511516735,5.44,3.57,3.4079885277246653,3.547105561861521,3.54,3.4900557572614104 -2016,12,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,34,34,20,25,17,29.0,15.0,34.62718124555302,14.936280570726595,3.798133785748909,3.64,3.3,3.55,3.534026084491069,5.82,3.58,3.4728816311800794,3.60257328990228,3.6,3.580199069566158 -2016,12,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,33,31,35,22,24,10,34.28145569229171,18.0,37.77734114777621,17.31545915925094,3.798133785748909,3.64,3.3,3.55,3.534026084491069,5.82,3.58,3.4728816311800794,3.60257328990228,3.6,3.580199069566158 -2017,1,1,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,30,28,34,37,15,16,8,35.64171004587808,21.0,38.23822464508566,17.831624171364584,3.9377497575169733,3.61,3.27,3.3,3.6761769647190587,5.15,4.34,3.392787712058689,3.7585662130766675,3.58,3.5304715919744987 -2017,1,2,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,36,32,30,34,11,9,5,37.283420091756156,22.0,38.22670268529379,20.602671149944012,3.9377497575169733,3.61,3.27,3.3,3.6761769647190587,5.15,4.34,3.392787712058689,3.7585662130766675,3.58,3.5304715919744987 -2017,1,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,31,28,26,37,9,7,9,40.925130137634234,19.0,42.438342026625314,19.602671149944012,3.9377497575169733,3.61,3.27,3.3,3.6761769647190587,5.15,4.34,3.392787712058689,3.7585662130766675,3.58,3.5304715919744987 -2017,1,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,23,43,57,10,22,23,40.64171004587807,17.0,42.37722400700381,16.373718128523436,3.6110637322329207,3.55,3.14,3.4,3.3611714407866606,5.4,3.58,3.250233856366928,3.43378640776699,3.56,3.305579305053162 -2017,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,39,52,60,20,31,23,42.64171004587808,16.0,48.253965548099416,15.60267114994401,3.528805031446541,3.47,3.16,3.58,3.3726657552973345,6.82,3.43,3.2818381026037637,3.4077124183006533,3.61,3.268404983831082 -2017,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,41,58,62,21,38,34,41.358289954121915,20.0,56.62988767140931,18.57906042841146,3.4042350907519445,3.32,3.11,3.92,3.242631964809384,7.79,3.27,3.328106936416185,3.2940487804878047,3.35,3.224684980062029 -2017,1,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,46,57,59,27,45,37,40.64171004587807,18.0,53.102799099786864,22.036966471252605,3.35,3.33,3.11,6.03,3.1571250676773146,9.31,3.1,3.5533324634655536,3.220088105726872,3.27,3.2431392128891496 -2017,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,49,54,54,36,44,32,34.925130137634234,10.0,38.50921304191183,15.434295321308593,3.35,3.33,3.11,6.03,3.1571250676773146,9.31,3.1,3.5533324634655536,3.220088105726872,3.27,3.2431392128891496 -2017,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,51,44,43,33,35,17,32.0,13.0,26.737201726974735,12.831624171364584,3.35,3.33,3.11,6.03,3.1571250676773146,9.31,3.1,3.5533324634655536,3.220088105726872,3.27,3.2431392128891496 -2017,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,40,30,34,24,21,5,32.925130137634234,15.0,28.261337350703567,12.144765107102865,3.2537631578947366,3.09,2.88,3.19,2.942660119555935,5.23,2.99,3.012399199313698,3.0179977753058953,3.02,3.008320352531256 -2017,1,11,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,29,28,28,37,14,9,2,36.85026027526847,15.0,28.606636197444228,12.686859064261718,3.3424881516587677,3.21,2.94,3.11,3.1073083361232006,3.97,3.17,3.040462595419847,3.1787878787878787,3.22,3.1065076335877864 -2017,1,12,0,0,0,0,1,1,3,0.0,0.0,0.0,0.0,18,16,29,48,6,3,4,39.85026027526847,18.0,36.321452689264774,14.60267114994401,3.410743759551707,3.27,2.92,3.0,3.185567586447782,3.48,3.28,3.0336136799860407,3.2334916201117316,3.33,3.167124263261297 -2017,1,13,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,21,22,42,52,6,11,10,41.20855022939039,20.0,37.67639380941643,14.5184832356263,3.5283074935400514,3.34,3.04,3.23,3.2980773249738764,4.91,3.41,3.142083573487031,3.3894015444015446,3.34,3.230811767578125 -2017,1,14,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,43,38,39,46,12,10,13,38.283420091756156,17.0,36.651041071642545,13.28953021420573,3.5427016274864376,3.31,3.07,3.29,3.294784273678836,5.28,3.36,3.2056968313641243,3.3719957537154985,3.19,3.2399224064625853 -2017,1,15,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,39,36,38,41,11,12,9,35.283420091756156,18.0,38.44684045807112,17.831624171364584,3.5427016274864376,3.31,3.07,3.29,3.294784273678836,5.28,3.36,3.2056968313641243,3.3719957537154985,3.19,3.2399224064625853 -2017,1,16,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,38,36,32,35,12,8,7,32.925130137634234,17.0,38.59625555413995,18.060577192785157,3.5427016274864376,3.31,3.07,3.29,3.294784273678836,5.28,3.36,3.2056968313641243,3.3719957537154985,3.19,3.2399224064625853 -2017,1,17,0,0,0,0,1,1,2,0.0,0.0,0.0,0.0,35,32,26,34,9,6,10,28.641710045878078,18.0,39.00149255725141,18.831624171364584,3.5427016274864376,3.31,3.07,3.29,3.294784273678836,5.28,3.36,3.2056968313641243,3.3719957537154985,3.19,3.2399224064625853 -2017,1,18,0,0,0,0,1,1,0,0.0,0.0,0.0,0.0,32,27,28,30,5,11,11,24.0,19.0,35.898601078152964,18.831624171364584,3.5410467587672683,3.24,3.02,3.17,3.2187735191637628,3.63,3.28,3.122419326083081,3.317372954349698,3.09,3.2042828077314347 -2017,1,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,25,28,28,10,10,8,24.641710045878078,18.0,32.72788730042995,21.144765107102867,3.493675604970569,3.21,3.02,3.16,3.122001759788825,3.64,3.13,3.0903938386136884,3.237101049144119,3.1,3.1367434772006826 -2017,1,20,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,30,28,24,25,10,6,4,26.641710045878078,19.0,32.25830518256578,21.144765107102867,3.3997458703939007,3.13,2.96,3.08,3.0475,3.73,3.05,3.0488813559322034,3.161588170865279,3.02,3.0882219554488466 -2017,1,21,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,23,22,17,23,9,6,5,26.358289954121922,19.0,33.43975795557007,19.602671149944012,3.370446137105549,3.16,2.91,2.98,3.021722182849043,3.28,3.12,3.0230105688529685,3.140079787234043,2.98,3.0947735946364108 -2017,1,22,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,20,20,27,8,8,7,26.641710045878078,19.0,33.54556084510189,21.831624171364584,3.370446137105549,3.16,2.91,2.98,3.021722182849043,3.28,3.12,3.0230105688529685,3.140079787234043,2.98,3.0947735946364108 -2017,1,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,24,24,30,10,13,10,27.641710045878078,20.0,31.236748702818346,17.91581208568229,3.370446137105549,3.16,2.91,2.98,3.021722182849043,3.28,3.12,3.0230105688529685,3.140079787234043,2.98,3.0947735946364108 -2017,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,27,30,12,17,6,30.925130137634234,22.0,37.08814182603593,21.915812085682294,3.4549155405405405,3.11,2.92,3.06,3.086561365286855,3.62,3.13,2.99108993902439,3.2240449897750514,2.99,3.0150012830382344 -2017,1,25,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,28,24,25,33,10,13,9,30.358289954121922,22.0,41.96207417208033,26.83162417136458,3.5453042824943655,3.22,3.0,3.12,3.201568334578044,3.61,3.27,3.072551119766309,3.336476228525769,3.1,3.135208146151543 -2017,1,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,22,31,37,9,20,19,26.641710045878078,22.0,42.14254818960143,27.74743625704687,3.5406437499999996,3.21,3.02,3.16,3.2145738526802927,3.58,3.31,3.1113705583756346,3.3343450635386116,3.11,3.1535197322549156 -2017,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,28,36,38,18,27,21,26.641710045878078,20.0,43.250517938899264,27.205342299888017,3.589815035799523,3.34,3.14,3.34,3.326794927853083,4.01,3.27,3.254137041812488,3.4069052863436124,3.24,3.3156699346405225 -2017,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,31,37,36,21,26,19,26.641710045878078,15.0,40.065483573463055,22.976389278467447,3.4097685749086475,3.21,3.01,3.34,3.080960764587525,5.1,3.09,3.1536040172166433,3.1757853810264387,3.05,3.161383155629463 -2017,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,32,38,33,21,26,15,26.283420091756156,12.0,34.958584161440754,18.747436257046875,3.4097685749086475,3.21,3.01,3.34,3.080960764587525,5.1,3.09,3.1536040172166433,3.1757853810264387,3.05,3.161383155629463 -2017,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,37,40,30,22,24,10,26.566840183512312,10.0,32.21930802047152,14.20534229988802,3.4097685749086475,3.21,3.01,3.34,3.080960764587525,5.1,3.09,3.1536040172166433,3.1757853810264387,3.05,3.161383155629463 -2017,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,39,35,30,16,15,8,27.925130137634234,10.0,31.245417803380803,14.060577192785155,3.354131455399061,3.13,2.93,3.18,2.9448015364916773,5.19,2.9,3.04753959873284,3.084793491864831,3.01,3.072928693818373 -2017,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,32,32,36,13,13,5,33.56684018351231,13.0,34.41819316833059,13.602671149944008,3.2955541455160744,3.01,2.83,2.96,2.8548460111317255,4.52,2.85,2.8985627637130804,2.9422004264392325,2.95,2.92403882938026 -2017,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,32,42,46,12,19,12,32.925130137634234,14.0,37.16838987312732,14.747436257046875,3.332325957906098,3.1,2.93,3.18,2.917169130905157,5.34,2.92,3.006522696476965,2.9859990574929314,3.01,3.0011522729928712 -2017,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,40,45,45,16,25,18,32.85026027526847,13.0,35.3439859306973,13.747436257046875,3.2562506695232996,3.06,2.92,3.24,2.8440840840840838,5.07,2.81,3.0498006589785835,2.90814,2.97,2.9957423580786022 -2017,2,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,41,43,39,22,29,17,28.566840183512312,12.0,27.700314734320756,12.28953021420573,3.0092857142857143,2.94,2.76,2.94,2.738541487223658,4.53,2.74,2.846143520908621,2.800923744575325,2.83,2.878896991795807 -2017,2,5,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,36,35,35,36,18,22,7,27.775390412902706,15.0,25.356581152001915,11.831624171364584,3.0092857142857143,2.94,2.76,2.94,2.738541487223658,4.53,2.74,2.846143520908621,2.800923744575325,2.83,2.878896991795807 -2017,2,6,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,34,29,29,31,12,13,2,31.566840183512312,14.0,23.904304536973957,13.373718128523436,3.0092857142857143,2.94,2.76,2.94,2.738541487223658,4.53,2.74,2.846143520908621,2.800923744575325,2.83,2.878896991795807 -2017,2,7,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,35,27,24,31,7,8,1,33.20855022939039,11.0,23.71676788847278,10.60267114994401,3.021099944165271,2.88,2.64,2.68,2.668488017429194,3.07,2.73,2.7205064914249073,2.7315727002967356,2.79,2.803725088872132 -2017,2,8,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,26,19,33,47,4,7,4,31.41710045878078,7.0,24.823238966205057,7.373718128523437,3.1756315789473684,3.02,2.76,2.82,2.844131826741996,3.39,2.86,2.846151108234913,2.897005511328843,2.96,2.916253298153034 -2017,2,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,35,36,45,46,13,26,13,23.850260275268468,6.0,19.342853586301118,5.289530214205728,3.126779825412221,3.03,2.85,3.21,2.7684817115251894,5.59,2.75,2.98505625,2.817064606741573,2.95,2.9365556951423786 -2017,2,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,42,38,29,21,20,6,23.641710045878078,9.0,15.308660746548455,2.8316241713645827,3.219223861449647,3.02,2.85,3.13,2.8394649910233394,5.94,2.76,2.96234118602762,2.893119906868452,2.93,2.967211440245148 -2017,2,11,0,0,0,0,0,0,5,0.0,0.0,0.0,0.0,44,32,26,21,12,11,0,26.641710045878078,14.0,20.870807997974833,3.9158120856822913,3.034247491638796,2.87,2.64,2.73,2.6826077265973254,4.21,2.7,2.733059210526316,2.7209208103130758,2.74,2.8069719414430114 -2017,2,12,0,0,0,0,0,2,5,0.0,0.0,0.0,0.0,41,31,23,25,5,2,2,27.283420091756156,13.0,29.264773794634404,8.289530214205728,3.034247491638796,2.87,2.64,2.73,2.6826077265973254,4.21,2.7,2.733059210526316,2.7209208103130758,2.74,2.8069719414430114 -2017,2,13,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,38,33,30,29,11,17,6,24.566840183512312,11.0,28.699833165621687,12.579060428411458,3.034247491638796,2.87,2.64,2.73,2.6826077265973254,4.21,2.7,2.733059210526316,2.7209208103130758,2.74,2.8069719414430114 -2017,2,14,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,39,34,27,28,14,19,11,23.566840183512312,9.0,28.12594483599316,12.663248342729165,3.120330257406508,2.87,2.67,2.82,2.692789896670494,4.81,2.68,2.747735397088631,2.7602988953866143,2.76,2.800488513335094 -2017,2,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,36,31,33,31,13,18,14,20.925130137634234,8.0,25.81723829854853,12.434295321308593,3.0337294563843242,2.86,2.64,2.8,2.6521597751906865,3.82,2.52,2.7328810160427808,2.7209784075573547,2.74,2.7776323155216285 -2017,2,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,35,33,24,17,22,14,19.0,11.0,21.593538273180776,12.747436257046875,3.0277321814254856,2.85,2.7,2.92,2.6889878987898794,4.02,2.56,2.800572211231167,2.7630244207889794,2.75,2.807921763212555 -2017,2,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,34,22,16,15,16,10,21.0,14.0,22.731828507577664,12.060577192785157,2.96,2.79,2.57,2.72,2.559106708376781,3.65,2.42,2.6494235874099354,2.6665522174535052,2.63,2.6902755425505975 -2017,2,18,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,30,23,15,17,11,14,3,25.283420091756156,15.0,21.086882343781433,12.144765107102865,2.865483870967742,2.68,2.38,2.47,2.453865905848787,3.23,2.35,2.5031765580210212,2.5572384542884072,2.49,2.636285471275033 -2017,2,19,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,22,17,16,15,6,8,2,25.0,17.0,20.994515526669407,16.686859064261718,2.865483870967742,2.68,2.38,2.47,2.453865905848787,3.23,2.35,2.5031765580210212,2.5572384542884072,2.49,2.636285471275033 -2017,2,20,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,27,22,17,14,7,6,2,24.641710045878078,14.0,20.74659710172205,13.144765107102863,2.865483870967742,2.68,2.38,2.47,2.453865905848787,3.23,2.35,2.5031765580210212,2.5572384542884072,2.49,2.636285471275033 -2017,2,21,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,33,28,13,14,9,7,2,25.0,11.0,17.075865878265734,9.144765107102865,2.865483870967742,2.68,2.38,2.47,2.453865905848787,3.23,2.35,2.5031765580210212,2.5572384542884072,2.49,2.636285471275033 -2017,2,22,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,25,20,11,13,7,4,1,27.71657990824384,16.0,22.310323308317148,7.686859064261719,2.907182731671009,2.52,2.25,2.34,2.345234546251644,2.66,2.26,2.3377213053263315,2.494053702901689,2.38,2.4199232480533928 -2017,2,23,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,18,13,12,21,3,3,0,30.358289954121922,21.0,32.58678787098186,14.0,2.8711377741001236,2.55,2.15,2.18,2.315371819960861,2.27,2.32,2.2411962310528475,2.4279760525299348,2.37,2.4176622110832637 -2017,2,24,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,14,9,15,31,2,1,5,31.433159816487684,22.0,38.780419095029664,20.37371812852344,2.900753556324491,2.57,2.1,2.11,2.3876486486486486,2.21,2.36,2.2234450203628287,2.491274027715691,2.47,2.46455547112462 -2017,2,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,11,9,31,39,2,14,15,31.283420091756156,21.0,40.42694421399462,20.060577192785157,2.7977015755329004,2.51,2.14,2.21,2.335248993963783,2.28,2.28,2.2475787868519146,2.4397858267716535,2.37,2.382393611644597 -2017,2,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,29,33,35,15,22,12,31.358289954121922,21.0,38.14900510472125,18.602671149944012,2.7977015755329004,2.51,2.14,2.21,2.335248993963783,2.28,2.28,2.2475787868519146,2.4397858267716535,2.37,2.382393611644597 -2017,2,27,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,28,27,27,29,13,17,4,32.0,20.0,33.1828958176031,16.91581208568229,2.7977015755329004,2.51,2.14,2.21,2.335248993963783,2.28,2.28,2.2475787868519146,2.4397858267716535,2.37,2.382393611644597 -2017,2,28,0,0,0,0,3,1,6,0.0,0.0,0.0,0.0,24,20,19,24,7,7,1,29.641710045878078,18.0,35.11391857820397,14.228953021420573,2.7501661129568107,2.54,2.15,2.16,2.303873829472647,2.21,2.26,2.243564855390009,2.379670510708402,2.38,2.3981667400557756 -2017,3,1,0,0,0,0,4,2,5,0.0,0.0,0.0,0.0,17,12,18,28,2,3,4,25.641710045878078,16.0,33.65025465121526,17.060577192785157,2.7674548192771087,2.58,2.1,2.16,2.3894432393347795,2.17,2.33,2.254482313035051,2.430010758472297,2.42,2.4407949982792245 -2017,3,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,22,34,35,10,18,12,25.0,11.0,30.496983815476906,14.747436257046875,2.846305099394987,2.67,2.29,2.39,2.4450296270477523,3.21,2.38,2.4102838352371063,2.486822660098522,2.56,2.519198169997592 -2017,3,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,37,35,39,35,17,23,11,23.358289954121922,9.0,25.636318268394334,11.976389278467447,2.784871180347514,2.65,2.33,2.53,2.39475415896488,4.25,2.32,2.4322916324182144,2.44062416998672,2.54,2.5070854088203136 -2017,3,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,43,36,25,19,18,11,27.0,13.0,20.943259829308285,8.831624171364583,2.8068147684605758,2.62,2.32,2.56,2.39295566502463,3.86,2.32,2.444382309450195,2.40485401459854,2.44,2.4864051858537786 -2017,3,5,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,46,43,25,17,17,15,5,29.716579908243844,18.0,19.4515864950485,8.915812085682292,2.8068147684605758,2.62,2.32,2.56,2.39295566502463,3.86,2.32,2.444382309450195,2.40485401459854,2.44,2.4864051858537786 -2017,3,6,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,39,34,17,8,13,8,0,29.716579908243844,21.0,28.822085819848777,12.542093957158855,2.8068147684605758,2.62,2.32,2.56,2.39295566502463,3.86,2.32,2.444382309450195,2.40485401459854,2.44,2.4864051858537786 -2017,3,7,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,31,23,14,23,7,6,4,29.283420091756156,16.0,30.217920071159984,13.060577192785157,2.9779962962962965,2.72,2.32,2.32,2.4956615240766715,2.47,2.43,2.441792607131174,2.567237700059277,2.6,2.6188900157764254 -2017,3,8,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,19,16,20,25,5,12,5,26.20855022939039,10.0,21.918273950383274,7.831624171364583,2.836764578833693,2.66,2.24,2.3,2.398522684664417,2.4,2.37,2.35961915125136,2.45422942206655,2.54,2.546838602329451 -2017,3,9,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,22,16,25,27,6,9,1,23.49197032114655,5.0,17.67300515017985,3.831624171364583,2.917205240174672,2.8,2.46,2.52,2.528001552192472,3.0,2.47,2.559950248756219,2.5826870007262164,2.69,2.6728745420338647 -2017,3,10,0,0,0,0,2,0,3,0.0,0.0,0.0,0.7710469785794272,33,30,35,42,9,13,3,17.850260275268468,4.0,19.026257722727685,2.8316241713645827,2.965906515580737,2.92,2.65,2.91,2.5789525794684733,5.82,2.55,2.7499243856332707,2.647960363336086,2.84,2.7596811178788965 -2017,3,11,0,0,0,0,1,0,1,0.0,0.0,0.0,1.5420939571588543,50,45,42,42,18,23,5,21.283420091756156,3.0,19.750778960299424,2.8316241713645827,2.896112759643917,2.96,2.84,4.21,2.6553329316059053,7.75,2.52,3.168226600985222,2.682436399217221,2.92,2.875783425599732 -2017,3,12,0,0,0,0,2,0,0,0.0,0.0,0.19752537756056013,1.5420939571588543,49,44,40,39,19,23,14,17.566840183512312,2.0,18.185018415051477,3.5184832356263014,2.896112759643917,2.96,2.84,4.21,2.6553329316059053,7.75,2.52,3.168226600985222,2.682436399217221,2.92,2.875783425599732 -2017,3,13,0,0,0,0,1,0,0,0.0,1.0,0.19752537756056013,2.3131409357382813,44,42,40,41,21,25,12,18.283420091756156,2.0,19.81141853483886,3.5184832356263014,2.896112759643917,2.96,2.84,4.21,2.6553329316059053,7.75,2.52,3.168226600985222,2.682436399217221,2.92,2.875783425599732 -2017,3,14,0,0,0,0,1,0,0,0.0,1.0,0.39505075512112026,3.0841879143177087,39,41,43,43,19,28,14,14.925130137634234,1.0,14.594468911670024,1.60267114994401,2.9962926136363635,3.05,2.96,5.1,2.6875059856344774,8.02,2.5,3.3073602441392707,2.7742426273458447,3.04,2.964027488151659 -2017,3,15,0,0,0,0,0,0,0,0.0,1.0,0.19752537756056013,3.0841879143177087,42,44,42,40,27,32,13,16.283420091756156,2.0,11.785541361706942,1.60267114994401,2.853804606830818,3.04,2.92,5.19,2.6681168177240684,7.97,2.4,3.40777304964539,2.740485436893204,2.97,2.935279430322697 -2017,3,16,0,0,0,0,0,0,1,0.0,0.0,0.39505075512112026,3.0841879143177087,39,38,37,29,25,28,6,21.0,3.0,10.917096878449895,1.1447651071028644,2.9282169197396963,2.94,2.89,4.43,2.588301369863014,7.43,2.36,3.247878578820283,2.619804287045666,2.82,2.871160021845986 -2017,3,17,0,0,0,0,0,0,4,0.0,0.0,0.5925761326816804,3.855234892897136,36,34,32,20,20,19,1,23.925130137634234,3.0,12.346772795209887,1.1447651071028644,2.786261950286807,2.77,2.7,3.01,2.4534376603386354,6.47,2.35,2.8139822580645166,2.5031188658669574,2.63,2.7357802610759494 -2017,3,18,0,0,0,0,0,0,4,0.0,0.0,0.5925761326816804,4.626281871476563,38,34,28,22,12,10,0,20.283420091756156,4.0,10.11545247353582,0.9158120856822914,2.8371215880893303,2.76,2.67,2.89,2.449785809906292,4.25,2.34,2.756293769895407,2.4812586098935503,2.58,2.7261678193483876 -2017,3,19,0,0,0,0,0,0,6,0.0,0.0,0.7901015102422405,5.626281871476563,33,29,26,15,12,15,0,23.20855022939039,4.0,9.201713217532212,0.6868590642617186,2.8371215880893303,2.76,2.67,2.89,2.449785809906292,4.25,2.34,2.756293769895407,2.4812586098935503,2.58,2.7261678193483876 -2017,3,20,0,0,0,1,0,0,8,0.0,0.0,0.7901015102422405,5.626281871476563,27,28,22,12,13,7,0,23.283420091756156,7.0,10.37339006619343,0.6868590642617186,2.8371215880893303,2.76,2.67,2.89,2.449785809906292,4.25,2.34,2.756293769895407,2.4812586098935503,2.58,2.7261678193483876 -2017,3,21,0,0,0,0,0,2,6,0.0,0.0,0.5925761326816804,4.084187914317709,25,22,21,22,6,4,0,18.925130137634234,8.0,12.530252197514413,0.6868590642617186,2.911555922410235,2.89,2.74,2.9,2.5787050997782703,3.36,2.47,2.820428054953001,2.6590969899665553,2.75,2.8154442417926 -2017,3,22,0,0,0,0,2,1,5,0.0,0.0,0.0,0.7710469785794272,32,31,34,27,8,10,1,19.716579908243844,11.0,12.991592419287231,1.4579060428411457,2.9766161616161617,2.99,2.91,3.2,2.6761696969696973,6.83,2.52,3.000455373406193,2.7455460526315787,2.89,2.923975234842015 -2017,3,23,0,0,0,0,1,1,6,0.0,0.0,0.0,0.0,39,36,29,19,14,9,0,20.71657990824384,13.0,15.314169344835955,9.08418791431771,2.928535637149028,2.89,2.82,2.97,2.6076657824933687,4.03,2.45,2.8881526781948543,2.6666666666666665,2.76,2.8581652661064423 -2017,3,24,0,0,0,0,1,1,5,0.0,0.0,0.0,0.0,35,28,13,15,9,4,1,21.716579908243844,13.0,19.468519157641573,8.915812085682292,2.992642487046632,2.85,2.62,2.67,2.5743096936634493,2.82,2.45,2.7252623924372803,2.6400240192153728,2.6899999999999995,2.804930440331844 -2017,3,25,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,27,18,15,20,3,1,3,21.358289954121922,11.0,19.30997047251486,7.373718128523437,2.85511645379414,2.85,2.55,2.59,2.563473015873016,2.68,2.44,2.693803012746234,2.6072514619883043,2.67,2.821383966903442 -2017,3,26,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,32,24,14,20,4,1,1,23.358289954121922,11.0,20.094355497788577,7.373718128523437,2.85511645379414,2.85,2.55,2.59,2.563473015873016,2.68,2.44,2.693803012746234,2.6072514619883043,2.67,2.821383966903442 -2017,3,27,0,0,0,0,2,2,5,0.0,0.0,0.0,0.0,29,18,14,18,2,2,2,20.71657990824384,11.0,19.43196007831373,6.60267114994401,2.85511645379414,2.85,2.55,2.59,2.563473015873016,2.68,2.44,2.693803012746234,2.6072514619883043,2.67,2.821383966903442 -2017,3,28,0,0,0,0,3,3,6,0.0,0.0,0.0,0.0,27,19,17,17,2,3,1,20.283420091756156,9.0,20.78189364163832,8.373718128523437,2.9584417910447764,2.9,2.68,2.72,2.611874656404618,2.94,2.55,2.791081218274112,2.666606660666067,2.74,2.860700629779577 -2017,3,29,0,0,0,0,3,3,5,0.0,0.0,0.0,0.0,23,17,20,18,2,2,2,18.716579908243844,5.0,18.822122572193603,5.9763892784674475,2.8932535885167465,2.92,2.71,2.77,2.565679590967192,3.1,2.45,2.816099290780142,2.6067253521126763,2.72,2.855964769015399 -2017,3,30,0,0,0,0,3,2,1,0.0,0.0,0.0,0.0,26,25,19,20,6,1,3,20.433159816487684,8.0,16.936206702099117,4.289530214205729,2.9156250000000004,3.01,2.8,2.89,2.6274190382728166,3.16,2.52,2.90250136239782,2.6865934065934067,2.78,2.9359675324675325 -2017,3,31,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,29,27,21,20,5,6,2,20.0,10.0,20.957478002259506,9.0,2.957756448710258,2.98,2.81,2.92,2.6208213193534298,3.71,2.52,2.9100608234560204,2.690619808306709,2.77,2.908355065195587 -2017,4,1,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,29,24,20,19,5,8,2,18.358289954121922,7.0,20.792663673709892,13.28953021420573,3.0293538246594482,2.96,2.84,2.9,2.640794266945357,3.9,2.5,2.9215046647862875,2.6917897480451782,2.81,2.924005241319065 -2017,4,2,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,21,18,18,16,5,4,3,20.0,5.0,17.99356740921689,9.518483235626302,3.0293538246594482,2.96,2.84,2.9,2.640794266945357,3.9,2.5,2.9215046647862875,2.6917897480451782,2.81,2.924005241319065 -2017,4,3,0,0,0,0,4,1,3,0.0,0.0,0.0,0.0,22,16,15,14,5,4,1,22.0,7.0,21.847826151971677,5.831624171364583,3.0293538246594482,2.96,2.84,2.9,2.640794266945357,3.9,2.5,2.9215046647862875,2.6917897480451782,2.81,2.924005241319065 -2017,4,4,0,0,0,0,5,2,4,0.0,0.0,0.0,0.0,26,14,13,15,1,1,1,19.358289954121922,6.0,25.19701097765291,8.289530214205728,2.9927504553734066,3.0,2.82,2.86,2.6984165698799845,3.75,2.6,2.9003636914684043,2.7656701030927837,2.89,2.9036981859609146 -2017,4,5,0,0,0,0,4,2,2,0.0,0.0,0.0,0.0,23,13,18,18,2,1,4,16.925130137634234,3.0,22.197008983854822,7.434295321308593,3.0888372093023255,3.15,2.89,2.93,2.7736785418392707,3.82,2.66,2.966905019305019,2.827068965517241,3.01,2.963266235830067 -2017,4,6,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7710469785794272,22,18,21,20,5,12,6,14.641710045878078,5.0,15.56710489684122,3.747436257046874,3.2044571145265244,3.24,3.03,3.09,2.892922252010724,3.33,2.74,3.085188509874327,2.9509187279151945,3.14,3.0892455284552844 -2017,4,7,0,0,0,0,0,0,0,0.0,0.0,0.19752537756056013,2.3131409357382813,20,23,22,18,11,14,4,17.074869862365762,8.0,10.76018663013497,2.3737181285234374,3.1683017312448474,3.12,3.06,3.17,2.832928679817906,3.5,2.66,3.1209281961471103,2.8788515782404303,3.01,3.116320744956027 -2017,4,8,0,0,0,0,0,0,2,0.0,0.0,0.0,1.5420939571588543,23,21,17,9,11,12,1,22.433159816487684,12.0,11.588452293628771,1.6868590642617187,3.101766648321409,3.06,2.95,2.98,2.7850240577385725,3.33,2.7,3.02172759350741,2.8194466600199397,2.92,3.0601578750467637 -2017,4,9,0,0,0,1,0,0,5,0.0,0.0,0.0,0.0,18,16,8,5,7,6,0,22.074869862365766,13.0,20.67452116778881,4.686859064261719,3.101766648321409,3.06,2.95,2.98,2.7850240577385725,3.33,2.7,3.02172759350741,2.8194466600199397,2.92,3.0601578750467637 -2017,4,10,0,0,0,1,1,0,5,0.0,0.0,0.0,0.0,10,8,2,12,3,2,0,22.074869862365766,10.0,21.353931527257977,6.060577192785155,3.101766648321409,3.06,2.95,2.98,2.7850240577385725,3.33,2.7,3.02172759350741,2.8194466600199397,2.92,3.0601578750467637 -2017,4,11,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,4,3,12,17,0,0,1,21.074869862365762,9.0,18.55270914293997,2.8316241713645827,3.1308673978065804,3.03,2.86,2.87,2.7858979297063073,3.11,2.7,2.9116226173314117,2.8598153034300795,2.91,3.0046425748164878 -2017,4,12,0,0,0,0,3,2,3,0.0,0.0,0.0,1.5420939571588543,8,6,15,13,0,1,1,19.358289954121922,7.0,12.669608781590652,1.9158120856822916,3.08690587138863,2.94,2.75,2.82,2.7368160152526215,3.2,2.65,2.823924547627177,2.8185563114134546,2.85,2.918694499668655 -2017,4,13,0,0,0,0,3,2,5,0.0,0.0,0.19752537756056013,3.0841879143177087,17,14,14,9,2,1,0,19.791449770609606,10.0,9.863759788800955,1.3737181285234372,3.1378125,2.96,2.8,2.79,2.756204118173679,3.08,2.65,2.8392044467604656,2.8104834810636583,2.85,2.892778454047474 -2017,4,14,0,0,0,1,3,3,5,0.0,0.0,0.0,1.5420939571588543,18,14,8,5,2,0,0,22.074869862365766,12.0,13.954334713108071,1.2289530214205728,3.1183483483483485,2.88,2.63,2.49,2.726058859223301,2.66,2.6,2.7193848204932864,2.8066196562362276,2.78,2.895305062407939 -2017,4,15,0,0,1,3,4,4,7,0.0,0.0,0.0,1.5420939571588543,16,12,2,3,1,0,0,19.716579908243844,9.0,15.70901148221675,1.6868590642617187,3.1183483483483485,2.88,2.63,2.49,2.726058859223301,2.66,2.6,2.7193848204932864,2.8066196562362276,2.78,2.895305062407939 -2017,4,16,0,1,1,1,6,5,8,0.0,0.0,0.39505075512112026,2.3131409357382813,2,1,2,7,0,0,0,17.71657990824384,8.0,14.054065091792138,1.9158120856822916,3.1183483483483485,2.88,2.63,2.49,2.726058859223301,2.66,2.6,2.7193848204932864,2.8066196562362276,2.78,2.895305062407939 -2017,4,17,0,0,0,0,5,3,6,0.0,0.0,0.39505075512112026,3.0841879143177087,3,3,8,10,0,0,0,17.074869862365762,7.0,11.260946366897796,1.4579060428411457,3.1183483483483485,2.88,2.63,2.49,2.726058859223301,2.66,2.6,2.7193848204932864,2.8066196562362276,2.78,2.895305062407939 -2017,4,18,0,0,0,0,4,4,5,0.0,0.0,0.7901015102422405,4.084187914317709,17,12,8,8,2,0,0,14.35828995412192,5.0,10.74263376341552,0.4579060428411457,3.1087430167597767,2.98,2.74,2.84,2.749142590866729,3.17,2.59,2.8457278377494273,2.7786666666666666,2.87,2.956927437641723 -2017,4,19,0,0,1,2,4,6,7,0.0,0.0,0.0,4.084187914317709,22,16,5,9,3,0,0,17.358289954121922,5.0,11.865265704499583,0.4579060428411457,3.095629546726357,2.95,2.83,2.98,2.736778033794163,3.44,2.56,2.920551363900174,2.781387559808612,2.86,2.9706819282945736 -2017,4,20,0,0,2,1,5,7,9,0.0,0.0,0.19752537756056013,3.855234892897136,14,8,6,11,0,0,0,18.074869862365762,6.0,15.894549348131036,0.9158120856822914,3.1527721179624666,2.96,2.82,2.92,2.7632968954962833,2.98,2.62,2.9123559423769505,2.8283305227655986,2.9,3.0414956796884507 -2017,4,21,0,0,0,0,7,4,9,0.0,1.0,0.19752537756056013,3.855234892897136,19,11,14,16,0,0,1,14.35828995412192,2.0,19.1561838412102,1.6868590642617187,3.0379987171263627,2.96,2.79,2.86,2.7725405405405406,2.89,2.53,2.8789342327150087,2.803568945538818,2.87,2.9868184478520425 -2017,4,22,0,0,0,0,6,3,4,0.0,2.0,0.39505075512112026,4.626281871476563,20,14,16,14,2,4,4,15.074869862365762,3.0,16.843617576499874,2.2895302142057288,3.0146588235294116,2.89,2.68,2.76,2.672542072630647,2.82,2.48,2.792966501240695,2.7116888374783112,2.78,2.942860907058448 -2017,4,23,0,0,0,0,4,0,0,0.0,0.0,0.7901015102422405,5.39732885005599,15,14,13,14,6,9,4,17.71657990824384,4.0,12.550111955085844,1.8316241713645829,3.0146588235294116,2.89,2.68,2.76,2.672542072630647,2.82,2.48,2.792966501240695,2.7116888374783112,2.78,2.942860907058448 -2017,4,24,0,0,0,0,3,0,0,0.0,0.0,0.39505075512112026,4.626281871476563,13,15,10,10,7,5,2,19.074869862365766,8.0,13.660897213128841,0.6868590642617186,3.0146588235294116,2.89,2.68,2.76,2.672542072630647,2.82,2.48,2.792966501240695,2.7116888374783112,2.78,2.942860907058448 -2017,4,25,0,0,0,0,2,0,4,0.0,0.0,0.0,3.0841879143177087,17,14,5,11,3,2,0,18.433159816487684,7.0,17.060928342963045,1.9158120856822916,2.993269871489767,2.81,2.59,2.74,2.6256117908787537,3.26,2.45,2.713300417246175,2.667169642857143,2.74,2.859501701507049 -2017,4,26,0,0,1,0,3,2,7,0.0,0.0,0.19752537756056013,2.3131409357382813,12,7,1,20,1,0,1,17.433159816487684,5.0,18.682357791188064,3.2895302142057288,2.9765056818181814,2.83,2.58,2.63,2.6317473338802295,2.75,2.45,2.675422335177157,2.656396396396396,2.76,2.8768748510131106 -2017,4,27,0,0,1,0,6,2,2,0.0,0.0,0.39505075512112026,3.0841879143177087,8,2,8,23,0,1,3,20.074869862365762,4.0,18.88291267848896,1.3737181285234372,2.9717780661907853,2.94,2.58,2.59,2.6840021344717186,3.17,2.51,2.6910354113370136,2.718685483870968,2.85,2.9376622350928 -2017,4,28,2,3,0,0,10,4,7,0.0,0.0,0.0,3.0841879143177087,1,1,14,21,0,0,1,18.716579908243844,5.0,23.137694354607227,3.2895302142057288,3.0399612903225806,2.93,2.52,2.53,2.700717821782179,2.9,2.48,2.6861223556317895,2.7350070854983466,2.85,2.958924979887369 -2017,4,29,3,4,0,0,12,9,11,0.0,0.0,0.0,0.0,0,1,14,19,0,0,2,17.641710045878078,3.0,23.969196484083277,8.892201364149738,3.0399612903225806,2.93,2.52,2.53,2.700717821782179,2.9,2.48,2.6861223556317895,2.7350070854983466,2.85,2.958924979887369 -2017,4,30,0,1,1,0,12,9,3,0.0,1.0,0.0,0.0,12,6,12,18,0,0,4,16.641710045878078,2.0,18.920708311393245,5.434295321308593,3.0399612903225806,2.93,2.52,2.53,2.700717821782179,2.9,2.48,2.6861223556317895,2.7350070854983466,2.85,2.958924979887369 -2017,5,1,0,1,0,0,10,2,2,0.0,2.0,0.39505075512112026,2.3131409357382813,14,4,10,19,0,2,2,19.641710045878078,0.0,15.42777443151998,3.060577192785156,3.051646017699115,2.91,2.71,2.69,2.749121171770972,2.8,2.57,2.8178612110311745,2.7728914785142025,2.88,3.028065209602293 -2017,5,2,0,0,0,0,6,1,4,0.0,4.0,1.1851522653633608,3.855234892897136,8,4,17,14,1,3,1,14.283420091756156,0.0,14.22298391955317,1.1447651071028644,3.074293059125964,2.99,2.75,2.79,2.7293329912775786,2.97,2.53,2.854154210718192,2.7929536423841057,2.88,3.030566014965001 -2017,5,3,0,0,0,0,4,1,6,0.0,6.0,1.382677642923921,6.939422807214845,11,10,18,15,2,3,1,5.208550229390393,0.0,13.561396719364744,0.9158120856822914,3.058852119958635,2.95,2.8,2.82,2.6799898682877408,3.21,2.54,2.87847143864598,2.7298515376458115,2.87,3.009502466525722 -2017,5,4,0,0,0,0,4,0,1,0.7165799082438428,6.0,1.9752537756056012,10.023610721532553,16,15,17,12,3,5,3,1.6417100458780784,0.0,9.067314212410874,1.3737181285234372,3.062045158488927,2.94,2.81,2.84,2.7199999999999998,3.29,2.53,2.8777036901717206,2.778365328679465,2.83,2.9787680756395996 -2017,5,5,0,0,0,0,3,0,1,0.0,1.0,1.9752537756056012,11.79465770011198,16,12,15,8,3,10,2,11.074869862365762,1.0,5.085793995863135,0.4579060428411457,3.0994523326572008,2.95,2.78,2.76,2.7503212348769295,3.08,2.56,2.828865142124385,2.8219528371407514,2.83,2.974170067131763 -2017,5,6,0,0,0,0,1,0,2,0.0,0.0,1.5889387139031994,9.939422807214843,8,9,15,6,5,9,0,17.71657990824384,10.0,3.939495870810922,0.22895302142057286,3.0243564993564998,2.93,2.78,2.81,2.689049145299145,2.98,2.48,2.846973627323822,2.748193832599119,2.78,2.9266871360508206 -2017,5,7,0,0,0,1,1,0,4,0.0,0.0,0.0,0.4579060428411457,10,15,17,5,6,7,0,15.716579908243842,12.0,6.01079801170479,1.7710469785794272,3.0243564993564998,2.93,2.78,2.81,2.689049145299145,2.98,2.48,2.846973627323822,2.748193832599119,2.78,2.9266871360508206 -2017,5,8,0,0,0,2,2,1,5,0.0,0.0,0.0,0.22895302142057286,18,19,18,3,6,5,0,13.641710045878078,7.0,8.249381473987015,1.7710469785794272,3.0243564993564998,2.93,2.78,2.81,2.689049145299145,2.98,2.48,2.846973627323822,2.748193832599119,2.78,2.9266871360508206 -2017,5,9,0,0,0,3,3,3,6,0.0,0.0,0.0,0.0,21,17,15,4,5,1,0,10.283420091756156,4.0,9.040943241951586,6.313140935738281,2.984247311827957,2.91,2.84,2.93,2.6787687265917604,3.2,2.43,2.886095755182626,2.7087402135231313,2.73,2.893110286774147 -2017,5,10,0,0,0,3,5,6,9,0.0,0.0,0.0,0.0,17,14,8,4,2,0,0,7.641710045878078,6.0,9.676509383245808,7.144765107102864,3.0404761904761903,2.95,2.84,2.91,2.7132848837209305,3.17,2.51,2.9015579710144928,2.7445007235890015,2.78,2.9498366954851103 -2017,5,11,0,0,0,1,7,6,10,0.0,0.0,0.5925761326816804,1.5420939571588543,14,14,8,6,2,0,0,12.433159816487684,3.0,7.748187421539892,2.3737181285234374,3.2066075292081355,3.08,2.92,2.96,2.7962336203669036,3.14,2.61,2.999940072543763,2.825982478097622,2.89,3.030156981547783 -2017,5,12,0,0,0,0,5,3,7,0.0,0.0,1.5889387139031994,5.39732885005599,14,13,8,5,4,1,0,18.433159816487684,6.0,6.0675895559273325,0.9158120856822914,3.2172473684210523,3.12,2.92,2.98,2.864828786999419,3.14,2.66,3.023786179450072,2.928195413758724,2.96,3.0980292696788863 -2017,5,13,0,0,0,0,5,2,5,0.0,0.0,0.5925761326816804,7.397328850055991,16,15,6,3,3,1,0,19.433159816487684,8.0,8.848261531014957,0.22895302142057286,3.2335446685878964,3.11,2.9,2.91,2.8732722929936303,3.15,2.73,3.0431952362853165,2.9011680327868854,2.93,3.145424453951813 -2017,5,14,0,0,0,2,5,2,7,0.0,0.0,0.39505075512112026,5.313140935738281,17,10,4,1,1,0,0,17.71657990824384,10.0,10.05825273238398,0.22895302142057286,3.2335446685878964,3.11,2.9,2.91,2.8732722929936303,3.15,2.73,3.0431952362853165,2.9011680327868854,2.93,3.145424453951813 -2017,5,15,0,0,1,5,6,4,9,0.0,0.0,0.0,2.771046978579427,13,8,4,1,1,0,0,18.641710045878078,11.0,9.024162307393288,1.2289530214205728,3.2335446685878964,3.11,2.9,2.91,2.8732722929936303,3.15,2.73,3.0431952362853165,2.9011680327868854,2.93,3.145424453951813 -2017,5,16,0,0,4,6,8,7,10,0.0,0.0,0.0,0.0,4,4,0,1,0,0,0,19.358289954121922,11.0,11.739335954911983,4.686859064261719,3.2387973795039775,3.09,2.88,2.9,2.8730558276199805,3.57,2.73,3.0000182149362473,2.9431249999999998,2.92,3.149274824340448 -2017,5,17,4,4,8,4,11,9,11,0.0,0.0,0.0,0.0,0,0,0,3,0,0,0,17.074869862365762,9.0,15.935854929655813,3.1447651071028644,3.1358806978052898,3.06,2.88,3.01,2.7926048171275646,3.47,2.68,3.0284938067712632,2.8160165662650605,2.89,3.1019627411842983 -2017,5,18,10,10,9,3,12,11,14,0.0,0.0,0.0,0.7710469785794272,0,0,1,6,0,0,0,11.358289954121922,4.0,20.208332161976955,3.1447651071028644,3.08,3.05,2.87,3.11,2.757931904161412,3.88,2.6,3.017914547304171,2.77839863713799,2.85,3.041165985282093 -2017,5,19,9,9,2,1,13,12,13,0.0,1.0,0.0,0.7710469785794272,0,0,10,11,0,0,0,8.0,0.0,18.91010017572672,3.831624171364583,3.1368556701030927,3.02,2.79,3.0,2.7348643006263047,3.25,2.56,2.9480090497737557,2.7684170305676856,2.84,3.0277242548382537 -2017,5,20,0,0,1,0,11,12,10,0.0,5.0,0.39505075512112026,3.0841879143177087,5,5,7,11,0,0,0,6.358289954121921,0.0,14.125717144251093,3.060577192785156,3.0652875280059746,3.05,2.75,2.75,2.7565301391035546,2.99,2.61,2.8740172059098557,2.7800717875089735,2.85,3.0394800672430358 -2017,5,21,0,0,1,0,7,7,7,0.0,6.0,1.382677642923921,6.939422807214845,11,8,5,12,1,0,0,3.0,0.0,11.191688998866791,0.9158120856822914,3.0652875280059746,3.05,2.75,2.75,2.7565301391035546,2.99,2.61,2.8740172059098557,2.7800717875089735,2.85,3.0394800672430358 -2017,5,22,0,0,0,0,8,3,5,1.0748698623657642,6.0,1.9752537756056012,10.252563742953125,13,8,6,9,0,1,0,0.0,0.0,9.41331686987789,0.6868590642617186,3.0652875280059746,3.05,2.75,2.75,2.7565301391035546,2.99,2.61,2.8740172059098557,2.7800717875089735,2.85,3.0394800672430358 -2017,5,23,0,0,0,0,6,3,5,2.074869862365764,7.0,2.3703045307267216,11.79465770011198,6,6,5,10,1,0,1,0.6417100458780786,0.0,8.468773765657877,0.9158120856822914,3.157665615141956,3.12,2.83,2.9,2.865765352887259,3.01,2.72,2.955385852090032,2.9177622377622376,2.97,3.105751316883837 -2017,5,24,0,0,0,0,7,1,3,0.0,4.0,2.77409097926656,12.565704678691407,5,4,6,10,1,1,1,12.0,0.0,4.817420797533858,0.4579060428411457,3.1640990990990994,3.13,2.84,2.93,2.885791015625,3.03,2.7,2.9604208512673362,2.954413892908828,3.0,3.101577646574214 -2017,5,25,0,0,0,0,4,0,7,0.0,0.0,2.1727791531661613,12.939422807214845,11,7,5,6,1,3,0,10.35828995412192,5.0,7.23069367093386,0.0,3.1027403846153847,3.03,2.75,2.89,2.8037643207855973,2.95,2.63,2.869761631904653,2.8588322246858833,2.87,3.0054786889493457 -2017,5,26,0,0,0,1,5,3,12,0.0,0.0,1.580203020484481,8.855234892897137,10,3,3,2,0,0,0,5.358289954121921,5.0,8.38101940105109,0.22895302142057286,3.154698147041243,3.01,2.67,2.76,2.823355855855856,2.81,2.66,2.8020708511650025,2.892792511700468,2.89,3.0051132153149447 -2017,5,27,0,0,1,2,7,8,17,0.3582899541219214,0.0,1.382677642923921,7.6262818714765634,6,3,1,2,0,0,0,1.0,3.0,9.227640169156489,0.4579060428411457,3.076656233698487,2.98,2.44,2.44,2.7320915331807782,2.54,2.59,2.619084094316478,2.780889960543621,2.83,3.0159316517493897 -2017,5,28,0,0,2,2,9,7,14,1.2834200917561571,1.0,1.7777283980450411,8.710469785794272,5,2,0,2,0,0,0,0.3582899541219214,1.0,7.325103267110659,0.4579060428411457,3.076656233698487,2.98,2.44,2.44,2.7320915331807782,2.54,2.59,2.619084094316478,2.780889960543621,2.83,3.0159316517493897 -2017,5,29,0,0,2,2,11,7,10,0.6417100458780786,1.0,2.287073296470665,11.481516764373698,13,6,1,4,0,0,0,2.358289954121921,0.0,5.906872947675628,0.4579060428411457,3.076656233698487,2.98,2.44,2.44,2.7320915331807782,2.54,2.59,2.619084094316478,2.780889960543621,2.83,3.0159316517493897 -2017,5,30,0,0,1,1,10,8,10,0.6417100458780786,2.0,2.919448031619511,11.252563742953125,10,6,2,5,0,0,0,9.0,1.0,3.934298437945593,0.4579060428411457,3.076656233698487,2.98,2.44,2.44,2.7320915331807782,2.54,2.59,2.619084094316478,2.780889960543621,2.83,3.0159316517493897 -2017,5,31,0,1,1,1,10,8,11,0.0,0.0,2.936919418456948,10.481516764373698,5,1,3,3,0,0,0,5.0,2.0,2.326964012409665,0.4579060428411457,3.02928529238039,2.9,2.42,2.56,2.697891671520093,2.49,2.45,2.646756077116513,2.729372791519434,2.75,2.9513698245614037 -2017,6,1,0,1,0,2,10,7,11,0.0,0.0,2.4665512124651725,10.481516764373698,2,2,3,2,0,0,0,6.999999999999999,0.0,2.3209531099229403,0.22895302142057286,3.0027425742574256,2.79,2.36,2.42,2.6529104477611942,2.46,2.39,2.5801012507444905,2.705903801396431,2.63,2.8679493336535 -2017,6,2,0,0,1,6,9,8,11,0.0,3.0,2.18151484658488,10.481516764373698,7,5,1,0,0,0,0,4.641710045878078,0.0,2.5210756753376278,0.22895302142057286,2.878214442013129,2.73,2.34,2.37,2.4987657196087563,2.36,2.27,2.518829559363525,2.546872998932764,2.55,2.790098629435122 -2017,6,3,0,0,4,8,9,9,12,0.0,5.0,3.094646193550342,14.023610721532554,9,5,0,0,0,0,0,8.0,0.0,2.3452656167724673,0.0,2.743484098939929,2.71,2.06,1.93,2.3911064572425826,1.96,2.23,2.210465591915303,2.4234285714285715,2.53,2.739806193157211 -2017,6,4,0,0,9,8,9,9,12,0.0,5.0,4.524429708947348,16.25256374295313,7,6,0,0,0,0,0,9.0,0.0,1.0395865952700862,0.0,2.743484098939929,2.71,2.06,1.93,2.3911064572425826,1.96,2.23,2.210465591915303,2.4234285714285715,2.53,2.739806193157211 -2017,6,5,0,0,4,8,10,8,12,0.0,4.0,3.8264713116712485,16.710469785794274,9,3,0,0,0,0,0,8.283420091756156,0.0,1.3081937990353871,0.0,2.743484098939929,2.71,2.06,1.93,2.3911064572425826,1.96,2.23,2.210465591915303,2.4234285714285715,2.53,2.739806193157211 -2017,6,6,0,0,1,5,9,9,13,0.0,3.0,4.200447089284073,16.4815167643737,13,7,1,0,0,0,0,4.358289954121921,0.0,1.2882517640627065,0.0,2.912893772893773,2.84,2.14,2.15,2.5834592868547097,2.51,2.42,2.3811536174430135,2.6717607973421926,2.68,2.8172008957133716 -2017,6,7,0,0,0,3,6,4,12,0.6417100458780786,2.0,5.025460934550321,15.710469785794272,6,7,3,0,1,1,0,1.7165799082438427,0.0,0.373333442327629,0.0,2.9947234513274337,2.85,2.15,2.23,2.669688818565401,2.38,2.49,2.392689898198904,2.7301683029453017,2.72,2.8521587301587297 -2017,6,8,0,0,1,4,5,3,11,0.0,1.0,4.939337031562953,14.168375828635417,5,6,2,0,1,1,0,8.716579908243842,2.0,0.6851529631926928,0.0,3.0326605504587154,2.86,2.17,2.2,2.7136774553571428,2.27,2.52,2.325074506645187,2.77636678200692,2.75,2.8796724784096464 -2017,6,9,0,0,4,6,7,3,10,0.0,1.0,5.080622349453124,15.168375828635417,3,2,0,0,0,0,0,12.074869862365762,2.0,1.5138145285275622,0.0,2.9291989389920423,2.83,2.14,2.15,2.6152918502202644,2.16,2.42,2.3255069370330843,2.6956299840510365,2.71,2.816377092511013 -2017,6,10,2,4,8,11,10,7,13,0.0,0.0,4.460061864896387,14.08418791431771,0,0,0,0,0,0,0,13.791449770609606,4.0,3.056441632657456,0.0,2.863107913669065,2.84,2.23,2.5,2.4964534661049407,2.84,2.35,2.4498329134067096,2.5231863636363636,2.67,2.8493817265857566 -2017,6,11,8,9,12,11,12,10,15,0.0,0.0,2.1685332272101068,12.855234892897135,0,0,0,0,0,0,0,10.791449770609606,7.0,2.971958160279966,0.0,2.863107913669065,2.84,2.23,2.5,2.4964534661049407,2.84,2.35,2.4498329134067096,2.5231863636363636,2.67,2.8493817265857566 -2017,6,12,13,12,15,11,13,13,16,0.0,0.0,1.729405511216809,9.542093957158855,0,0,0,0,0,0,0,12.149739724731528,7.0,3.5453097594622167,0.0,2.863107913669065,2.84,2.23,2.5,2.4964534661049407,2.84,2.35,2.4498329134067096,2.5231863636363636,2.67,2.8493817265857566 -2017,6,13,13,13,13,12,14,14,17,0.0,0.0,1.1634349525698695,8.542093957158855,0,0,0,0,0,0,0,11.433159816487684,2.0,7.266454965185295,0.22895302142057286,2.938203781512605,2.93,2.28,2.76,2.593322203672788,3.3,2.33,2.6490053639846742,2.6385817060637207,2.77,2.9272063640617687 -2017,6,14,5,8,11,11,14,13,18,0.0,2.0,1.580203020484481,10.626281871476563,1,0,0,0,0,0,0,11.358289954121922,0.0,3.917517503387297,0.22895302142057286,2.8569782608695653,2.85,2.05,2.18,2.486054888507719,2.19,2.27,2.3991854616258315,2.5657606263982102,2.68,2.838579517877366 -2017,6,15,0,3,11,10,13,13,19,0.0,5.0,3.147424421594189,13.626281871476563,4,0,0,0,0,0,0,12.358289954121922,0.0,1.5977925066288803,0.0,2.8765325077399377,2.77,2.01,2.02,2.5899403396053238,2.1,2.37,2.2794510257151113,2.677438148443735,2.62,2.7929836457917827 -2017,6,16,0,3,11,10,12,12,18,0.0,9.0,5.478784094196592,16.39732885005599,3,1,0,0,0,0,0,8.0,0.0,0.9545069108032554,0.0,2.9140449438202247,2.78,2.08,2.1,2.6514358974358974,2.16,2.36,2.3165432960893853,2.7377848101265823,2.64,2.832616551056622 -2017,6,17,1,6,11,8,13,12,18,0.0,10.0,5.873834849317712,18.39732885005599,1,0,0,0,0,0,0,7.208550229390393,0.0,0.9558518605359503,0.0,3.0961148977604673,2.84,2.07,2.12,2.6829101283880172,2.45,2.46,2.3013752698119028,2.820095328884652,2.71,2.867610703291499 -2017,6,18,6,11,9,4,15,13,18,0.0,13.0,5.82530254722992,19.710469785794274,0,0,0,1,0,0,0,3.8502602752684716,0.0,0.7272635739269429,0.0,3.0961148977604673,2.84,2.07,2.12,2.6829101283880172,2.45,2.46,2.3013752698119028,2.820095328884652,2.71,2.867610703291499 -2017,6,19,9,11,5,4,14,11,16,2.074869862365764,14.0,6.9317153395979805,23.023610721532553,0,0,0,1,0,0,0,1.2834200917561571,0.0,0.14713233017376148,0.0,3.0961148977604673,2.84,2.07,2.12,2.6829101283880172,2.45,2.46,2.3013752698119028,2.820095328884652,2.71,2.867610703291499 -2017,6,20,9,7,3,6,11,10,16,1.3582899541219213,14.0,11.107733417764038,25.023610721532553,0,0,0,1,0,0,0,1.2834200917561571,0.0,0.0,0.0,3.359571911378145,2.77,2.08,2.42,2.6852687776141386,2.67,2.33,2.361892016612829,3.1668095496473145,2.68,2.8089722061378115 -2017,6,21,5,6,4,8,13,9,15,0.0,13.0,11.694379064482021,25.481516764373698,0,0,0,1,0,0,0,5.283420091756157,0.0,0.0,0.0,3.5251606864274567,2.76,2.2,2.44,2.6469418029669076,2.78,2.34,2.402282507015903,3.4282903366856146,2.7,2.803762886597938 -2017,6,22,3,5,8,9,13,10,16,0.0,12.0,9.13515492043782,23.939422807214843,0,0,0,0,0,0,0,3.9251301376342353,0.0,0.757411861330811,0.0,3.4303023598820057,2.79,2.13,2.32,2.643658940397351,2.85,2.51,2.3794100991033504,3.283034095813552,2.71,2.8212059339607594 -2017,6,23,8,8,7,6,15,13,19,1.0748698623657642,11.0,4.9643415192701585,22.481516764373698,0,0,0,2,0,0,0,1.2834200917561571,0.0,3.4458626330270397,0.0,3.0487754347021827,2.72,2.13,2.29,2.5857762134123745,2.98,2.36,2.376265036481956,2.8512116316639737,2.62,2.7682191396945495 -2017,6,24,11,10,2,1,15,11,13,5.149739724731528,11.0,5.596716254419004,23.107798635850262,0,0,0,3,0,0,0,0.0,0.0,2.2976900719289244,0.0,2.9187603305785124,2.69,1.94,2.07,2.52819911654774,2.39,2.32,2.1394759647935,2.610045641259699,2.62,2.7724683464961766 -2017,6,25,5,4,0,1,13,7,13,8.358289954121922,12.0,6.5496462038516325,22.87884561442969,0,0,2,4,0,0,0,0.0,0.0,1.41426498733041,0.0,2.9187603305785124,2.69,1.94,2.07,2.52819911654774,2.39,2.32,2.1394759647935,2.610045641259699,2.62,2.7724683464961766 -2017,6,26,1,1,0,1,10,5,13,1.6417100458780784,10.0,7.914067767469176,21.107798635850262,0,1,3,4,0,0,0,0.0,0.0,0.03854636434573283,0.0,2.9187603305785124,2.69,1.94,2.07,2.52819911654774,2.39,2.32,2.1394759647935,2.610045641259699,2.62,2.7724683464961766 -2017,6,27,0,1,0,2,9,6,14,0.6417100458780786,8.0,8.202695428932097,20.023610721532556,1,2,3,2,0,0,0,2.6417100458780784,0.0,0.0,0.0,2.9410555555555558,2.78,2.11,2.03,2.643356056633455,2.21,2.32,2.432908163265306,2.7277319587628868,2.68,2.8569997169544292 -2017,6,28,0,1,1,6,8,7,15,0.0,6.0,5.944086457997088,18.710469785794274,2,1,1,1,0,0,0,4.641710045878078,0.0,0.331466074960561,0.0,2.919208570179274,2.84,2.13,2.05,2.6142543859649128,2.32,2.29,2.4228257739380847,2.70755,2.74,2.8640335087233453 -2017,6,29,2,4,7,7,11,9,17,0.0,5.0,4.26681683953893,18.39732885005599,1,0,0,0,0,0,0,2.0,0.0,0.8100644800948835,0.0,2.9275514626218855,2.85,2.23,2.31,2.6259078467153283,2.7,2.3,2.4718233522917368,2.685283307810107,2.77,2.884723609991942 -2017,6,30,7,10,9,5,13,13,18,0.6417100458780786,6.0,3.9990418470970868,17.939422807214847,0,0,0,0,0,0,0,0.0,0.0,1.6056518593263793,0.0,2.925302798982188,2.85,2.23,2.49,2.5956615384615382,3.17,2.27,2.4253215767634857,2.6772041166380793,2.75,2.8599812088944567 -2017,7,1,9,10,8,5,16,14,16,1.2834200917561571,6.0,5.662909819382495,18.4815167643737,0,0,0,0,0,0,0,2.0,0.0,0.03854636434573283,0.0,2.7608180839612486,2.69,2.09,2.25,2.4303343055867175,2.65,2.08,2.3011714317499163,2.4915249780893953,2.63,2.776091807698068 -2017,7,2,11,11,7,7,15,12,17,1.6417100458780784,6.0,8.611381835661991,17.939422807214847,0,0,0,0,0,0,0,1.2834200917561571,0.0,0.0,0.0,2.7608180839612486,2.69,2.09,2.25,2.4303343055867175,2.65,2.08,2.3011714317499163,2.4915249780893953,2.63,2.776091807698068 -2017,7,3,9,9,7,8,15,13,18,1.0,8.0,9.22684404557849,18.939422807214847,0,0,0,0,0,0,0,2.925130137634236,0.0,0.0,0.0,2.7608180839612486,2.69,2.09,2.25,2.4303343055867175,2.65,2.08,2.3011714317499163,2.4915249780893953,2.63,2.776091807698068 -2017,7,4,5,8,7,9,15,13,17,1.7165799082438427,10.0,10.293025913593176,21.481516764373698,0,0,0,0,0,0,0,1.2834200917561571,0.0,0.0,0.0,2.7608180839612486,2.69,2.09,2.25,2.4303343055867175,2.65,2.08,2.3011714317499163,2.4915249780893953,2.63,2.776091807698068 -2017,7,5,5,7,8,11,15,13,17,3.074869862365764,10.0,11.686005910016304,22.252563742953125,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7608180839612486,2.69,2.09,2.25,2.4303343055867175,2.65,2.08,2.3011714317499163,2.4915249780893953,2.63,2.776091807698068 -2017,7,6,3,5,10,13,15,14,17,4.358289954121921,13.0,13.697210257772173,23.023610721532553,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.063668005354753,2.77,2.15,2.21,2.606162732295329,2.22,2.18,2.44520337922403,2.8276301541024575,2.68,2.774345979614949 -2017,7,7,2,9,10,10,16,14,18,2.6417100458780784,15.0,13.009462100523445,24.336751657270835,0,0,0,0,0,0,0,2.6417100458780784,0.0,0.0,0.0,3.420337394564199,2.71,2.2,2.15,2.6285727231536025,2.18,2.15,2.4741062369441957,3.0419876597620097,2.6,2.749732732732733 -2017,7,8,7,8,5,8,15,13,17,2.358289954121921,16.0,12.776207861160408,23.565704678691407,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.984978614200171,2.71,2.18,2.13,2.5668654874537222,2.28,2.2,2.388061380363838,2.7871156186612573,2.6,2.770277986476334 -2017,7,9,5,4,5,10,13,12,17,2.0,14.0,13.103383880767153,21.252563742953125,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.984978614200171,2.71,2.18,2.13,2.5668654874537222,2.28,2.2,2.388061380363838,2.7871156186612573,2.6,2.770277986476334 -2017,7,10,6,5,7,12,14,12,16,1.0,13.0,12.315351135424814,20.4815167643737,0,0,0,0,0,0,0,2.2834200917561573,0.0,0.0,0.0,2.984978614200171,2.71,2.18,2.13,2.5668654874537222,2.28,2.2,2.388061380363838,2.7871156186612573,2.6,2.770277986476334 -2017,7,11,8,9,10,13,15,13,18,1.0,11.0,10.66185729336991,18.39732885005599,0,0,0,0,0,0,0,2.6417100458780784,0.0,0.0,0.0,3.0043243243243243,2.77,2.32,2.54,2.583659683625481,2.43,2.42,2.5840027187345527,2.747830109335576,2.66,2.815121310462062 -2017,7,12,10,12,12,13,16,15,18,1.0,10.0,9.36470395188726,18.939422807214847,0,0,0,0,0,0,0,2.2834200917561573,0.0,0.0,0.0,3.1117847411444144,2.88,2.43,2.61,2.652015503875969,2.73,2.45,2.672831333803811,2.7927450980392163,2.78,2.8719970394294174 -2017,7,13,7,12,11,10,17,16,18,1.0,10.0,9.844774909832143,19.710469785794274,1,0,0,1,0,0,0,2.6417100458780784,0.0,0.0,0.0,3.0958969465648853,2.86,2.38,2.69,2.68577224527432,2.62,2.3,2.687638007614213,2.7823679185232337,2.74,2.8549392600773054 -2017,7,14,0,6,7,8,17,16,18,2.358289954121921,11.0,10.526606870003501,19.25256374295313,3,0,0,0,0,0,0,1.2834200917561571,0.0,0.0,0.0,2.975722784057109,2.8,2.2,2.31,2.5958473824312334,2.31,2.24,2.5125222602739727,2.708611111111111,2.67,2.806585785848466 -2017,7,15,4,8,4,11,16,14,18,1.6417100458780784,13.0,11.989522059348857,20.023610721532556,0,0,0,0,0,0,0,1.9251301376342358,0.0,0.0,0.0,2.9160882210373242,2.8,2.25,2.23,2.582772147760706,2.44,2.43,2.5082875556237534,2.722557803468208,2.68,2.806338535414166 -2017,7,16,7,7,6,11,14,13,17,0.0,13.0,10.82140746327806,17.4815167643737,0,0,0,0,0,0,0,3.6417100458780784,0.0,0.0,0.0,2.9160882210373242,2.8,2.25,2.23,2.582772147760706,2.44,2.43,2.5082875556237534,2.722557803468208,2.68,2.806338535414166 -2017,7,17,7,9,5,12,14,13,17,0.0,12.0,11.026057146639662,15.397328850055992,0,0,0,0,0,0,0,2.6417100458780784,0.0,0.07003960148229584,0.0,2.9160882210373242,2.8,2.25,2.23,2.582772147760706,2.44,2.43,2.5082875556237534,2.722557803468208,2.68,2.806338535414166 -2017,7,18,10,11,8,13,15,14,18,0.6417100458780786,11.0,12.06564374190975,16.626281871476564,0,0,0,0,0,0,0,1.6417100458780784,0.0,0.0,0.0,3.0632222977566284,2.91,2.39,2.65,2.6791035080121266,2.87,2.49,2.692396504139834,2.8045802552048356,2.7599999999999993,2.907859163316957 -2017,7,19,12,13,11,13,15,16,20,1.0,10.0,12.156149813722767,16.626281871476564,0,0,0,0,0,0,0,2.0,0.0,0.0,0.0,3.0786271676300574,3.0,2.5,2.77,2.751899782135076,3.52,2.52,2.7655482559048963,2.8152482269503545,2.86,2.961276159812674 -2017,7,20,12,13,13,16,17,17,21,0.6417100458780786,9.0,11.439723928082639,16.16837582863542,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,3.1444459930313595,3.02,2.48,2.79,2.708207171314741,3.89,2.47,2.840469654998741,2.786575052854123,2.85,2.97909951111812 -2017,7,21,11,13,13,16,17,18,21,0.0,8.0,11.480551064525354,16.939422807214847,0,0,0,0,0,0,0,2.2834200917561573,0.0,0.0,0.0,3.1341773162939295,3.03,2.38,2.71,2.755906735751295,3.29,2.6,2.7157283720930234,2.8228973105134476,2.8799999999999994,2.989174424732127 -2017,7,22,9,11,12,16,17,18,21,3.358289954121921,10.0,10.302147805702248,17.939422807214847,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.041037639877925,2.89,2.23,2.48,2.6781851851851854,2.51,2.54,2.5771985718209276,2.7595307917888565,2.8,2.9108737172177883 -2017,7,23,7,10,12,12,17,18,20,5.074869862365764,11.0,10.49500723050878,17.710469785794274,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.041037639877925,2.89,2.23,2.48,2.6781851851851854,2.51,2.54,2.5771985718209276,2.7595307917888565,2.8,2.9108737172177883 -2017,7,24,0,6,7,10,16,16,19,4.074869862365764,8.0,11.472857595829081,13.08418791431771,2,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.041037639877925,2.89,2.23,2.48,2.6781851851851854,2.51,2.54,2.5771985718209276,2.7595307917888565,2.8,2.9108737172177883 -2017,7,25,0,2,3,12,15,15,19,4.074869862365764,9.0,8.681378703405187,15.626281871476564,3,1,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1327958833619207,2.82,2.02,2.07,2.654323252354983,2.14,2.59,2.330476514635807,2.765515873015873,2.76,2.8311359345500318 -2017,7,26,1,3,6,11,14,16,20,3.7165799082438427,10.0,7.776595455509425,18.39732885005599,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.1533370913190533,2.81,2.0,1.97,2.6778832716810523,2.13,2.61,2.314328280188186,2.789434250764526,2.73,2.8232549458753264 -2017,7,27,0,4,9,10,14,16,20,2.0,11.0,9.020150652713005,18.939422807214847,0,0,0,0,0,0,0,1.2834200917561571,0.0,0.0,0.0,3.16,2.79,1.91,1.78,2.661842751842752,2.08,2.58,2.214433781190019,2.7922360248447204,2.71,2.7927906976744183 -2017,7,28,6,7,7,9,15,14,21,2.0,11.0,9.591839690126559,17.16837582863542,0,0,0,0,0,0,0,0.6417100458780786,0.0,0.0,0.0,3.1343294329432942,2.8,1.96,1.81,2.6783736349453977,2.03,2.61,2.254981849241939,2.8108484162895926,2.7200000000000006,2.802587148257035 -2017,7,29,2,4,3,7,13,12,20,2.7165799082438427,11.0,9.310475169271797,16.16837582863542,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0259859604339505,2.8,1.73,1.68,2.6427346221441126,1.97,2.59,2.0912579988365327,2.6971633986928105,2.67,2.8333567449745702 -2017,7,30,0,3,5,6,11,9,18,4.074869862365764,11.0,9.990562290273209,15.397328850055992,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0259859604339505,2.8,1.73,1.68,2.6427346221441126,1.97,2.59,2.0912579988365327,2.6971633986928105,2.67,2.8333567449745702 -2017,7,31,3,5,6,7,10,10,16,5.433159816487685,12.0,10.156594430697208,18.25256374295313,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0259859604339505,2.8,1.73,1.68,2.6427346221441126,1.97,2.59,2.0912579988365327,2.6971633986928105,2.67,2.8333567449745702 -2017,8,1,7,8,8,8,11,10,15,7.791449770609606,14.0,10.437563049710903,16.25256374295313,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.212275803722504,2.77,2.03,2.18,2.6272589052997395,2.75,2.57,2.288714150646076,2.9586178861788617,2.65,2.7126951300867246 -2017,8,2,8,10,8,7,12,11,14,10.50802967885345,15.0,9.656878912454918,15.710469785794272,0,0,0,0,0,0,0,0.0,0.0,0.07003960148229584,0.0,3.213146479813146,2.71,2.07,2.32,2.5619253112033196,2.69,2.5,2.3338503184713377,2.949761347683669,2.6,2.6626206501503655 -2017,8,3,8,8,8,5,13,11,15,11.791449770609606,15.0,7.739723948020621,16.710469785794274,0,0,0,2,0,0,0,0.0,0.0,1.2671326571566486,0.0,3.269751454257007,2.76,2.11,2.19,2.5642113821138213,3.23,2.5,2.3799448068238833,2.9914116532449078,2.65,2.7158333333333333 -2017,8,4,8,10,3,1,14,11,17,10.074869862365764,14.0,7.8421694144859675,15.710469785794272,0,0,2,1,0,0,0,0.0,0.0,0.0,0.0,3.171281101111699,2.75,1.94,1.84,2.5031197771587745,2.58,2.44,2.137089487402259,2.853913913913914,2.59,2.712687175165051 -2017,8,5,7,6,0,1,14,8,18,4.716579908243842,11.0,7.371664367485167,16.710469785794274,0,0,0,2,0,0,0,0.0,0.0,0.1786255673103245,0.0,2.9501375894331314,2.67,1.63,1.62,2.4536710637103565,1.95,2.42,1.882207366627343,2.668445362373263,2.47,2.6593253180810086 -2017,8,6,2,1,1,1,12,9,18,5.0,10.0,5.680593213417012,16.710469785794274,0,1,0,0,0,0,0,0.0,0.0,1.0023851806570483,0.0,2.9501375894331314,2.67,1.63,1.62,2.4536710637103565,1.95,2.42,1.882207366627343,2.668445362373263,2.47,2.6593253180810086 -2017,8,7,0,0,3,3,12,9,14,6.716579908243842,9.0,5.579890592323519,16.710469785794274,1,1,0,0,0,0,0,0.0,0.0,1.6790124638300103,0.0,2.9501375894331314,2.67,1.63,1.62,2.4536710637103565,1.95,2.42,1.882207366627343,2.668445362373263,2.47,2.6593253180810086 -2017,8,8,2,4,2,3,12,10,15,8.074869862365762,10.0,5.5711548989048,17.4815167643737,0,0,0,0,0,0,0,0.0,0.0,0.8237596133467237,0.0,2.8760177595628416,2.69,1.91,1.93,2.4485011286681715,2.14,2.42,2.213094745552337,2.5655875991348234,2.54,2.677400913511124 -2017,8,9,3,3,3,4,11,10,15,8.716579908243842,10.0,6.1064948703895,18.4815167643737,0,0,0,0,0,0,0,0.0,0.0,0.8937992148290195,0.0,2.9864549763033175,2.71,1.9,1.9,2.458628318584071,2.29,2.44,2.2515029151371193,2.604022598870057,2.58,2.6730835734870317 -2017,8,10,5,5,5,5,11,11,18,8.358289954121922,10.0,6.348274789772268,19.710469785794274,0,0,0,0,0,0,0,0.0,0.0,0.9708919435204851,0.0,3.0976641692375497,2.79,1.81,1.81,2.584844170834937,2.11,2.56,2.187513160283173,2.7483157894736845,2.67,2.756571469167377 -2017,8,11,4,5,5,5,13,12,18,5.358289954121921,10.0,6.365536163210717,17.25256374295313,0,0,0,0,0,0,0,0.0,0.0,0.8237596133467237,0.0,3.0835104957570345,2.82,1.85,1.87,2.625160989267382,2.07,2.57,2.151114224137931,2.7863966480446924,2.72,2.7839572996541873 -2017,8,12,3,6,3,3,15,13,18,2.0,10.0,7.418956726539758,16.25256374295313,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0545689112649463,2.87,1.67,1.74,2.6055232950708977,2.07,2.57,1.9707611940298508,2.6954450261780107,2.7,2.8536593518383953 -2017,8,13,8,7,2,3,14,12,17,0.6417100458780786,9.0,6.526710481044331,14.39732885005599,0,0,0,1,0,0,0,2.358289954121921,0.0,0.0,0.0,3.0545689112649463,2.87,1.67,1.74,2.6055232950708977,2.07,2.57,1.9707611940298508,2.6954450261780107,2.7,2.8536593518383953 -2017,8,14,3,4,4,5,14,12,18,0.0,5.0,5.275762546356637,16.16837582863542,0,0,0,0,0,0,0,4.0,0.0,0.2929197106148282,0.0,3.0545689112649463,2.87,1.67,1.74,2.6055232950708977,2.07,2.57,1.9707611940298508,2.6954450261780107,2.7,2.8536593518383953 -2017,8,15,4,5,7,6,15,14,18,0.0,3.0,3.8413130782056,14.939422807214845,0,0,0,0,0,0,0,3.0,0.0,0.37001243930629385,0.0,3.028296783625731,2.89,1.93,2.17,2.6404336734693876,2.5,2.57,2.3697392013039935,2.718946171341926,2.75,2.8687794665012407 -2017,8,16,7,8,8,7,16,15,19,1.0,4.0,3.529495551138628,13.168375828635417,0,0,0,0,0,0,0,1.2834200917561571,0.0,0.8937992148290195,0.0,2.9577920489296634,2.88,2.13,2.36,2.5593923611111107,2.84,2.5,2.501555148182096,2.6357571214392803,2.73,2.8442941911305435 -2017,8,17,2,6,9,7,16,15,19,1.3582899541219213,6.0,5.139543070657745,14.168375828635417,0,0,0,0,0,0,0,0.6417100458780786,0.0,0.03854636434573283,0.0,2.90624347826087,2.84,2.05,2.27,2.531932584269663,2.5,2.48,2.4858438287153652,2.5954330708661417,2.69,2.8237728114255485 -2017,8,18,3,9,8,6,17,15,18,1.7165799082438427,8.0,6.407108049700602,15.397328850055992,1,0,0,0,0,0,0,1.2834200917561571,0.0,0.0,0.0,2.9997547892720307,2.81,2.02,2.13,2.5501867881548974,2.34,2.51,2.464325782092772,2.627203947368421,2.69,2.8156963099109293 -2017,8,19,10,10,7,8,16,14,20,0.6417100458780786,9.0,7.715067843299964,15.939422807214845,0,0,0,0,0,0,0,1.2834200917561571,0.0,0.07003960148229584,0.0,2.956488740617181,2.83,1.99,2.43,2.562962850182704,3.11,2.52,2.4669145270645774,2.644805194805195,2.68,2.822865262885932 -2017,8,20,8,7,7,9,15,15,19,0.0,7.0,7.531376433798361,15.023610721532554,0,0,0,0,0,0,0,1.9251301376342358,0.0,0.14007920296459167,0.0,2.956488740617181,2.83,1.99,2.43,2.562962850182704,3.11,2.52,2.4669145270645774,2.644805194805195,2.68,2.822865262885932 -2017,8,21,6,7,10,8,15,15,18,2.358289954121921,7.0,6.281470723833111,14.252563742953127,0,0,0,0,0,0,0,0.0,0.0,0.1786255673103245,0.0,2.956488740617181,2.83,1.99,2.43,2.562962850182704,3.11,2.52,2.4669145270645774,2.644805194805195,2.68,2.822865262885932 -2017,8,22,9,11,9,5,16,15,18,4.0,8.0,5.438170958749048,16.4815167643737,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,2.988773622838762,2.85,2.06,2.5,2.561590509666081,3.21,2.53,2.54326116838488,2.7004187528447883,2.76,2.8449984907938424 -2017,8,23,9,7,1,2,16,12,16,2.358289954121921,8.0,6.415201407834125,17.25256374295313,0,0,0,2,0,0,0,0.0,0.0,0.0,0.0,3.179269149683767,2.94,2.02,2.19,2.7168885120813906,2.7,2.67,2.4303733333333333,2.865290780141844,2.83,2.8894811753902663 -2017,8,24,1,2,0,2,12,8,15,0.6417100458780786,8.0,5.312030132403479,14.023610721532554,0,1,3,1,0,0,0,2.2834200917561573,0.0,0.0,0.0,3.1069969040247676,2.84,1.91,2.03,2.656726677577741,2.33,2.58,2.268478414720453,2.80911877394636,2.71,2.8140949916273406 -2017,8,25,0,2,0,3,10,7,12,0.0,9.0,6.362423179790278,16.023610721532553,1,1,4,1,0,0,0,3.283420091756157,0.0,0.0,0.0,3.152757527733756,2.87,1.87,1.93,2.694737923946557,2.18,2.62,2.1601853707414826,2.7829278887923548,2.67,2.82338619802829 -2017,8,26,0,1,0,5,11,8,12,1.0748698623657642,13.0,8.776583758560623,18.023610721532556,4,2,3,1,0,0,0,0.6417100458780786,0.0,0.0,0.0,3.14356843575419,2.82,1.59,1.53,2.6482062350119904,1.76,2.62,1.9354940202391904,2.814118081180812,2.47,2.7919241151769647 -2017,8,27,0,0,1,5,10,10,12,5.433159816487685,14.0,8.57075500946755,19.023610721532556,3,2,1,0,0,0,0,0.0,0.0,0.0,0.0,3.14356843575419,2.82,1.59,1.53,2.6482062350119904,1.76,2.62,1.9354940202391904,2.814118081180812,2.47,2.7919241151769647 -2017,8,28,0,0,2,3,8,7,11,8.433159816487684,15.0,8.87686635285614,19.336751657270838,3,2,0,0,0,0,0,0.0,0.0,0.0,0.0,3.14356843575419,2.82,1.59,1.53,2.6482062350119904,1.76,2.62,1.9354940202391904,2.814118081180812,2.47,2.7919241151769647 -2017,8,29,0,0,3,3,8,8,11,6.999999999999999,15.0,9.771707792407604,18.56570467869141,6,4,0,0,0,0,0,0.0,0.0,0.0,0.0,3.577244335578689,2.85,1.97,2.0,2.7478194671016856,2.09,2.73,2.3648043052837573,3.3251155898043865,2.58,2.81977473418634 -2017,8,30,0,1,3,3,9,8,11,2.0,15.0,8.911786995372195,18.336751657270835,1,1,0,0,0,0,0,0.0,0.0,0.0,0.0,4.088450269853508,2.81,1.86,1.95,2.6763653483992464,2.14,2.66,2.3053703703703703,3.7877842411422527,2.62,2.7849736315693763 -2017,8,31,0,3,2,3,12,9,12,2.0,15.0,7.3266943179878,17.565704678691407,2,1,1,1,0,0,0,0.0,0.0,0.0,0.0,3.8600796812749003,2.79,1.84,1.82,2.624993000466636,2.09,2.61,2.235232700551133,3.7902565320665076,2.59,2.7608489614841702 -2017,9,1,0,0,0,2,11,7,12,4.433159816487685,18.0,7.603991091975966,17.023610721532556,8,7,6,2,0,0,0,0.0,0.0,0.0,0.0,3.7285004686035608,2.79,1.59,1.85,2.677179913535085,1.67,2.64,1.9677390971690896,3.3158069883527452,2.71,2.8078614097968937 -2017,9,2,0,0,0,3,8,4,13,7.791449770609606,19.0,8.582706101068682,16.25256374295313,9,9,6,0,1,1,0,0.0,0.0,0.0,0.0,3.416741573033708,2.83,1.3,1.26,2.6993129980763944,1.25,2.72,1.70385423966363,3.040057215511761,2.73,2.8571575751003144 -2017,9,3,0,0,1,6,9,5,14,9.074869862365764,17.0,10.382363220964868,16.710469785794274,9,5,0,0,0,0,0,0.0,0.0,0.0,0.0,3.416741573033708,2.83,1.3,1.26,2.6993129980763944,1.25,2.72,1.70385423966363,3.040057215511761,2.73,2.8571575751003144 -2017,9,4,1,1,5,6,9,8,15,8.716579908243842,12.0,8.535099320055037,17.4815167643737,0,0,0,1,0,0,0,0.0,0.0,0.325757897484086,0.0,3.416741573033708,2.83,1.3,1.26,2.6993129980763944,1.25,2.72,1.70385423966363,3.040057215511761,2.73,2.8571575751003144 -2017,9,5,5,4,1,1,11,7,13,7.716579908243842,12.0,6.492622049851731,17.565704678691407,0,0,3,5,0,0,0,0.0,0.0,2.113356327142125,0.0,3.416741573033708,2.83,1.3,1.26,2.6993129980763944,1.25,2.72,1.70385423966363,3.040057215511761,2.73,2.8571575751003144 -2017,9,6,3,1,0,0,8,2,8,5.0,11.0,5.768280387028111,17.565704678691407,0,2,9,8,0,2,0,0.0,0.0,2.3080642021594295,0.0,3.222315357561547,2.82,1.71,1.96,2.6375019731649565,1.82,2.65,2.1564606618452773,2.8200753941055514,2.64,2.808257107540173 -2017,9,7,0,0,0,0,6,1,5,2.7165799082438427,9.0,5.17570425434643,16.25256374295313,0,3,8,5,1,4,0,0.0,0.0,0.4889725353648275,0.0,3.21,2.86,1.74,2.01,2.692559618441971,1.69,2.59,2.121137566137566,2.8211383189940435,2.51,2.8501500815660683 -2017,9,8,0,0,0,1,6,1,6,0.6417100458780786,7.0,4.745744553658058,13.710469785794272,5,6,6,3,1,2,0,1.0,0.0,0.03854636434573283,0.0,3.1793572181243412,2.82,1.46,1.59,2.689879049676026,1.47,2.58,1.8464375252729477,2.790736562707365,2.62,2.8098967760180997 -2017,9,9,0,0,0,2,6,2,7,1.3582899541219213,7.0,4.256013776878974,12.168375828635417,6,8,6,2,1,1,0,1.9251301376342358,0.0,0.0,0.0,3.041865267433988,2.73,1.05,1.0,2.5730186958504326,1.14,2.49,1.3924940517844646,2.6671153846153843,2.62,2.713495853731642 -2017,9,10,0,0,0,4,4,2,7,0.3582899541219214,10.0,5.541226328050632,14.252563742953127,5,6,7,0,2,1,0,1.9251301376342358,0.0,0.0,0.0,3.041865267433988,2.73,1.05,1.0,2.5730186958504326,1.14,2.49,1.3924940517844646,2.6671153846153843,2.62,2.713495853731642 -2017,9,11,0,0,0,3,4,1,7,1.7914497706096069,13.0,6.874363272271937,16.023610721532553,4,5,6,0,3,3,0,0.6417100458780786,0.0,0.0,0.0,3.041865267433988,2.73,1.05,1.0,2.5730186958504326,1.14,2.49,1.3924940517844646,2.6671153846153843,2.62,2.713495853731642 -2017,9,12,0,0,0,3,6,1,6,2.074869862365764,10.0,6.68129383406642,17.794657700111983,1,2,3,1,1,3,0,1.2834200917561571,0.0,0.0,0.0,3.0897645600991326,2.82,1.35,1.93,2.6399565406345067,1.97,2.58,1.854649143959489,2.7113197969543146,2.72,2.769378378378378 -2017,9,13,1,1,0,5,7,1,9,0.0,6.0,5.9626603487192735,17.25256374295313,0,1,1,0,0,2,0,4.566840183512315,0.0,0.3244129477513912,0.0,3.140251126851256,2.9,1.22,1.72,2.720057121096725,2.12,2.64,1.76104329004329,2.8101367989056087,2.81,2.83968931741659 -2017,9,14,4,3,2,7,9,5,12,0.0,1.0,2.760467024606592,14.710469785794272,0,0,0,0,0,0,0,5.0,0.0,1.4924965070318934,0.0,3.17711754282339,2.96,1.34,2.03,2.750087431693989,2.16,2.67,2.0094285047818987,2.8344104134762635,2.85,2.909715584225187 -2017,9,15,6,5,4,7,10,8,14,0.0,1.0,1.7560110852515498,11.39732885005599,0,0,0,1,0,0,0,6.641710045878078,0.0,5.9824297872371535,0.0,3.215808790212958,2.95,1.53,1.94,2.7001384451544195,1.86,2.6,2.13652561709189,2.75679180887372,2.81,2.920798586572438 -2017,9,16,6,6,6,7,11,9,15,0.0,2.0,1.382677642923921,9.626281871476564,0,0,0,1,0,0,0,6.641710045878078,0.0,10.198202338472614,0.22895302142057286,3.0806813757300455,2.83,1.52,1.68,2.5591905901116427,1.58,2.47,2.1792264088029345,2.5952246410375173,2.67,2.8592625074745865 -2017,9,17,6,6,6,2,11,10,15,0.0,2.0,1.382677642923921,9.626281871476564,0,0,0,5,0,0,0,10.0,0.0,7.949325162482914,0.22895302142057286,3.0806813757300455,2.83,1.52,1.68,2.5591905901116427,1.58,2.47,2.1792264088029345,2.5952246410375173,2.67,2.8592625074745865 -2017,9,18,2,5,4,2,10,11,15,0.0,3.0,1.580203020484481,9.626281871476564,0,0,1,4,0,0,0,12.358289954121922,1.0,5.27620875836955,0.22895302142057286,3.0806813757300455,2.83,1.52,1.68,2.5591905901116427,1.58,2.47,2.1792264088029345,2.5952246410375173,2.67,2.8592625074745865 -2017,9,19,1,5,4,6,11,11,17,0.0,1.0,1.580203020484481,9.626281871476564,0,0,0,1,0,0,0,14.35828995412192,1.0,6.655601220177847,0.22895302142057286,3.2592410054213894,3.0,1.71,2.25,2.725601173020528,2.13,2.65,2.364722569134701,2.7472531214528946,2.86,2.9869263262517083 -2017,9,20,3,7,9,7,12,11,18,0.0,1.0,1.382677642923921,9.626281871476564,0,0,0,1,0,0,0,15.0,2.0,8.819854095184851,0.22895302142057286,3.21223382045929,3.02,2.05,2.25,2.6924707470747076,2.46,2.65,2.448660931666937,2.7147835269271385,2.87,3.025580739738385 -2017,9,21,4,7,12,9,12,12,18,0.0,0.0,0.9876268878028006,9.626281871476564,0,0,0,1,0,0,0,15.433159816487684,4.0,7.961009949118938,0.22895302142057286,3.094759124087591,3.03,2.14,2.41,2.6558566221142166,2.74,2.58,2.544057074093175,2.6533810143042915,2.88,3.0139879340064026 -2017,9,22,1,5,13,12,11,12,16,0.0,0.0,0.373333442327629,6.542093957158855,2,0,0,0,0,0,0,12.074869862365762,7.0,11.310682457813392,0.0,3.0619477337688847,2.96,1.99,2.36,2.6030670470756063,2.13,2.58,2.3474387835703,2.6275813953488374,2.73,2.9362195419103316 -2017,9,23,5,7,12,11,11,12,15,0.0,0.0,0.0,3.2289530214205726,0,0,0,1,0,0,0,10.074869862365764,5.0,15.728644345565353,1.0,2.9371031096563014,2.88,1.91,2.0,2.4931582514401898,2.67,2.44,2.2220618042864264,2.4796756107328797,2.64,2.845870303428634 -2017,9,24,7,8,11,10,11,11,15,0.0,0.0,0.0,1.0,0,0,0,1,0,0,0,8.358289954121922,2.0,16.862046318720985,1.4579060428411457,2.9371031096563014,2.88,1.91,2.0,2.4931582514401898,2.67,2.44,2.2220618042864264,2.4796756107328797,2.64,2.845870303428634 -2017,9,25,8,9,11,6,11,10,14,0.0,2.0,0.0,2.5420939571588543,0,0,0,4,0,0,0,9.0,1.0,15.863086549645338,1.6868590642617187,2.9371031096563014,2.88,1.91,2.0,2.4931582514401898,2.67,2.44,2.2220618042864264,2.4796756107328797,2.64,2.845870303428634 -2017,9,26,8,8,10,3,11,11,12,0.0,3.0,0.19752537756056013,2.3131409357382813,0,0,0,4,0,0,0,3.6417100458780784,0.0,13.156814479546588,1.9158120856822916,2.98,2.93,2.14,2.19,2.5522313624678663,3.34,2.45,2.466817735602094,2.6424652567975833,2.77,2.8696650306748466 -2017,9,27,8,9,4,0,13,11,11,0.7165799082438428,5.0,0.7901015102422405,3.0841879143177087,0,0,1,6,0,0,0,2.2834200917561573,0.0,11.916030661690412,1.8316241713645829,2.9607216494845363,2.87,1.66,1.92,2.515771172181716,3.04,2.42,2.149549180327869,2.5874740061162083,2.7,2.8507479694508424 -2017,9,28,5,4,0,0,12,8,10,1.3582899541219213,6.0,0.7901015102422405,4.626281871476563,0,1,4,5,0,0,0,1.0,0.0,11.152102403596706,1.3737181285234372,2.9700939745715864,2.85,1.67,1.93,2.480583286595625,1.94,2.41,2.237207457358191,2.5603478260869568,2.66,2.8697507869884573 -2017,9,29,0,0,0,0,8,5,8,0.0,6.0,0.9876268878028006,6.939422807214845,10,9,6,5,1,0,0,6.716579908243842,0.0,9.55671906966191,1.1447651071028644,2.9151054284432485,2.8,1.52,1.3,2.44217094017094,1.7,2.36,1.8635192135835565,2.452203219315895,2.58,2.8204703168872842 -2017,9,30,0,0,0,0,7,4,9,0.0,3.0,1.382677642923921,7.939422807214845,13,11,9,5,2,1,0,12.074869862365762,0.0,9.103311505896427,0.6868590642617186,2.9151054284432485,2.8,1.52,1.3,2.44217094017094,1.7,2.36,1.8635192135835565,2.452203219315895,2.58,2.8204703168872842 -2017,10,1,0,0,0,1,5,3,9,0.0,1.0,1.1851522653633608,7.397328850055991,12,11,9,4,4,1,0,13.35828995412192,1.0,11.81352770738009,0.4579060428411457,2.847726134149736,2.7,1.13,1.31,2.3539625850340133,1.66,2.28,1.6368234050984016,2.410295070169126,2.48,2.7307961570593147 -2017,10,2,0,0,1,4,5,3,11,0.0,0.0,0.19752537756056013,6.084187914317709,11,9,3,3,3,1,0,15.358289954121922,2.0,17.969603750573466,0.4579060428411457,2.847726134149736,2.7,1.13,1.31,2.3539625850340133,1.66,2.28,1.6368234050984016,2.410295070169126,2.48,2.7307961570593147 -2017,10,3,0,0,3,4,5,6,12,0.0,0.0,0.19752537756056013,5.855234892897136,11,8,0,3,2,0,0,13.35828995412192,6.0,17.62309559883028,0.4579060428411457,3.012231759656652,2.63,1.12,1.48,2.4099956877964637,2.24,2.36,1.6339984264358776,2.4766949152542375,2.33,2.655961113566063 -2017,10,4,0,0,3,2,5,5,13,0.0,0.0,0.19752537756056013,7.6262818714765634,6,5,1,7,1,0,0,12.283420091756156,3.0,13.60179047056227,0.22895302142057286,3.0417611336032393,2.57,0.99,1.34,2.3362546972860123,2.61,2.32,1.5080858310626701,2.3806904231625836,2.33,2.64871472392638 -2017,10,5,1,1,1,2,5,4,11,0.0,1.0,0.19752537756056013,9.397328850055992,1,2,3,6,0,0,0,11.283420091756156,2.0,12.460271147236073,0.22895302142057286,3.0080469769464986,2.72,1.27,2.03,2.4562030598052855,2.77,2.47,1.9032279367620573,2.5228723404255318,2.45,2.7578716002530044 -2017,10,6,0,3,1,3,8,5,11,0.0,4.0,0.19752537756056013,8.855234892897137,3,2,3,6,0,0,0,11.566840183512314,0.0,11.80460213792311,0.22895302142057286,3.03196218702095,2.8,1.55,2.31,2.5792052980132447,2.65,2.53,2.0666897535139537,2.6175213675213675,2.49,2.815226262097829 -2017,10,7,1,4,6,2,10,7,11,0.0,6.0,0.7901015102422405,5.39732885005599,2,0,0,3,0,0,0,14.641710045878078,0.0,10.54201859695232,1.60267114994401,2.921565967940814,2.69,1.44,1.33,2.5160915083365647,2.68,2.39,1.8054886535552193,2.529910209511141,2.52,2.758809099486319 -2017,10,8,3,5,1,1,12,7,11,0.0,2.0,0.7901015102422405,3.855234892897136,1,0,1,4,0,0,0,15.0,1.0,13.75846671344117,1.1447651071028644,2.921565967940814,2.69,1.44,1.33,2.5160915083365647,2.68,2.39,1.8054886535552193,2.529910209511141,2.52,2.758809099486319 -2017,10,9,4,6,2,1,14,11,12,0.0,1.0,0.0,2.3131409357382813,0,0,1,9,0,0,0,15.641710045878078,1.0,22.442216308617084,2.60267114994401,2.921565967940814,2.69,1.44,1.33,2.5160915083365647,2.68,2.39,1.8054886535552193,2.529910209511141,2.52,2.758809099486319 -2017,10,10,4,5,1,0,14,11,6,0.0,1.0,0.0,2.3131409357382813,0,0,4,16,0,0,3,18.0,1.0,19.385800661794757,4.434295321308593,2.939162079510704,2.71,1.63,1.9,2.462337858220211,3.1,2.4,2.1793791946308723,2.5212852459016393,2.62,2.7634578891882393 -2017,10,11,0,1,1,0,13,8,3,0.0,0.0,0.19752537756056013,4.626281871476563,4,2,7,16,0,0,3,20.358289954121922,3.0,14.526712076082804,2.2895302142057288,2.9191214470284237,2.75,1.81,2.71,2.4852140818268316,2.99,2.02,2.3504043752071593,2.5053017241379307,2.65,2.76954727187206 -2017,10,12,0,0,0,0,9,3,6,0.0,0.0,0.19752537756056013,5.39732885005599,10,7,8,11,0,2,0,22.0,4.0,14.279062082818516,0.6868590642617186,3.032564389697648,2.79,1.58,1.74,2.5491602745256356,2.51,2.2,2.026260028315243,2.5951338488994646,2.7,2.8122008601062487 -2017,10,13,0,0,0,1,7,4,10,0.0,0.0,0.19752537756056013,6.6262818714765634,14,9,3,7,1,1,0,20.71657990824384,4.0,16.880151600431695,0.4579060428411457,3.005208613728129,2.76,0.78,0.95,2.5694229895502043,2.91,2.25,1.1367263800424627,2.595357142857143,2.68,2.8167903225806454 -2017,10,14,0,0,1,2,7,5,13,0.0,2.0,0.0,6.084187914317709,7,4,3,9,0,0,0,21.641710045878078,3.0,19.99496047594353,0.4579060428411457,2.9344173648134046,2.76,1.0,1.09,2.596630881681133,3.13,2.6,1.6615269183168317,2.589148936170213,2.69,2.8872612041647803 -2017,10,15,0,1,1,0,8,7,7,0.0,4.0,0.0,5.39732885005599,2,0,4,15,0,0,1,17.0,1.0,19.097162699041693,3.2895302142057288,2.9344173648134046,2.76,1.0,1.09,2.596630881681133,3.13,2.6,1.6615269183168317,2.589148936170213,2.69,2.8872612041647803 -2017,10,16,0,0,0,0,6,1,2,0.0,6.0,0.0,6.168375828635417,6,9,14,13,1,7,4,14.208550229390392,1.0,13.997534735119604,2.2895302142057288,2.9344173648134046,2.76,1.0,1.09,2.596630881681133,3.13,2.6,1.6615269183168317,2.589148936170213,2.69,2.8872612041647803 -2017,10,17,0,0,0,0,3,0,0,0.0,6.0,0.39505075512112026,6.939422807214845,20,18,11,10,8,9,4,14.641710045878078,1.0,11.68714363766734,1.60267114994401,3.879967213114754,2.8,1.85,2.14,2.590026395173454,3.25,2.57,2.174671334111241,2.749546406140963,2.69,2.7751442478926744 -2017,10,18,0,0,0,0,3,0,1,0.0,4.0,0.19752537756056013,6.939422807214845,12,11,9,7,7,8,1,14.208550229390392,1.0,10.343452988467407,1.1447651071028644,3.456630036630037,2.78,1.68,2.12,2.6525778388278387,2.95,2.61,2.1029484941073764,2.75281425891182,2.69,2.8043921021568834 -2017,10,19,0,0,0,0,4,0,2,0.0,1.0,0.7901015102422405,6.939422807214845,9,9,7,6,5,6,0,14.641710045878078,3.0,10.3554655555097,1.1447651071028644,3.1463106796116502,2.73,1.5,2.23,2.548414201183432,2.9,2.53,1.9385142857142856,2.665861405197305,2.62,2.7281405121470783 -2017,10,20,0,0,0,0,4,1,5,0.0,0.0,0.19752537756056013,3.855234892897136,8,7,5,4,3,4,0,19.074869862365766,7.0,10.750319987978727,1.1447651071028644,3.108387096774193,2.71,1.19,2.26,2.553,2.72,2.33,1.80765778401122,2.5770565045992115,2.59,2.6967007930785867 -2017,10,21,0,0,0,0,4,1,10,0.0,0.0,0.0,1.5420939571588543,7,7,3,2,3,2,0,19.0,6.0,19.496073181428514,1.9158120856822916,3.045598570577725,2.63,0.76,1.55,2.537498672331386,2.49,2.37,1.4655269645608628,2.5712716354645004,2.55,2.6979228430254656 -2017,10,22,0,0,0,0,5,2,5,0.0,2.0,0.0,3.0841879143177087,6,6,2,10,2,1,1,15.358289954121922,3.0,15.478809814191974,3.5184832356263014,3.045598570577725,2.63,0.76,1.55,2.537498672331386,2.49,2.37,1.4655269645608628,2.5712716354645004,2.55,2.6979228430254656 -2017,10,23,0,0,0,0,5,0,0,0.0,7.0,0.5925761326816804,5.39732885005599,8,6,8,12,1,4,2,12.925130137634234,1.0,14.45117431052302,1.60267114994401,3.045598570577725,2.63,0.76,1.55,2.537498672331386,2.49,2.37,1.4655269645608628,2.5712716354645004,2.55,2.6979228430254656 -2017,10,24,0,1,0,0,4,0,0,0.0,8.0,0.9876268878028006,6.168375828635417,2,2,17,18,3,10,4,11.85026027526847,0.0,16.250831430419204,2.7474362570468744,6.884542578433957,2.96,1.66,1.97,2.781536155863619,2.87,2.57,2.1426954940391996,3.3579336558396684,2.86,2.846734096692112 -2017,10,25,0,0,0,0,1,0,0,0.0,9.0,0.7901015102422405,6.168375828635417,1,9,20,15,9,16,6,14.133680367024628,0.0,12.020292278837447,2.5184832356263014,4.981179173047473,3.0,1.61,1.95,2.712516327314637,3.08,2.52,2.0212278308321965,3.108008908685969,2.86,2.840395707578806 -2017,10,26,0,0,0,0,0,0,0,0.0,6.0,0.5925761326816804,3.855234892897136,8,14,20,14,10,11,2,12.850260275268472,0.0,16.060118129878532,1.8316241713645829,3.4768916595012898,2.99,1.82,2.14,2.6936546700942587,3.22,2.63,2.1136168156559556,3.1474218750000005,2.73,2.830503748520321 -2017,10,27,0,0,0,0,1,0,0,0.0,5.0,0.39505075512112026,3.0841879143177087,14,15,20,28,8,9,8,11.49197032114655,0.0,22.714329340486817,4.663248342729166,3.4988150609080844,2.91,1.83,1.96,2.694306321595248,3.02,2.61,2.2310140186915888,3.065274671852212,2.77,2.774085497835498 -2017,10,28,0,0,0,0,1,0,0,0.0,3.0,0.5925761326816804,3.0841879143177087,14,12,26,30,6,18,17,9.850260275268472,0.0,17.868970314273753,4.892201364149739,2.900825688073395,2.83,1.37,1.85,2.5270092112838225,2.8,2.49,1.9875408098367606,2.5361483007209067,2.73,2.702240172320948 -2017,10,29,0,0,0,0,1,0,0,0.0,1.0,0.39505075512112026,3.0841879143177087,9,11,26,25,8,22,12,14.641710045878078,1.0,13.712865228088175,3.747436257046874,2.900825688073395,2.83,1.37,1.85,2.5270092112838225,2.8,2.49,1.9875408098367606,2.5361483007209067,2.73,2.702240172320948 -2017,10,30,0,0,0,0,0,0,0,0.0,0.0,0.19752537756056013,1.5420939571588543,6,15,25,27,14,16,8,15.283420091756156,6.0,22.06734684423964,3.9763892784674475,2.900825688073395,2.83,1.37,1.85,2.5270092112838225,2.8,2.49,1.9875408098367606,2.5361483007209067,2.73,2.702240172320948 -2017,10,31,0,0,0,0,0,0,0,0.0,0.0,0.19752537756056013,0.0,15,18,28,34,10,16,10,18.20855022939039,7.0,21.56414443897479,4.20534229988802,3.022006745362563,3.02,1.81,2.81,2.7022631772945083,3.18,2.67,2.21478374836173,2.753288633461047,2.98,2.8039245627773424 -2017,11,1,0,0,0,0,1,0,2,0.0,0.0,0.0,0.7710469785794272,22,21,24,28,8,11,3,18.641710045878078,6.0,15.568656802815827,2.8316241713645827,2.871686006825939,2.75,1.46,2.19,2.569399942578237,2.1,2.46,2.036922967392852,2.620846102598268,2.66,2.6720115377340647 -2017,11,2,0,0,0,0,2,2,8,0.0,0.0,0.0,0.0,13,10,16,21,3,3,0,20.641710045878078,9.0,18.263433962316817,2.60267114994401,2.88313202247191,2.67,1.07,1.14,2.509465160075329,1.18,2.48,1.5544617156016118,2.5410807113543092,2.65,2.5845860080513545 -2017,11,3,0,0,0,0,2,3,7,0.0,0.0,0.0,0.0,4,5,17,26,1,1,1,27.208550229390394,9.0,18.263561565394685,3.060577192785156,2.9342857142857146,2.77,1.31,1.52,2.6010350584307176,1.31,2.62,1.8346952104499274,2.6589530277306173,2.74,2.6552706946363522 -2017,11,4,0,0,0,0,3,3,8,0.0,0.0,0.0,0.7710469785794272,19,19,19,22,4,1,0,30.566840183512312,8.0,18.264954632121324,2.3737181285234374,2.853659942363113,2.82,1.27,1.23,2.6164914862308177,1.25,2.69,1.7858901435940333,2.6802756439222777,2.76,2.6927831898504757 -2017,11,5,0,0,0,0,3,4,11,0.0,0.0,0.0,0.0,15,14,12,21,3,0,0,28.566840183512312,11.0,22.9661044355428,2.1447651071028644,2.853659942363113,2.82,1.27,1.23,2.6164914862308177,1.25,2.69,1.7858901435940333,2.6802756439222777,2.76,2.6927831898504757 -2017,11,6,0,0,0,0,4,2,7,0.0,0.0,0.0,0.0,8,7,21,32,1,1,2,27.925130137634234,10.0,24.684737920889944,4.373718128523437,2.853659942363113,2.82,1.27,1.23,2.6164914862308177,1.25,2.69,1.7858901435940333,2.6802756439222777,2.76,2.6927831898504757 -2017,11,7,0,0,0,0,4,2,5,0.0,0.0,0.0,0.0,22,24,24,31,5,5,5,29.566840183512312,8.0,29.079136039435728,4.60267114994401,3.297673733804476,3.04,2.03,2.49,2.936587872559096,2.41,2.97,2.4103931712364197,2.946626506024096,2.99,2.929864191942055 -2017,11,8,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,25,24,27,31,10,12,11,25.358289954121922,8.0,28.586338203052254,5.20534229988802,3.247646786870088,3.06,2.47,2.82,2.909977703455964,3.18,2.83,2.6962064843866727,2.9198,3.01,2.9630093862815885 -2017,11,9,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7710469785794272,27,24,28,35,11,14,13,22.641710045878078,8.0,24.915768876000975,4.892201364149739,3.383206106870229,3.28,2.66,3.01,2.9562770291444687,3.69,2.9,2.8876179991743496,3.0892935178441365,3.21,3.029844630998622 -2017,11,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7710469785794272,27,29,39,39,12,19,12,22.641710045878078,8.0,22.161514127488367,3.9763892784674475,3.750343968095713,3.31,2.7,3.58,2.9845128034585966,8.44,2.9,3.0219736331911595,3.0299919224555736,3.24,3.0832742627717016 -2017,11,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7710469785794272,37,37,36,31,18,19,6,22.566840183512312,8.0,21.040473569581128,2.8316241713645827,3.2411968777103213,3.15,2.6,3.09,2.814231689803734,5.92,2.77,2.9337270515372706,2.8510019144862793,3.03,3.014468910439247 -2017,11,12,0,0,0,0,3,0,1,0.0,0.0,0.0,0.7710469785794272,32,32,31,27,16,16,3,18.925130137634234,9.0,23.686037943705642,3.9763892784674475,3.2411968777103213,3.15,2.6,3.09,2.814231689803734,5.92,2.77,2.9337270515372706,2.8510019144862793,3.03,3.014468910439247 -2017,11,13,0,0,0,0,3,0,2,0.0,0.0,0.0,1.5420939571588543,32,28,28,27,12,15,4,19.358289954121922,7.0,17.94530154501408,2.8316241713645827,3.2411968777103213,3.15,2.6,3.09,2.814231689803734,5.92,2.77,2.9337270515372706,2.8510019144862793,3.03,3.014468910439247 -2017,11,14,0,0,0,0,2,0,2,0.0,0.0,0.0,1.5420939571588543,28,27,26,22,13,16,2,21.0,7.0,17.696038170334027,2.60267114994401,3.5374224021592444,3.11,2.67,3.01,2.861170610211706,4.47,2.83,2.837314019507934,2.9418685831622176,2.99,2.998788537281 -2017,11,15,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,27,26,23,20,14,16,2,22.0,5.0,23.15516560852479,3.747436257046874,3.5264075235109718,3.0,2.66,2.95,2.8255574912891985,3.63,2.81,2.8115923052053025,2.962386895475819,2.97,2.9080051074057383 -2017,11,16,0,0,0,0,1,0,3,0.0,0.0,0.0,0.7710469785794272,26,22,26,29,12,14,3,24.0,4.0,19.559782274589992,3.2895302142057288,3.449973276322822,3.09,2.71,2.96,2.819058908045977,3.73,2.77,2.847295587537561,2.900923076923077,3.0,2.954341987466428 -2017,11,17,0,0,0,0,1,0,6,0.0,0.0,0.0,0.0,28,26,25,23,13,12,1,23.0,6.0,19.12549576620298,3.1447651071028644,3.0659983150800336,3.02,2.7,2.94,2.7945793357933577,3.92,2.75,2.8269308430085816,2.861680672268908,2.94,2.899924120116242 -2017,11,18,0,0,0,0,1,1,7,0.0,0.0,0.0,0.0,28,25,21,23,11,7,1,23.433159816487684,10.0,29.536604836994044,8.518483235626302,3.0145214285714284,2.99,2.64,2.97,2.747875713379835,3.36,2.68,2.8086458167963166,2.7701870187018702,2.91,2.877351749539595 -2017,11,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,18,21,30,31,10,20,14,24.358289954121922,11.0,28.372643455268047,11.12115438557031,3.0145214285714284,2.99,2.64,2.97,2.747875713379835,3.36,2.68,2.8086458167963166,2.7701870187018702,2.91,2.877351749539595 -2017,11,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,27,27,25,16,25,14,21.641710045878078,9.0,24.312602086616035,10.976389278467447,3.0145214285714284,2.99,2.64,2.97,2.747875713379835,3.36,2.68,2.8086458167963166,2.7701870187018702,2.91,2.877351749539595 -2017,11,21,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,23,22,24,28,12,19,8,19.49197032114655,3.0,19.63647511384421,6.831624171364583,3.403703703703704,3.03,2.6,2.81,2.756937119675456,3.2,2.73,2.7798105745212323,2.866312849162011,2.97,2.926845288090038 -2017,11,22,0,0,0,0,2,0,0,0.0,3.0,0.0,0.7710469785794272,22,23,34,38,10,22,13,12.925130137634234,1.0,15.582948148157008,5.434295321308593,3.2930841121495327,3.04,2.63,2.96,2.700958904109589,3.31,2.58,2.788255372945638,2.7645120551090705,2.98,2.9185896459840124 -2017,11,23,0,0,0,0,2,0,0,0.0,3.0,0.0,1.5420939571588543,31,32,31,27,16,23,14,11.925130137634234,2.0,12.887694537372049,3.9763892784674475,2.868032258064516,2.82,2.55,2.85,2.4502839548409168,3.39,2.34,2.682936482604532,2.5337924970691676,2.74,2.7740721430091506 -2017,11,24,0,0,0,0,1,0,0,0.0,2.0,0.0,0.7710469785794272,29,27,22,16,15,19,9,20.641710045878078,2.0,13.500151229585253,3.5184832356263014,2.868032258064516,2.82,2.55,2.85,2.4502839548409168,3.39,2.34,2.682936482604532,2.5337924970691676,2.74,2.7740721430091506 -2017,11,25,0,0,0,0,1,0,0,0.0,2.0,0.0,0.7710469785794272,22,23,21,22,13,15,6,21.641710045878078,2.0,18.770490977432264,3.5184832356263014,2.868032258064516,2.82,2.55,2.85,2.4502839548409168,3.39,2.34,2.682936482604532,2.5337924970691676,2.74,2.7740721430091506 -2017,11,26,0,0,0,0,1,0,0,0.0,0.0,0.0,1.5420939571588543,23,25,29,23,13,18,6,18.641710045878078,4.0,14.973756964918259,3.5184832356263014,2.868032258064516,2.82,2.55,2.85,2.4502839548409168,3.39,2.34,2.682936482604532,2.5337924970691676,2.74,2.7740721430091506 -2017,11,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,25,24,17,14,18,6,23.358289954121922,11.0,13.781950066124315,3.2895302142057288,2.868032258064516,2.82,2.55,2.85,2.4502839548409168,3.39,2.34,2.682936482604532,2.5337924970691676,2.74,2.7740721430091506 -2017,11,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,25,16,17,12,15,4,25.716579908243844,13.0,24.86348843288068,7.831624171364583,3.2956175298804786,2.7,2.42,2.56,2.581046569854782,3.13,2.55,2.5318267379679145,2.5566753246753247,2.6,2.688186046511628 -2017,11,29,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,20,19,23,25,9,13,6,25.0,10.0,25.588870326628655,10.20534229988802,3.3669999999999995,2.85,2.59,2.79,2.605479082321188,3.44,2.57,2.699822990844354,2.670909090909091,2.74,2.80047376464595 -2017,11,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,26,22,23,9,12,8,26.358289954121922,10.0,27.14039900817849,7.9763892784674475,3.581975666280417,3.0,2.67,2.94,2.711400092721372,3.46,2.65,2.8543349545358425,2.7710065851364063,2.92,2.942025092772574 -2017,12,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,24,27,25,9,14,7,25.0,9.0,24.103629915451663,4.747436257046875,4.092898550724638,2.79,2.45,2.71,2.5650164907651716,3.15,2.49,2.6317628435746157,2.7599748743718586,2.65,2.7809826445249093 -2017,12,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,28,24,23,11,12,4,26.641710045878078,9.0,22.98228264493799,5.747436257046874,3.433591836734694,2.71,2.3,2.47,2.4753162118780097,2.89,2.48,2.456231993934799,2.639238307349666,2.61,2.718548327481057 -2017,12,3,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,30,27,24,22,10,13,2,27.35828995412192,12.0,21.220224835293998,6.060577192785155,3.433591836734694,2.71,2.3,2.47,2.4753162118780097,2.89,2.48,2.456231993934799,2.639238307349666,2.61,2.718548327481057 -2017,12,4,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,28,27,18,17,12,12,1,29.641710045878078,16.0,31.386804140374284,10.144765107102865,3.433591836734694,2.71,2.3,2.47,2.4753162118780097,2.89,2.48,2.456231993934799,2.639238307349666,2.61,2.718548327481057 -2017,12,5,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,23,20,24,36,9,10,8,29.925130137634234,15.0,36.03742405539994,16.747436257046875,3.3477037416709385,2.85,2.38,2.64,2.654525401069519,3.06,2.68,2.5407590019423276,2.8588575899843502,2.81,2.7639413949649194 -2017,12,6,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,23,34,36,11,24,20,26.925130137634234,13.0,36.90202250213818,15.121154385570312,3.215423213380639,2.88,2.42,2.78,2.667592116538132,3.61,2.74,2.625290419570862,3.0635647530040053,2.84,2.7588127795527155 -2017,12,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,29,39,45,16,26,25,26.20855022939039,10.0,36.738881036647406,20.350107406990887,3.3651086012163334,2.9,2.6,3.19,2.7201883166794776,4.44,2.8,2.806557604850935,2.9142268041237114,2.85,2.8162689672050907 -2017,12,8,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,34,40,40,19,32,29,27.85026027526847,8.0,30.620787578159376,20.434295321308593,3.865466926070039,2.7,2.45,3.51,2.504616548940464,4.12,2.62,2.864737791134486,2.729,2.64,2.6846429509057494 -2017,12,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,35,40,38,22,33,22,27.566840183512312,7.0,29.529462985769797,16.976389278467447,3.225341928251121,2.64,2.31,3.69,2.4244111776447106,6.97,2.56,2.77501612503101,2.5486892758936754,2.58,2.644802182810368 -2017,12,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,39,32,26,30,17,26.925130137634234,7.0,29.72698836333036,13.663248342729165,3.225341928251121,2.64,2.31,3.69,2.4244111776447106,6.97,2.56,2.77501612503101,2.5486892758936754,2.58,2.644802182810368 -2017,12,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,36,29,21,23,12,26.925130137634234,6.0,30.09461362818151,12.663248342729165,3.225341928251121,2.64,2.31,3.69,2.4244111776447106,6.97,2.56,2.77501612503101,2.5486892758936754,2.58,2.644802182810368 -2017,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,30,40,38,19,24,16,27.566840183512312,8.0,29.197786897410246,13.434295321308593,3.7964797728885733,2.78,2.38,3.4,2.5141515308770113,6.75,2.58,2.792623097582811,2.7761270062805306,2.71,2.682230662983425 -2017,12,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,43,40,32,26,28,17,26.566840183512312,8.0,30.310440610104873,13.20534229988802,3.314026812313804,2.72,2.41,4.92,2.57050505050505,9.79,2.65,3.033851884312007,2.769781512605042,2.67,2.6757596269554753 -2017,12,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,42,44,37,20,27,17,26.925130137634234,8.0,31.361103950052964,16.20534229988802,3.170453599667083,2.62,2.27,3.51,2.487455908289242,9.37,2.57,2.708657231618916,2.711382289416847,2.57,2.5499516151985198 -2017,12,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,46,42,34,21,30,19,28.641710045878078,8.0,30.962415776153364,15.892201364149738,3.0804491899852726,2.61,2.32,2.98,2.487345971563981,7.54,2.53,2.5869807901413555,2.7562992125984254,2.56,2.5698892723612308 -2017,12,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,40,32,29,20,26,19,29.0,14.0,30.67231356808179,18.976389278467447,3.201220010209291,2.56,2.16,2.7,2.4807086391868998,7.68,2.58,2.4073356493853555,2.751008482563619,2.5,2.51615967552567 -2017,12,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,38,32,31,18,24,16,26.358289954121922,14.0,33.38563677159162,19.831624171364584,3.201220010209291,2.56,2.16,2.7,2.4807086391868998,7.68,2.58,2.4073356493853555,2.751008482563619,2.5,2.51615967552567 -2017,12,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,31,27,26,12,16,11,23.0,13.0,30.952027955175957,18.060577192785157,3.201220010209291,2.56,2.16,2.7,2.4807086391868998,7.68,2.58,2.4073356493853555,2.751008482563619,2.5,2.51615967552567 -2017,12,19,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,29,22,23,27,9,13,6,23.925130137634234,14.0,29.677197841726855,18.831624171364584,3.5803748006379585,2.66,2.26,2.66,2.6095302271852137,5.24,2.67,2.4615032080659947,2.82511240632806,2.62,2.6082032354327 -2017,12,20,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,28,25,32,34,9,10,5,29.641710045878078,18.0,26.20299589430451,16.83162417136458,3.7792237623762373,2.72,2.48,2.84,2.55247119078105,9.66,2.93,2.6402796116504854,2.9298595787362083,2.68,2.645716989372543 -2017,12,21,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,37,34,32,33,13,13,5,35.283420091756156,21.0,36.615284828346276,20.771046978579427,3.678511283260357,2.64,2.36,2.78,2.606487232574189,10.66,2.61,2.561667503766951,3.214992625368732,2.61,2.5670197761766054 -2017,12,22,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,40,31,29,39,12,9,9,33.0,21.0,41.15506844409779,26.60267114994401,3.9231212261960056,2.54,2.19,2.44,2.4505101058710297,6.9,2.45,2.3745215759849905,3.265768779342723,2.51,2.505349315068493 -2017,12,23,0,0,0,0,2,1,0,0.0,0.0,0.0,0.0,32,25,32,45,7,9,19,33.85026027526847,17.0,37.90548945117982,23.060577192785157,3.3084391316295685,2.68,2.13,3.34,2.4525513545698123,11.7,2.55,2.512867615959397,2.9911538461538463,2.63,2.5264248021108178 -2017,12,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,30,41,47,12,22,19,37.491970321146546,13.0,44.621918726276704,17.060577192785157,3.3084391316295685,2.68,2.13,3.34,2.4525513545698123,11.7,2.55,2.512867615959397,2.9911538461538463,2.63,2.5264248021108178 -2017,12,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,33,47,55,20,33,24,35.491970321146546,12.0,39.0826658595772,14.60267114994401,3.3084391316295685,2.68,2.13,3.34,2.4525513545698123,11.7,2.55,2.512867615959397,2.9911538461538463,2.63,2.5264248021108178 -2017,12,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,43,43,58,61,21,31,23,34.85026027526847,12.0,41.22009344399976,15.289530214205728,3.3084391316295685,2.68,2.13,3.34,2.4525513545698123,11.7,2.55,2.512867615959397,2.9911538461538463,2.63,2.5264248021108178 -2017,12,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,53,49,62,64,22,35,28,32.85026027526847,10.0,37.17284581248236,13.976389278467447,3.133132791327913,2.91,2.37,11.13,2.5156235431235427,35.6,2.64,5.069526289265916,2.8015466856735567,3.03,2.6315806380150644 -2017,12,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,59,54,60,57,27,37,28,27.85026027526847,9.0,32.04850545227349,12.976389278467447,2.988046116504854,3.11,2.48,16.53,2.604559704933149,22.34,2.6,6.293304330230677,2.7353729281767953,3.5,2.678200874485597 -2017,12,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,59,53,54,54,26,33,23,24.20855022939039,7.0,28.495558648600998,11.747436257046875,3.043859941642351,4.55,2.66,14.52,2.8577519379844962,19.23,2.86,4.462529530880864,2.992200772200772,29.3,2.9552129367688664 -2017,12,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,57,50,54,62,24,32,19,24.925130137634234,8.0,33.507986058566225,11.747436257046875,3.043859941642351,4.55,2.66,14.52,2.8577519379844962,19.23,2.86,4.462529530880864,2.992200772200772,29.3,2.9552129367688664 -2017,12,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,59,55,60,68,29,39,27,30.850260275268468,11.0,38.585470369202895,14.747436257046875,3.043859941642351,4.55,2.66,14.52,2.8577519379844962,19.23,2.86,4.462529530880864,2.992200772200772,29.3,2.9552129367688664 -2018,1,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,61,58,65,70,33,48,39,30.499236699628728,10.0,39.46355673832754,15.975445836900526,3.3974447090847226,4.43,3.23,31.67,3.4485674931129475,25.03,3.21,4.9215750319655935,3.5524688879967887,4.8,3.7048732299770526 -2018,1,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,58,53,62,62,35,47,40,30.499236699628728,8.0,37.756314668932184,14.523132579000478,3.3974447090847226,4.43,3.23,31.67,3.4485674931129475,25.03,3.21,4.9215750319655935,3.5524688879967887,4.8,3.7048732299770526 -2018,1,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,50,57,57,34,42,32,27.499236699628728,9.0,35.16917429645589,14.523132579000478,4.496666666666666,8.89,6.11,17.21,5.117516254876462,21.92,3.73,7.777880978865406,5.554919957310566,8.47,6.859914081840687 -2018,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,46,49,58,58,35,43,29,26.856488599681768,8.0,31.888184776897116,10.296975950050456,4.100199288256228,6.46,6.5,47.39,5.322377049180327,38.42,3.06,13.1933278018892,5.735507507507507,6.26,6.504386982014625 -2018,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,56,62,57,37,42,22,22.570992399787844,7.0,29.45592730914333,12.07081932110043,3.128873849485653,6.56,4.22,114.45,3.2187414187643024,79.96,2.82,24.50368577075099,3.1688049029622065,5.33,4.193141400922928 -2018,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,59,58,61,54,37,41,19,24.0,8.0,27.64405489167012,11.940036176350311,2.725170852202553,3.81,2.8,26.64,2.452520585544373,25.49,2.44,5.8121,2.403440608543008,3.65,2.7994311206732903 -2018,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,59,57,50,44,35,35,13,26.28549619989392,9.0,26.980995260598355,9.035409660550215,2.725170852202553,3.81,2.8,26.64,2.452520585544373,25.49,2.44,5.8121,2.403440608543008,3.65,2.7994311206732903 -2018,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,47,37,34,27,29,12,24.642748099946964,11.0,28.658385037057197,10.39234943425036,2.725170852202553,3.81,2.8,26.64,2.452520585544373,25.49,2.44,5.8121,2.403440608543008,3.65,2.7994311206732903 -2018,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,34,34,32,16,20,16,24.285496199893924,12.0,23.4854069254743,8.261566289500239,2.8296718866517527,2.84,2.69,3.25,2.437088339222615,15.42,2.34,2.8254533965244866,2.5284568279240665,2.72,2.7314262803378595 -2018,1,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,36,26,26,14,13,10,25.642748099946964,14.0,24.816746867745756,15.13078314475012,2.8104948805460754,2.84,2.71,3.36,2.4456171875,10.91,2.31,2.9254921649170855,2.5673534971644614,2.77,2.758911604821555 -2018,1,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,26,17,36,9,7,7,24.570992399787848,12.0,31.763586674215773,15.035409660550215,2.8437195121951224,3.03,2.8,3.18,2.5734543359262463,5.26,2.43,2.9280040733197557,2.6207361963190183,2.96,2.951390955364135 -2018,1,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,15,34,60,5,17,26,22.570992399787844,10.0,29.104678135522445,14.940036176350311,2.875259647451167,3.23,2.91,3.17,2.7653029336734694,4.16,2.58,3.06806760481648,2.8473173391494004,3.29,3.129065032414911 -2018,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,17,32,52,59,19,39,28,18.570992399787848,7.0,29.47265219466458,13.39234943425036,2.9618513513513514,3.89,3.5,16.58,2.9510348053892215,15.06,2.71,5.929380843785633,2.9770096463022506,4.16,3.813483555184146 -2018,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,51,55,51,31,41,25,19.570992399787844,6.0,27.819358484323654,12.39234943425036,2.9618513513513514,3.89,3.5,16.58,2.9510348053892215,15.06,2.71,5.929380843785633,2.9770096463022506,4.16,3.813483555184146 -2018,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,48,50,54,29,33,20,18.928244299840884,8.0,32.64709816634338,13.618506063200382,2.9618513513513514,3.89,3.5,16.58,2.9510348053892215,15.06,2.71,5.929380843785633,2.9770096463022506,4.16,3.813483555184146 -2018,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,41,54,62,24,40,36,20.0,9.0,36.6290993199192,16.653915723750597,2.9618513513513514,3.89,3.5,16.58,2.9510348053892215,15.06,2.71,5.929380843785633,2.9770096463022506,4.16,3.813483555184146 -2018,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,40,55,53,28,50,40,19.570992399787844,7.0,31.47658771984434,16.653915723750597,3.1785841064945544,3.92,4.23,12.38,3.67277027027027,13.8,2.62,5.582467292596583,3.778675496688742,3.89,5.284191652470187 -2018,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,46,46,42,33,43,34,22.0,7.0,26.14625556895568,15.844662692150408,2.9644256120527306,3.33,3.27,8.71,2.873265078183172,13.77,2.52,4.222572830905636,2.9171959459459456,3.2,4.19918513920908 -2018,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,40,37,31,25,35,23,27.0,14.0,22.664224728248186,12.940036176350311,2.921054198927933,3.03,2.99,3.87,2.7273741007194245,7.41,2.52,3.2122453531598514,2.69625,2.9400000000000004,3.190103685337541 -2018,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,31,29,27,19,22,9,26.0,19.0,28.6978636197392,15.356939773700145,2.886379018612521,2.94,2.84,3.33,2.700362239297475,6.07,2.55,3.041484518418798,2.7110673880964096,2.8399999999999994,3.0870925217674343 -2018,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,28,26,26,13,12,3,25.071755700159116,20.0,35.06761923409295,22.904626515800096,2.886379018612521,2.94,2.84,3.33,2.700362239297475,6.07,2.55,3.041484518418798,2.7110673880964096,2.8399999999999994,3.0870925217674343 -2018,1,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,24,20,29,10,10,10,25.642748099946964,18.0,37.18923114518552,24.487722918450263,2.886379018612521,2.94,2.84,3.33,2.700362239297475,6.07,2.55,3.041484518418798,2.7110673880964096,2.8399999999999994,3.0870925217674343 -2018,1,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,20,29,37,7,20,19,26.64274809994696,14.0,36.01242316449898,22.166192805300334,2.953951449763992,2.92,2.69,2.92,2.7517326968973745,4.08,2.59,2.8907446808510633,2.7962898089171975,2.86,3.035064863066859 -2018,1,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,29,37,37,17,26,19,24.357251900053036,13.0,33.172915071433394,16.844662692150408,2.933842917251052,3.11,2.95,3.56,2.772245174398916,11.33,2.56,3.2240504959422904,2.8312362404741744,3.02,3.288687518857488 -2018,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,39,34,31,20,25,18,28.71450380010608,18.0,28.68047625621899,15.39234943425036,3.037989247311828,3.26,3.1,4.6,2.9440065621582208,14.93,2.72,3.502300412938748,2.974647993943982,3.14,3.4585341235299563 -2018,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,37,26,25,19,21,11,29.0,18.0,32.483444432595775,16.035409660550215,3.008107963655799,3.13,3.06,3.49,2.9199356321839085,9.99,2.64,3.307116860961046,2.936708526107072,3.02,3.3671526929483617 -2018,1,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,29,22,29,13,16,8,25.0,15.0,34.22845108650647,17.39234943425036,2.949257793171697,3.25,2.97,3.32,2.7995415472779372,4.99,2.65,3.215697634556051,2.862581658291457,3.14,3.333221663373451 -2018,1,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,24,30,40,10,13,10,20.213740499734808,9.0,29.16921259187382,13.39234943425036,2.949257793171697,3.25,2.97,3.32,2.7995415472779372,4.99,2.65,3.215697634556051,2.862581658291457,3.14,3.333221663373451 -2018,1,29,0,0,0,0,2,0,0,0.0,1.0,0.0,0.0,31,29,37,47,12,21,18,18.928244299840884,6.0,25.892542860919093,9.296975950050454,2.949257793171697,3.25,2.97,3.32,2.7995415472779372,4.99,2.65,3.215697634556051,2.862581658291457,3.14,3.333221663373451 -2018,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,36,43,41,23,30,19,24.285496199893924,4.0,21.33874038449516,8.618506063200382,2.8248872180451126,3.24,3.16,7.17,2.6445038705137227,14.24,2.47,3.8885095057034222,2.700663265306122,3.06,3.3938983050847455 -2018,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,42,34,34,24,24,12,27.285496199893924,5.0,24.63940680986796,9.487722918450263,2.7885283018867923,3.16,3.14,5.03,2.5667698574338087,11.05,2.35,3.738718592964824,2.601002277904328,3.05,3.352233490281299 -2018,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,34,35,47,17,19,10,24.928244299840884,5.0,28.613048106442143,9.261566289500239,2.6646098783106655,3.11,3.03,4.18,2.4275040257648954,6.64,2.17,3.320583690987124,2.4215712545676005,3.14,3.02364576993305 -2018,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,39,51,51,19,34,18,20.213740499734808,4.0,25.08526072207876,9.940036176350311,2.546431022649279,2.88,2.87,7.27,2.255269774751179,12.09,1.99,3.5992527131782945,2.1864774044032442,2.86,2.842518157492355 -2018,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,45,41,41,25,29,16,17.928244299840884,3.0,21.613178049014078,8.261566289500239,2.2911627906976744,2.78,2.67,4.09,1.9052247518972563,7.38,1.72,2.9456927494615934,1.859632183908046,2.73,2.69417258382643 -2018,2,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,37,39,51,20,24,11,16.285496199893924,3.0,25.810802436950194,8.261566289500239,2.2911627906976744,2.78,2.67,4.09,1.9052247518972563,7.38,1.72,2.9456927494615934,1.859632183908046,2.73,2.69417258382643 -2018,2,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,35,55,56,18,29,20,18.928244299840884,4.0,24.05988833841681,8.261566289500239,2.2911627906976744,2.78,2.67,4.09,1.9052247518972563,7.38,1.72,2.9456927494615934,1.859632183908046,2.73,2.69417258382643 -2018,2,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,40,52,58,17,24,18,21.28549619989392,6.0,28.45994093079075,8.940036176350311,2.323564899451554,2.73,2.55,2.92,1.984451300132217,7.18,1.76,2.6962530168946097,2.0320336605890605,2.9,2.6526075173795216 -2018,2,7,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,37,48,53,13,20,21,18.928244299840884,5.0,26.880443079949245,10.618506063200382,2.3544132653061225,2.7,2.57,2.87,2.0754413191076626,8.8,1.68,2.6860014919806043,2.1390136570561458,2.79,2.6302047988366457 -2018,2,8,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,41,49,47,17,26,20,17.28549619989392,3.0,22.197275801439634,9.166192805300335,2.388885202388852,2.68,2.51,4.09,2.0483544973544974,8.14,1.71,2.911426536064114,2.132440041710115,2.72,2.56630527652696 -2018,2,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,44,41,42,47,17,19,12,23.928244299840884,4.0,26.07967626821168,7.487722918450263,2.4418579960185802,2.74,2.49,2.88,2.2077598665925517,6.3,1.9,2.65092287694974,2.2138426966292135,2.93,2.583747645951036 -2018,2,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,32,42,54,12,15,13,27.928244299840884,9.0,34.95038072518953,8.713879547400287,2.4863899253731345,2.59,2.35,2.54,2.3106689246401353,3.19,2.22,2.4757109753528543,2.295227272727273,2.56,2.5124297646165523 -2018,2,11,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,22,41,52,5,11,24,30.0,12.0,38.28276825989352,11.296975950050454,2.4863899253731345,2.59,2.35,2.54,2.3106689246401353,3.19,2.22,2.4757109753528543,2.295227272727273,2.56,2.5124297646165523 -2018,2,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,25,46,53,6,25,27,30.285496199893924,17.0,36.729503294027836,13.940036176350311,2.4863899253731345,2.59,2.35,2.54,2.3106689246401353,3.19,2.22,2.4757109753528543,2.295227272727273,2.56,2.5124297646165523 -2018,2,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,37,44,43,15,18,21,30.570992399787848,17.0,31.640224433406196,10.487722918450263,2.6015500945179584,2.46,2.27,2.52,2.3280760725342766,4.8,2.23,2.4594751033614957,2.364209225700165,2.41,2.4693338323353293 -2018,2,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,29,32,30,12,11,6,30.0,15.0,26.551498336047725,12.678469886850072,3.3148235974551765,2.47,2.24,2.42,2.3251837218490716,3.09,2.27,2.3852484572913286,2.4164337349397593,2.38,2.4796033530975263 -2018,2,15,0,0,0,0,2,1,3,0.0,0.0,0.0,0.0,25,19,21,24,4,2,1,28.28549619989392,13.0,28.092583722457327,12.904626515800096,2.914092526690392,2.44,2.13,2.34,2.2716458519179303,2.53,2.27,2.313451413714657,2.3049484536082474,2.39,2.400943806885635 -2018,2,16,0,0,0,0,3,2,3,0.0,0.0,0.0,0.0,22,15,24,36,1,1,2,27.0,14.0,34.1676894816365,14.809253031600193,2.8212059012187303,2.45,2.22,2.39,2.295992474129821,3.13,2.26,2.345308617234469,2.268952590959206,2.4,2.4232374100719425 -2018,2,17,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,32,29,35,36,9,10,7,23.928244299840884,11.0,28.422265636788318,12.035409660550215,2.8402062975027142,2.43,2.11,2.45,2.361942422236929,2.77,2.51,2.320172060630889,2.1780071174377222,2.39,2.3946743138058175 -2018,2,18,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,31,31,34,31,11,15,7,30.285496199893924,14.0,23.34546807114621,11.356939773700143,2.8402062975027142,2.43,2.11,2.45,2.361942422236929,2.77,2.51,2.320172060630889,2.1780071174377222,2.39,2.3946743138058175 -2018,2,19,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,31,28,23,29,9,7,2,31.642748099946964,15.0,34.564997765446,10.130783144750119,2.8402062975027142,2.43,2.11,2.45,2.361942422236929,2.77,2.51,2.320172060630889,2.1780071174377222,2.39,2.3946743138058175 -2018,2,20,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,27,24,25,36,5,6,11,35.0,22.0,42.24646741135216,20.583096402650167,2.8402062975027142,2.43,2.11,2.45,2.361942422236929,2.77,2.51,2.320172060630889,2.1780071174377222,2.39,2.3946743138058175 -2018,2,21,0,0,0,0,4,2,1,0.0,0.0,0.0,0.0,17,11,24,40,1,2,14,38.928244299840884,21.0,43.021007687952434,22.035409660550215,6.475435413642962,2.56,2.19,2.37,3.018036437246964,2.58,3.13,2.403613645378818,3.6698325722983256,2.68,2.5200074915719815 -2018,2,22,0,0,0,0,5,3,1,0.0,0.0,0.0,0.0,23,21,30,44,2,5,19,35.928244299840884,23.0,42.9231295094082,22.356939773700145,3.5776395089285713,2.57,2.29,2.56,2.97335628742515,3.04,3.0,2.4226986211424824,3.4593391812865493,2.57,2.5246966374269006 -2018,2,23,0,0,0,0,3,2,1,0.0,0.0,0.0,0.0,29,25,26,38,4,3,14,38.64274809994696,23.0,42.0914072348489,22.58309640265017,2.9053711790393013,2.53,2.24,2.41,2.744198877805486,2.56,2.74,2.3876387068588905,2.741585466556564,2.52,2.4833766233766235 -2018,2,24,0,0,0,0,3,2,1,0.0,0.0,0.0,0.0,26,23,24,37,4,3,12,37.0,21.0,41.319424568467916,22.58309640265017,2.735565610859729,2.41,2.08,2.32,2.3128456439393936,2.24,2.29,2.2976398729538237,2.4013648293963255,2.37,2.4074070588235292 -2018,2,25,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,28,23,25,35,4,7,13,33.928244299840884,20.0,39.28407599931893,22.58309640265017,2.735565610859729,2.41,2.08,2.32,2.3128456439393936,2.24,2.29,2.2976398729538237,2.4013648293963255,2.37,2.4074070588235292 -2018,2,26,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,25,23,21,30,6,5,7,31.642748099946964,16.0,36.64098824697258,18.583096402650167,2.735565610859729,2.41,2.08,2.32,2.3128456439393936,2.24,2.29,2.2976398729538237,2.4013648293963255,2.37,2.4074070588235292 -2018,2,27,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,28,24,19,25,9,7,4,31.71450380010608,23.0,34.71048821159024,17.13078314475012,2.7577386934673367,2.43,2.23,2.44,2.3496495619524405,2.77,2.32,2.390928490351873,2.3431498079385404,2.35,2.440657644558774 -2018,2,28,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,24,23,21,26,12,13,4,30.071755700159116,21.0,32.28514728908701,18.13078314475012,2.636326194398682,2.36,2.24,2.41,2.2037352737352736,2.41,2.09,2.381152138821631,2.199735269000854,2.26,2.4230305180979417 -2018,3,1,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,23,23,23,27,10,10,5,28.35725190005304,20.0,30.833647977651708,16.583096402650167,2.6171346704871064,2.41,2.2,2.42,2.2380297397769517,2.5,2.22,2.400342409240924,2.2233823529411763,2.36,2.454191220090963 -2018,3,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,28,26,28,11,15,6,28.71450380010608,19.0,27.34232928704602,15.583096402650167,2.6178191489361704,2.41,2.27,2.49,2.2262911522633746,2.89,2.18,2.4645381433823528,2.2537244511733534,2.34,2.497575689109806 -2018,3,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,28,27,26,13,17,6,28.071755700159116,20.0,26.98001005369279,14.583096402650169,2.897425312330255,2.42,2.28,2.49,2.305961713764813,3.04,2.27,2.435496114763897,2.417149014778325,2.34,2.496735770363101 -2018,3,4,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,28,26,23,13,15,5,29.0,20.0,28.95078089594127,15.356939773700145,2.897425312330255,2.42,2.28,2.49,2.305961713764813,3.04,2.27,2.435496114763897,2.417149014778325,2.34,2.496735770363101 -2018,3,5,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,27,30,28,25,14,15,4,27.642748099946964,18.0,32.00091895910566,15.035409660550215,2.897425312330255,2.42,2.28,2.49,2.305961713764813,3.04,2.27,2.435496114763897,2.417149014778325,2.34,2.496735770363101 -2018,3,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,29,27,30,14,13,7,26.28549619989392,14.0,31.312503899095432,14.26156628950024,2.6559065765212044,2.5,2.32,2.5,2.3410726150925485,3.37,2.29,2.4416824849007766,2.228523489932886,2.47,2.535958651242924 -2018,3,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,31,30,34,14,20,9,26.28549619989392,12.0,30.717055319335014,14.26156628950024,2.756660823838738,2.6,2.37,2.85,2.4067666989351406,3.88,2.38,2.533492394248802,2.319278425655977,2.56,2.582356939935065 -2018,3,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,30,32,34,17,22,8,26.928244299840884,10.0,27.538829426251503,12.487722918450263,2.7572735674676525,2.64,2.4,3.07,2.361281809613572,4.26,2.31,2.6201806512954597,2.3304495412844037,2.59,2.615629022082019 -2018,3,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,31,30,31,16,19,6,25.285496199893924,11.0,25.834372186555115,11.487722918450263,2.6548694779116464,2.55,2.47,2.72,2.1623827046918125,3.86,2.08,2.590934263845115,2.145920114122682,2.5,2.544468085106383 -2018,3,10,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,29,30,29,29,14,16,4,24.928244299840884,14.0,26.34449680770051,13.035409660550215,2.572281427832385,2.5,2.48,2.79,2.0831500572737687,3.39,2.05,2.6022495374041767,2.0191040462427745,2.42,2.4902300834052347 -2018,3,11,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,28,30,29,30,14,14,5,23.213740499734808,11.0,28.225672082948005,12.487722918450263,2.572281427832385,2.5,2.48,2.79,2.0831500572737687,3.39,2.05,2.6022495374041767,2.0191040462427745,2.42,2.4902300834052347 -2018,3,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,31,29,29,15,19,8,20.570992399787844,10.0,26.906666014662626,11.713879547400285,2.572281427832385,2.5,2.48,2.79,2.0831500572737687,3.39,2.05,2.6022495374041767,2.0191040462427745,2.42,2.4902300834052347 -2018,3,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,31,30,30,16,20,8,21.64274809994696,11.0,25.67036174899167,10.940036176350311,2.784196762141968,2.64,2.59,3.09,2.3100943396226414,4.63,2.21,2.7447558268590457,2.1989220917822836,2.59,2.6355931736856593 -2018,3,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,31,29,27,17,21,7,25.0,15.0,25.027839001349765,10.713879547400287,3.0642707898035937,2.63,2.58,3.37,2.2771299871299875,5.19,2.13,2.843121353558927,2.3288613303269448,2.5600000000000005,2.6226638448935007 -2018,3,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,29,27,26,14,16,6,26.71450380010608,17.0,25.272814462496967,13.809253031600193,2.796966236345581,2.53,2.49,2.78,2.1511577181208055,5.86,2.11,2.599273150543197,2.017700127064803,2.48,2.489105345243159 -2018,3,16,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,30,31,29,26,13,15,3,26.71450380010608,19.0,27.08400502514438,14.809253031600193,2.7079246257098606,2.53,2.5,2.83,2.1563260340632606,7.44,2.09,2.597677919708029,2.1338818897637797,2.45,2.5079040681693234 -2018,3,17,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,31,30,27,27,11,9,4,27.071755700159116,19.0,27.9483368627307,14.583096402650169,2.687270214236351,2.45,2.45,2.68,2.076630434782609,7.7,2.04,2.5354133813922055,1.9560937500000002,2.32,2.4088704362725712 -2018,3,18,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,34,31,24,27,10,11,3,25.71450380010608,19.0,28.389818289223886,15.583096402650167,2.687270214236351,2.45,2.45,2.68,2.076630434782609,7.7,2.04,2.5354133813922055,1.9560937500000002,2.32,2.4088704362725712 -2018,3,19,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,35,31,26,27,10,10,4,25.0,15.0,28.774451837096663,14.809253031600193,2.687270214236351,2.45,2.45,2.68,2.076630434782609,7.7,2.04,2.5354133813922055,1.9560937500000002,2.32,2.4088704362725712 -2018,3,20,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,32,32,28,28,11,14,6,24.642748099946964,15.0,28.147400438295968,14.035409660550215,2.5372810091100217,2.48,2.49,2.83,2.0657081081081077,5.07,1.98,2.5979219194794636,1.8975184275184278,2.44,2.4918405732198834 -2018,3,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,32,28,27,15,20,6,24.642748099946964,12.0,26.00531854619596,12.261566289500239,2.661633858267716,2.55,2.53,3.33,2.0679685610640868,5.64,1.93,2.696286597938144,2.0305714285714282,2.5,2.529861964969261 -2018,3,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,28,27,26,15,19,4,26.0,12.0,23.69142449069876,10.487722918450263,2.708970588235294,2.57,2.54,2.76,2.007065446868402,4.09,1.98,2.62380734897239,2.041416861826698,2.5,2.4916383526383523 -2018,3,23,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,28,28,27,25,14,17,4,28.71450380010608,14.0,22.851695004293997,9.713879547400287,2.6934515765765763,2.48,2.43,2.65,2.053711475409836,4.1,2.03,2.532531328320802,2.0363636363636366,2.4,2.4183843396746623 -2018,3,24,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,28,28,25,14,15,2,28.71450380010608,17.0,25.040049806300466,11.261566289500239,2.482722513089005,2.42,2.41,2.71,1.9879136253041363,3.48,1.96,2.548441258094357,1.9127424400417101,2.29,2.444134147861863 -2018,3,25,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,27,28,26,25,12,12,3,27.714503800106076,18.0,26.536370140336018,13.035409660550215,2.482722513089005,2.42,2.41,2.71,1.9879136253041363,3.48,1.96,2.548441258094357,1.9127424400417101,2.29,2.444134147861863 -2018,3,26,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,28,28,23,26,13,14,3,28.0,17.0,28.282267342734627,13.809253031600193,2.482722513089005,2.42,2.41,2.71,1.9879136253041363,3.48,1.96,2.548441258094357,1.9127424400417101,2.29,2.444134147861863 -2018,3,27,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,29,29,24,25,13,10,3,26.0,13.0,27.409648573096366,14.035409660550215,2.4665890027958994,2.39,2.34,2.56,1.9068662952646238,2.83,1.86,2.494356746319092,1.9431599999999998,2.32,2.402607631549672 -2018,3,28,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,26,26,22,25,10,8,5,23.928244299840884,10.0,27.092815851605977,13.261566289500237,2.4066268656716416,2.41,2.21,2.49,1.9455042340261741,2.59,1.88,2.4305248036774567,1.9542209302325582,2.35,2.418378346778908 -2018,3,29,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,24,22,21,27,7,7,4,22.928244299840884,7.0,25.963926763711836,12.261566289500239,2.4498681640625,2.41,2.21,2.37,1.9665324675324676,2.62,1.93,2.405478905359179,1.9159183673469389,2.34,2.4511143951833607 -2018,3,30,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,23,21,24,26,8,11,5,22.928244299840884,5.0,24.211726200985222,10.713879547400287,2.4498681640625,2.41,2.21,2.37,1.9665324675324676,2.62,1.93,2.405478905359179,1.9159183673469389,2.34,2.4511143951833607 -2018,3,31,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,24,24,23,27,11,12,3,22.285496199893924,6.0,24.294750994355255,8.713879547400287,2.4498681640625,2.41,2.21,2.37,1.9665324675324676,2.62,1.93,2.405478905359179,1.9159183673469389,2.34,2.4511143951833607 -2018,4,1,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,24,24,28,35,10,12,5,25.642748099946964,7.0,24.336918635460282,8.487722918450263,2.5170697329376854,2.65,2.51,2.73,1.8738220338983047,3.03,1.8,2.589797841617267,1.8595844155844155,2.55,2.5584041548630787 -2018,4,2,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,28,27,29,33,9,10,5,27.0,10.0,22.387670996405532,9.261566289500239,2.5170697329376854,2.65,2.51,2.73,1.8738220338983047,3.03,1.8,2.589797841617267,1.8595844155844155,2.55,2.5584041548630787 -2018,4,3,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,28,27,26,32,8,6,4,26.64274809994696,9.0,28.406454735241518,9.261566289500239,2.4172123893805306,2.63,2.45,2.67,1.9441802197802198,4.73,1.91,2.5265275855250153,1.9240000000000002,2.59,2.555251321125722 -2018,4,4,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,25,23,29,34,8,15,7,25.570992399787844,9.0,25.88227150613391,9.487722918450263,2.5525,2.69,2.47,2.62,2.0099912587412585,7.23,2.0,2.5445055555555554,2.101294964028777,2.67,2.5742773993808052 -2018,4,5,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,29,29,28,30,12,16,5,23.928244299840884,9.0,22.669060032093522,8.487722918450263,2.4823293172690764,2.93,2.59,2.84,2.1507573149741823,7.02,2.11,2.6808799746313614,2.255096153846154,2.8400000000000003,2.647584441054696 -2018,4,6,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,29,26,28,32,10,15,4,19.928244299840884,10.0,25.282359448124403,7.713879547400287,2.4591341256366723,2.94,2.58,2.76,2.186748717948718,9.62,2.08,2.6437199926699653,2.1305103280680435,2.89,2.6226193405511813 -2018,4,7,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,28,28,30,34,12,19,9,21.928244299840884,9.0,23.762833596458854,7.1661928053003345,2.379778852798894,2.9,2.61,3.01,2.0118052738336716,8.43,1.95,2.7136785714285714,2.075884718498659,2.79,2.6251701857620864 -2018,4,8,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,30,30,35,14,20,10,23.64274809994696,9.0,23.221996704761114,6.713879547400287,2.379778852798894,2.9,2.61,3.01,2.0118052738336716,8.43,1.95,2.7136785714285714,2.075884718498659,2.79,2.6251701857620864 -2018,4,9,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,29,30,31,14,16,8,20.928244299840884,5.0,22.410124287287903,6.940036176350311,2.379778852798894,2.9,2.61,3.01,2.0118052738336716,8.43,1.95,2.7136785714285714,2.075884718498659,2.79,2.6251701857620864 -2018,4,10,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,29,28,27,26,11,14,5,22.642748099946964,5.0,19.72682124006586,6.166192805300335,2.607349282296651,2.71,2.51,2.97,2.055232181425486,8.54,2.0,2.6531296928327643,2.1762520193861064,2.6,2.573095971563981 -2018,4,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,27,22,21,11,13,3,24.0,7.0,17.532163077731386,5.713879547400287,2.771650485436893,2.58,2.35,2.85,2.0390005491488195,6.95,2.1,2.4841462409886717,2.236325136612022,2.41,2.537003196296704 -2018,4,12,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,25,22,17,16,8,9,1,26.071755700159116,14.0,20.100612209534983,8.035409660550215,2.655617238860482,2.58,2.25,2.64,2.0660121457489877,4.28,2.03,2.409117318435754,2.1048492967180175,2.4,2.5283577959576515 -2018,4,13,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,21,16,17,17,7,5,1,25.35725190005304,12.0,26.87221382014207,12.809253031600191,2.8102640845070423,2.55,2.24,2.35,2.1415797958087053,2.97,2.09,2.395248354278875,2.104134536505332,2.4,2.5569167669255166 -2018,4,14,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,21,14,20,26,5,5,6,23.64274809994696,9.0,25.86984015885332,12.487722918450263,2.5732409972299166,2.83,2.4,2.55,2.1876802683063166,3.81,2.14,2.523239008419083,2.2135196950444724,2.75,2.601198046786282 -2018,4,15,0,0,0,0,5,0,0,0.0,0.0,0.0,0.7738433710499761,29,23,25,35,1,12,12,20.35725190005304,6.0,17.345454913233386,4.713879547400287,2.5732409972299166,2.83,2.4,2.55,2.1876802683063166,3.81,2.14,2.523239008419083,2.2135196950444724,2.75,2.601198046786282 -2018,4,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7738433710499761,24,20,30,31,7,20,7,22.71450380010608,14.0,15.016276927324919,2.809253031600191,2.5732409972299166,2.83,2.4,2.55,2.1876802683063166,3.81,2.14,2.523239008419083,2.2135196950444724,2.75,2.601198046786282 -2018,4,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,25,29,24,8,10,3,21.714503800106076,14.0,19.42181119782896,4.9046265158000955,2.989490291262136,3.61,2.57,2.94,2.305217654171705,6.74,2.23,2.7115284317276345,2.3219509125235995,3.4800000000000004,2.7013935953913926 -2018,4,18,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,23,26,26,3,5,3,18.357251900053036,13.0,21.471559171428556,5.487722918450263,2.697636186770428,3.79,2.59,2.77,2.2071073170731705,6.98,2.12,2.691733658140479,2.1493589743589743,3.6699999999999995,2.663530628323813 -2018,4,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,26,25,23,24,4,12,6,16.0,14.0,18.699463779048138,5.035409660550215,2.746144578313253,3.22,2.67,3.05,2.014695085849615,8.38,1.96,2.8107712165214584,2.017192118226601,3.0599999999999996,2.6745245454545454 -2018,4,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,23,21,22,6,11,9,15.285496199893924,8.0,19.020471028403485,8.809253031600191,2.4392567181246427,2.7,2.57,2.77,1.9063662104766397,4.97,1.84,2.6303522727272726,1.9416970091027308,2.45,2.5468018525472527 -2018,4,21,0,0,0,0,3,0,0,0.0,0.0,0.19839808630268477,0.7738433710499761,20,19,20,21,5,7,7,17.28549619989392,3.0,17.512771718264343,4.9400361763503104,2.3260451977401133,2.6,2.47,2.64,1.7949287169042771,3.09,1.74,2.5692689784442364,1.831268656716418,2.26,2.499950127334465 -2018,4,22,0,0,0,0,3,0,0,0.0,1.0,0.7935923452107391,2.3215301131499286,19,17,15,16,4,8,8,16.642748099946964,1.0,13.883141630398942,3.487722918450263,2.3260451977401133,2.6,2.47,2.64,1.7949287169042771,3.09,1.74,2.5692689784442364,1.831268656716418,2.26,2.499950127334465 -2018,4,23,0,0,0,0,4,0,0,0.0,1.0,0.9919904315134238,4.643060226299857,17,14,13,12,4,7,5,12.285496199893924,0.0,13.288543601689948,1.8092530316001911,2.3260451977401133,2.6,2.47,2.64,1.7949287169042771,3.09,1.74,2.5692689784442364,1.831268656716418,2.26,2.499950127334465 -2018,4,24,0,0,0,0,4,0,1,0.0,1.0,1.1903885178161087,5.416903597349833,15,15,14,14,3,6,2,7.928244299840884,1.0,18.210983924500027,1.5830964026501673,2.782058526740666,2.61,2.48,2.66,1.9159181353041501,2.83,1.89,2.579547553093259,1.9220111731843574,2.39,2.548425652791434 -2018,4,25,0,0,0,0,3,0,1,0.0,1.0,1.1903885178161087,5.416903597349833,18,14,15,18,2,5,6,5.213740499734807,2.0,14.2994033966661,2.713879547400287,2.6825264919129954,2.64,2.45,2.54,2.0324525316455695,2.82,1.9,2.56565237020316,2.088527397260274,2.38,2.555412264880186 -2018,4,26,0,0,0,0,3,0,0,0.0,0.0,1.3887866041187933,6.190746968399809,12,12,15,15,2,8,6,4.0,4.0,13.361958405415455,1.8092530316001911,2.5408808290155442,2.61,2.39,2.5,1.9775681130171543,2.73,1.8,2.533916471340294,2.050207075064711,2.34,2.574876626898048 -2018,4,27,0,0,0,0,3,0,0,0.0,0.0,1.1903885178161087,5.416903597349833,17,16,15,14,2,5,5,12.786259500265192,7.0,9.298308671411501,2.261566289500239,2.564113924050633,2.62,2.4,2.44,1.917741935483871,2.63,1.77,2.535406811731315,2.0251121076233183,2.31,2.605627700127065 -2018,4,28,0,0,0,0,4,0,0,0.0,0.0,0.7935923452107391,5.416903597349833,12,12,20,17,1,5,2,17.35725190005304,8.0,9.476994371359112,1.8092530316001911,2.4737621202327085,2.55,2.39,2.38,1.769920634920635,2.65,1.69,2.492793659043659,1.8027380952380954,2.2,2.5803520179372197 -2018,4,29,0,0,0,0,3,0,0,0.0,0.0,0.19839808630268477,3.0953734841999045,17,19,19,13,4,8,2,16.714503800106076,10.0,10.246980962725859,1.3569397737001434,2.4737621202327085,2.55,2.39,2.38,1.769920634920635,2.65,1.69,2.492793659043659,1.8027380952380954,2.2,2.5803520179372197 -2018,4,30,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7738433710499761,21,17,11,6,3,6,1,17.71450380010608,11.0,14.17822739871533,2.3569397737001436,2.4737621202327085,2.55,2.39,2.38,1.769920634920635,2.65,1.69,2.492793659043659,1.8027380952380954,2.2,2.5803520179372197 -2018,5,1,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,13,8,5,6,1,2,1,15.429007600212156,12.0,15.880772289618886,5.1307831447501195,2.548224956063269,2.38,2.19,2.59,1.7916526946107785,2.78,1.63,2.41310021629416,1.7474418604651163,2.06,2.4928665283540803 -2018,5,2,0,0,1,2,6,2,5,0.0,0.0,0.0,0.0,3,2,2,7,0,0,0,11.0,10.0,17.41724612216343,8.452313257900048,2.4736675951717735,2.41,2.28,2.55,1.8100745156482863,2.77,1.68,2.5437792950728917,1.9196817944705267,2.16,2.569627411045885 -2018,5,3,1,2,0,0,7,4,4,0.0,0.0,0.0,0.0,2,1,5,7,0,0,0,8.357251900053038,6.0,14.77554571134197,6.261566289500239,2.5891304347826085,2.41,2.32,2.44,1.8230638297872344,2.65,1.58,2.4828891316220645,1.9580280748663101,2.19,2.5549782527650056 -2018,5,4,0,3,1,0,8,3,2,0.0,0.0,0.39679617260536953,2.3215301131499286,3,1,4,5,0,0,2,10.285496199893922,1.0,10.779285635310183,3.261566289500239,2.3816017316017315,2.42,2.2,2.41,1.7460041623309055,2.48,1.5,2.4059779951100246,1.901623093681917,2.17,2.452344724708435 -2018,5,5,0,0,0,0,6,1,1,0.0,2.0,1.1903885178161087,5.416903597349833,7,5,5,4,0,1,1,8.285496199893922,1.0,8.16426109252965,1.8092530316001911,2.384151329243354,2.33,2.02,2.15,1.7541216503615484,2.18,1.4,2.250201750121536,1.8683527033855485,2.15,2.4791304347826086 -2018,5,6,0,0,0,1,6,2,2,0.0,2.0,1.3887866041187933,7.738433710499761,12,10,6,5,1,0,0,7.071755700159116,1.0,5.727852532397433,1.1307831447501195,2.384151329243354,2.33,2.02,2.15,1.7541216503615484,2.18,1.4,2.250201750121536,1.8683527033855485,2.15,2.4791304347826086 -2018,5,7,0,0,0,1,6,2,4,0.0,1.0,1.5871846904214781,7.964590339449785,10,8,8,2,1,0,0,7.642748099946962,1.0,5.468017205312995,0.6784698868500717,2.384151329243354,2.33,2.02,2.15,1.7541216503615484,2.18,1.4,2.250201750121536,1.8683527033855485,2.15,2.4791304347826086 -2018,5,8,0,0,0,1,5,2,5,0.0,1.0,1.9839808630268476,8.964590339449785,11,8,5,4,0,0,0,4.357251900053038,0.0,5.151964662952208,0.2261566289500239,2.6783956880152187,2.37,2.09,2.46,1.9684548232213006,2.33,1.53,2.4058145777410695,2.1469465648854964,2.16,2.5320574030633365 -2018,5,9,0,0,0,2,6,4,5,0.0,2.0,1.9839808630268476,8.964590339449785,9,5,3,5,0,0,0,10.64274809994696,1.0,5.710234741747157,0.2261566289500239,2.6486967418546365,2.39,2.15,2.42,1.9367371323529412,2.48,1.48,2.4205646589902567,2.021175606171932,2.19,2.5304915667998227 -2018,5,10,0,0,0,2,7,5,5,0.0,1.0,1.785582776724163,8.964590339449785,11,6,5,8,0,0,0,14.0,1.0,5.289711513743243,0.2261566289500239,2.4448989898989897,2.41,2.22,2.38,1.7382011494252876,2.44,1.55,2.3905789473684207,1.8365354884047789,2.24,2.5413463766250484 -2018,5,11,0,0,1,2,9,7,6,0.0,0.0,1.1903885178161087,7.190746968399809,11,8,13,10,0,0,0,13.071755700159116,6.0,10.949344261339977,0.4523132579000478,2.4939408866995074,2.43,2.2,2.41,1.6796270543615677,2.5,1.56,2.4312653736991487,1.828485280151947,2.31,2.539474256215188 -2018,5,12,0,0,1,2,10,7,6,0.0,0.0,0.0,4.0953734841999045,19,12,13,10,0,0,0,7.714503800106078,6.0,12.264494210158315,0.6784698868500717,2.1767597765363127,2.38,2.25,2.4,1.6423335297583972,2.51,1.43,2.459361568954726,1.7163758389261747,2.25,2.575182941604071 -2018,5,13,0,0,1,3,9,7,7,0.0,0.0,0.19839808630268477,1.5476867420999523,16,13,9,7,1,0,0,3.0,6.0,11.223960048648928,1.6784698868500718,2.1767597765363127,2.38,2.25,2.4,1.6423335297583972,2.51,1.43,2.459361568954726,1.7163758389261747,2.25,2.575182941604071 -2018,5,14,0,0,2,3,9,9,9,0.0,0.0,0.39679617260536953,4.0953734841999045,10,6,4,4,0,0,0,1.0,5.0,9.395296497854574,0.9046265158000956,2.1767597765363127,2.38,2.25,2.4,1.6423335297583972,2.51,1.43,2.459361568954726,1.7163758389261747,2.25,2.575182941604071 -2018,5,15,0,2,2,2,9,9,8,0.6427480999469614,0.0,0.5951942589080543,4.869216855249881,5,2,4,3,0,0,0,5.714503800106078,5.0,8.430574695081734,0.9046265158000956,2.3067036011080333,2.54,2.35,2.5,1.7645058708414874,2.73,1.47,2.5391503724394786,1.9324096385542169,2.44,2.618396226415095 -2018,5,16,0,0,1,2,8,7,9,0.0,0.0,0.7935923452107391,6.416903597349833,12,7,4,1,0,0,0,9.429007600212156,6.0,6.282220013525811,0.6784698868500717,2.423626062322946,2.61,2.43,2.52,1.790106846062525,2.69,1.51,2.562569680489463,1.902341526520052,2.55,2.6803491329479767 -2018,5,17,0,0,1,2,7,6,10,0.0,0.0,0.7935923452107391,5.643060226299857,8,5,4,3,0,0,0,9.642748099946962,6.0,5.670799626001057,0.4523132579000478,2.5159499431171786,2.49,2.34,2.37,1.8019728975687528,2.61,1.57,2.501813725490196,1.8851757469244288,2.35,2.644969735584581 -2018,5,18,0,0,0,1,7,5,11,0.0,0.0,0.7935923452107391,3.8692168552498805,12,7,5,3,0,0,0,10.64274809994696,5.0,8.82161359347247,0.9046265158000956,2.5613251961639056,2.39,2.33,2.53,1.770753232152895,2.56,1.57,2.4979314565483475,1.8455981941309256,2.23,2.5910690684289066 -2018,5,19,0,0,1,1,7,6,10,0.0,0.0,1.1903885178161087,4.643060226299857,16,11,5,6,1,0,0,8.357251900053038,4.0,11.306849924315816,1.3569397737001434,2.5003331067301153,2.46,2.34,2.4,1.7128459119496855,2.57,1.47,2.5320208473436447,1.7498873873873872,2.25,2.5968004984078634 -2018,5,20,0,1,2,1,10,11,12,0.0,0.0,1.3887866041187933,7.964590339449785,2,1,6,6,0,0,0,7.714503800106078,5.0,8.66163464875148,0.4523132579000478,2.5003331067301153,2.46,2.34,2.4,1.7128459119496855,2.57,1.47,2.5320208473436447,1.7498873873873872,2.25,2.5968004984078634 -2018,5,21,0,1,2,2,9,10,10,0.0,0.0,1.1903885178161087,7.643060226299856,3,2,5,4,0,0,0,7.357251900053039,6.0,5.120107523059569,0.2261566289500239,2.5003331067301153,2.46,2.34,2.4,1.7128459119496855,2.57,1.47,2.5320208473436447,1.7498873873873872,2.25,2.5968004984078634 -2018,5,22,0,0,3,4,9,10,12,0.6427480999469614,0.0,0.9919904315134238,6.643060226299857,7,5,3,1,0,0,0,3.0,4.0,4.495678280259484,0.2261566289500239,2.5233482142857144,2.55,2.31,2.51,1.8096411609498682,2.5,1.52,2.5126442562202222,1.853335369578497,2.39,2.6120202151094984 -2018,5,23,1,2,1,7,11,11,13,0.6427480999469614,0.0,1.3887866041187933,6.8692168552498805,0,0,1,0,0,0,0,2.714503800106077,4.0,4.269893013076282,0.2261566289500239,2.440413657255417,2.66,2.31,2.64,1.7933643892339544,2.72,1.44,2.5504686274509805,1.8651756007393714,2.59,2.6878344860481755 -2018,5,24,0,2,4,10,10,11,14,0.6427480999469614,0.0,2.074828002840276,8.869216855249881,4,1,0,0,0,0,0,4.357251900053038,5.0,2.054338448619234,0.0,2.536312968917471,2.74,2.44,2.68,1.895013819789939,2.9,1.59,2.6616490891658677,1.9720869565217387,2.6700000000000004,2.7723213100243416 -2018,5,25,2,4,7,11,10,11,15,0.0,0.0,2.404211474760472,10.095373484199904,0,0,0,0,0,0,0,7.071755700159116,7.0,0.5421175297504665,0.0,2.4216082603254065,2.71,2.31,2.51,1.937554032683184,2.66,1.56,2.4778427128427127,2.0313581129378124,2.61,2.7560827892762885 -2018,5,26,7,8,9,12,11,10,16,0.0,0.0,1.950344328176937,8.547686742099952,0,0,0,0,0,0,0,10.429007600212154,7.0,1.3004062783799324,0.0,2.628688524590164,2.68,2.26,2.45,1.9169502074688796,2.2,1.63,2.5159921317924763,1.978820895522388,2.58,2.7901233361826843 -2018,5,27,0,3,13,13,11,12,16,0.0,0.0,2.110836235111347,7.0,6,1,0,0,0,0,0,6.357251900053038,3.0,2.2105376683222726,0.0,2.628688524590164,2.68,2.26,2.45,1.9169502074688796,2.2,1.63,2.5159921317924763,1.978820895522388,2.58,2.7901233361826843 -2018,5,28,0,2,14,14,9,10,16,0.0,2.0,1.761735205318101,8.095373484199904,8,2,0,0,0,0,0,7.0,0.0,4.434314619049948,0.2261566289500239,2.628688524590164,2.68,2.26,2.45,1.9169502074688796,2.2,1.63,2.5159921317924763,1.978820895522388,2.58,2.7901233361826843 -2018,5,29,4,7,12,11,11,10,17,0.0,4.0,2.098675574246338,11.964590339449785,0,0,0,0,0,0,0,10.35725190005304,0.0,3.874540152221995,0.2261566289500239,2.628688524590164,2.68,2.26,2.45,1.9169502074688796,2.2,1.63,2.5159921317924763,1.978820895522388,2.58,2.7901233361826843 -2018,5,30,2,5,11,8,12,13,17,0.0,1.0,2.761870974030535,13.190746968399809,1,0,0,0,0,0,0,12.714503800106076,2.0,2.5964305790155904,0.0,2.7175710357470213,2.6,2.42,2.61,2.0369703670942063,3.1,1.67,2.5995002658160553,2.1513968957871397,2.47,2.688004788507582 -2018,5,31,0,3,12,9,13,13,18,0.0,0.0,2.3650748014251657,11.869216855249881,1,0,0,0,0,0,0,13.429007600212154,5.0,1.8315434971467297,0.0,2.6058,2.66,2.45,2.66,2.0178202479338845,2.82,1.55,2.6470311674590596,2.139263502454992,2.4900000000000007,2.711854988092088 -2018,6,1,4,8,8,11,13,11,19,0.0,0.0,2.539625316321789,12.095373484199905,0,0,0,1,0,0,0,10.64274809994696,3.0,3.9131920775748648,0.0,2.779768786127167,2.7,2.6,2.79,2.205995614035088,2.89,1.73,2.7796707254330304,2.318113532110092,2.53,2.744854958634412 -2018,6,2,8,8,3,6,13,13,20,0.0,3.0,2.388922372831227,13.416903597349833,0,0,2,2,0,0,0,5.0,0.0,4.699052610637917,0.0,2.894573002754821,2.67,2.46,2.47,2.2980145454545453,2.55,1.75,2.6233354605403103,2.4016736207695875,2.54,2.7608256467941508 -2018,6,3,0,0,4,3,12,13,17,0.0,7.0,3.098811342958772,15.738433710499761,5,2,1,2,0,0,0,6.928244299840884,0.0,2.7070206760561795,0.0,2.894573002754821,2.67,2.46,2.47,2.2980145454545453,2.55,1.75,2.6233354605403103,2.4016736207695875,2.54,2.7608256467941508 -2018,6,4,0,0,1,2,10,6,14,0.0,6.0,4.809424521989721,16.286120452599715,14,5,0,0,0,0,0,9.642748099946962,0.0,0.47582259703289714,0.0,2.894573002754821,2.67,2.46,2.47,2.2980145454545453,2.55,1.75,2.6233354605403103,2.4016736207695875,2.54,2.7608256467941508 -2018,6,5,0,0,2,7,8,6,17,0.0,3.0,6.278627248702031,16.416903597349833,9,5,2,1,0,0,0,9.642748099946962,1.0,0.5769344144817167,0.0,2.9078485041374917,2.71,2.57,2.7,2.4359545454545457,2.68,1.54,2.730868772782503,2.5905559416261292,2.56,2.7344406422742824 -2018,6,6,0,0,1,8,8,8,17,0.0,1.0,6.042322983031072,15.643060226299857,8,6,4,0,0,0,0,7.0,1.0,0.43063688422195395,0.0,2.804192546583851,2.65,2.54,2.61,2.3591627420198846,2.74,1.66,2.6638056566788015,2.436542288557214,2.56,2.7232127179973897 -2018,6,7,0,0,4,7,9,10,17,0.0,1.0,5.454939941983424,15.095373484199905,6,3,0,1,0,0,0,7.642748099946962,1.0,0.25371270803658474,0.0,2.8030754098360653,2.66,2.49,2.51,2.300826536160957,2.66,1.8,2.609472329472329,2.4047785402370554,2.57,2.7421692326949554 -2018,6,8,0,1,5,9,11,12,17,0.0,3.0,5.575293603113751,16.416903597349833,1,0,0,0,0,0,0,7.642748099946962,0.0,0.22210988899631245,0.0,2.8353724747474747,2.69,2.29,2.49,2.425207423580786,2.51,1.75,2.508055207026349,2.50094958968347,2.58,2.7986556846595083 -2018,6,9,1,3,5,10,12,13,17,0.0,3.0,6.346769984431113,17.190746968399807,1,1,0,0,0,0,0,13.071755700159116,1.0,0.6815002167782503,0.0,2.5331752305665347,2.62,2.33,2.3,2.166827425915166,2.35,1.9,2.4872495511669657,2.184903846153846,2.44,2.708712773465067 -2018,6,10,0,1,3,11,12,13,18,0.0,2.0,5.349585385002166,16.095373484199904,3,2,0,0,0,0,0,15.071755700159116,2.0,3.5462671164970834,0.0,2.5331752305665347,2.62,2.33,2.3,2.166827425915166,2.35,1.9,2.4872495511669657,2.184903846153846,2.44,2.708712773465067 -2018,6,11,0,0,3,10,10,12,19,0.0,4.0,3.5316157478352124,15.643060226299857,5,3,0,0,0,0,0,10.64274809994696,0.0,3.8620989201412232,0.0,2.5331752305665347,2.62,2.33,2.3,2.166827425915166,2.35,1.9,2.4872495511669657,2.184903846153846,2.44,2.708712773465067 -2018,6,12,0,0,6,8,7,12,19,0.0,7.0,3.5554633192412743,17.416903597349833,4,3,0,0,0,0,0,8.856488599681768,0.0,3.047493977309081,0.0,3.0264180929095352,2.71,2.41,2.55,2.544733955019199,2.74,2.12,2.5531973018549747,2.63471875,2.61,2.7802907238123784 -2018,6,13,0,2,9,7,11,12,19,0.0,8.0,7.200718592242108,19.73843371049976,1,0,0,0,0,0,0,9.642748099946962,0.0,0.6148405938499916,0.0,3.0416,2.69,2.41,2.56,2.4399330357142857,2.82,2.14,2.5392845146120258,2.5943162393162393,2.58,2.7480204552952823 -2018,6,14,4,5,4,10,14,13,18,0.0,7.0,8.198234561595036,21.286120452599715,1,0,0,0,0,0,0,9.0,0.0,0.8758328353292446,0.0,2.869250149970006,2.71,2.5,2.53,2.413096646942801,2.71,2.19,2.6408175842235004,2.515624615384615,2.6,2.766226708074534 -2018,6,15,0,1,6,13,12,14,18,0.0,5.0,7.10008248898483,16.416903597349833,3,1,0,0,0,0,0,8.357251900053038,0.0,1.2296811876999831,0.0,2.8431121550205516,2.77,2.47,2.48,2.331645220588235,2.55,2.16,2.6246763362879397,2.4125802391441153,2.65,2.7465488047808764 -2018,6,16,1,2,11,15,12,15,18,0.0,1.0,5.278237159137231,7.321530113149929,0,0,0,0,0,0,0,5.071755700159116,2.0,1.903901871035565,0.0,2.535776997366111,2.84,2.58,2.89,2.0495852301466866,3.31,1.66,2.7721478708469816,2.0353719008264464,2.74,2.747832010780057 -2018,6,17,4,6,15,15,14,15,17,0.6427480999469614,0.0,4.175682029937329,10.416903597349833,0,0,0,0,0,0,0,1.071755700159116,4.0,2.943895772572089,0.0,2.535776997366111,2.84,2.58,2.89,2.0495852301466866,3.31,1.66,2.7721478708469816,2.0353719008264464,2.74,2.747832010780057 -2018,6,18,7,11,17,13,16,15,16,1.928244299840884,0.0,2.539625316321789,10.869216855249881,0,0,0,0,0,0,0,0.35725190005303864,1.0,2.366635814306893,0.0,2.535776997366111,2.84,2.58,2.89,2.0495852301466866,3.31,1.66,2.7721478708469816,2.0353719008264464,2.74,2.747832010780057 -2018,6,19,8,11,9,10,17,15,14,3.0,2.0,3.1348195752298427,13.095373484199905,0,0,0,0,0,0,0,0.0,0.0,2.233024803189373,0.0,2.8489343683839095,2.8,2.6,2.91,2.2522706935123042,3.0,2.08,2.8520894892359645,2.4106373815676143,2.7,2.8364581869290233 -2018,6,20,1,5,7,8,16,15,14,4.285496199893923,6.0,4.075099540265144,15.964590339449785,0,0,0,0,0,0,0,0.0,0.0,1.7074107656209792,0.0,3.009724821133737,2.71,2.47,2.68,2.263248407643312,2.77,2.24,2.721500340986588,2.518823529411765,2.59,2.786005509641873 -2018,6,21,2,5,4,4,15,13,16,0.6427480999469614,7.0,5.556323296857112,17.964590339449785,0,0,0,0,0,0,0,3.0,0.0,0.7719826663809894,0.0,3.142262773722628,2.75,2.52,2.65,2.374283231972198,2.78,2.16,2.710765317919075,2.6853536257833484,2.64,2.8242664121016303 -2018,6,22,0,2,3,4,14,12,18,0.6427480999469614,9.0,4.793133847591699,19.19074696839981,1,0,0,0,0,0,0,3.6427480999469615,0.0,0.4053374255096842,0.0,2.874390075809787,2.78,2.47,2.55,2.2368235961429384,2.82,2.05,2.6359492273730685,2.488511354079058,2.65,2.8020188155459596 -2018,6,23,0,1,5,7,14,12,18,0.0,7.0,4.770287848654414,17.416903597349833,6,2,0,0,0,0,0,2.642748099946961,0.0,0.7980681303633633,0.0,2.583371598639456,2.69,2.38,2.51,1.9387234042553192,2.47,1.85,2.534919833729216,2.120229226361032,2.53,2.695606515894354 -2018,6,24,2,6,6,6,16,15,19,1.7145038001060775,7.0,4.213641822890697,17.643060226299855,0,0,0,0,0,0,0,0.6427480999469614,0.0,2.3837989696110475,0.0,2.583371598639456,2.69,2.38,2.51,1.9387234042553192,2.47,1.85,2.534919833729216,2.120229226361032,2.53,2.695606515894354 -2018,6,25,2,5,4,6,14,14,18,0.0,6.0,5.53711202404769,17.738433710499763,1,0,0,0,0,0,0,5.642748099946961,0.0,0.8217095611351651,0.0,2.583371598639456,2.69,2.38,2.51,1.9387234042553192,2.47,1.85,2.534919833729216,2.120229226361032,2.53,2.695606515894354 -2018,6,26,0,1,5,7,12,15,19,0.0,7.0,8.209254019005918,19.19074696839981,3,1,0,0,0,0,0,5.642748099946961,0.0,0.32322170644513193,0.0,2.5289409499358153,2.7,2.48,2.58,1.8032127060715721,2.78,1.79,2.673852118526724,2.165512311358221,2.51,2.727818022491602 -2018,6,27,0,1,7,10,13,13,20,0.0,6.0,9.931693739563272,19.64306022629986,0,1,0,0,0,0,0,6.285496199893923,0.0,0.3927307048536791,0.0,2.679587737843552,2.73,2.43,2.55,1.8984864577801377,2.81,1.77,2.6847253238052704,2.378846153846154,2.59,2.744819616685456 -2018,6,28,4,8,9,13,14,15,21,0.0,4.0,10.40103806112852,19.64306022629986,0,0,0,0,0,0,0,7.642748099946962,0.0,0.5769344144817167,0.0,2.872647462277092,2.82,2.56,2.71,1.8646391030133147,2.98,1.46,2.7875287692607764,2.106987818383167,2.71,2.7976397774687065 -2018,6,29,10,11,13,16,15,14,21,0.0,4.0,6.867459427641266,18.416903597349833,0,0,0,0,0,0,0,5.285496199893922,0.0,0.9064594812548511,0.0,2.8100613120784796,2.86,2.66,3.05,2.197780736795384,3.54,1.6,2.876528762155926,2.405139813581891,2.7000000000000006,2.840709012219959 -2018,6,30,11,12,16,15,15,16,20,0.0,6.0,3.928411920440582,15.643060226299857,0,0,0,0,0,0,0,5.213740499734807,0.0,1.399429980886986,0.0,2.8100613120784796,2.86,2.66,3.05,2.197780736795384,3.54,1.6,2.876528762155926,2.405139813581891,2.7000000000000006,2.840709012219959 -2018,7,1,15,15,16,9,16,16,20,0.0,7.0,4.471895712870515,15.643060226299857,0,0,0,0,0,0,0,3.5709923997878454,0.0,0.9173040235260863,0.0,2.728629579375848,2.78,2.63,3.02,2.249571840263483,3.56,1.9,2.823759922555663,2.3719584332533974,2.6000000000000005,2.71933170995671 -2018,7,2,13,16,12,9,17,16,19,0.0,7.0,6.949379545494269,16.643060226299855,0,0,0,0,0,0,0,7.0,0.0,0.5074254160731695,0.0,2.728629579375848,2.78,2.63,3.02,2.249571840263483,3.56,1.9,2.823759922555663,2.3719584332533974,2.6000000000000005,2.71933170995671 -2018,7,3,14,16,12,13,17,16,20,0.0,5.0,7.877972599988518,18.416903597349833,0,0,0,0,0,0,0,6.357251900053038,0.0,1.421164430770689,0.0,2.8604415011037525,2.8,2.58,3.14,2.3656820682068207,3.98,2.18,2.856705830192862,2.441662551440329,2.67,2.708310502283105 -2018,7,4,15,14,15,15,16,17,18,0.0,5.0,7.954761131839733,19.416903597349833,0,0,0,0,0,0,0,3.071755700159116,0.0,0.8233675890756331,0.0,2.9500692383778433,2.75,2.58,2.74,2.305820995962315,3.54,2.24,2.7250433223782493,2.417986891385768,2.6,2.6971856534286105 -2018,7,5,14,14,16,12,16,17,17,3.285496199893923,8.0,8.79087291230238,22.05996382364969,0,0,0,0,0,0,0,0.0,0.0,0.06950899840854717,0.0,2.9500692383778433,2.75,2.58,2.74,2.305820995962315,3.54,2.24,2.7250433223782493,2.417986891385768,2.6,2.6971856534286105 -2018,7,6,12,11,7,10,15,15,18,1.2854961998939227,13.0,10.796486038636214,22.38149393679962,0,0,0,0,0,0,0,0.35725190005303864,0.0,0.0,0.0,6.054755732801595,2.7,2.47,2.54,2.5709839080459767,2.81,2.35,2.603069498069498,3.0712632508833924,2.56,2.680920281359906 -2018,7,7,0,2,2,9,11,12,16,0.6427480999469614,15.0,12.418425424648724,22.607650565749644,0,1,0,0,0,0,0,2.0,0.0,0.0,0.0,3.2671967654986527,2.62,2.36,2.38,2.3889137380191694,2.8,2.24,2.5143206182996756,2.8003814713896458,2.47,2.647378487453939 -2018,7,8,2,2,5,10,10,12,15,0.6427480999469614,15.0,13.010634539364057,21.381493936799618,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,3.2671967654986527,2.62,2.36,2.38,2.3889137380191694,2.8,2.24,2.5143206182996756,2.8003814713896458,2.47,2.647378487453939 -2018,7,9,6,5,9,12,11,14,15,1.0,14.0,12.9764741101045,17.286120452599715,0,0,0,0,0,0,0,3.714503800106077,0.0,0.0,0.0,3.2671967654986527,2.62,2.36,2.38,2.3889137380191694,2.8,2.24,2.5143206182996756,2.8003814713896458,2.47,2.647378487453939 -2018,7,10,10,10,12,13,13,15,17,0.6427480999469614,13.0,11.61655197352654,13.416903597349833,0,0,0,0,0,0,0,2.642748099946961,0.0,0.0,0.0,4.338346699568167,2.69,2.45,2.64,2.422248803827751,3.4,2.25,2.7243442206803183,3.2627372262773724,2.62,2.6750997075245944 -2018,7,11,7,9,8,15,15,16,18,1.3572519000530385,12.0,10.536659745342671,14.416903597349833,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.5151793721973092,2.71,2.41,2.67,2.3878655234657042,2.67,2.25,2.6899282582702275,2.9141262509622785,2.65,2.6803238025415443 -2018,7,12,3,6,8,16,15,15,19,5.429007600212154,11.0,9.640509914290927,14.964590339449785,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.40072625698324,2.74,2.35,2.56,2.4875911602209944,2.85,2.26,2.6276784197111303,3.1902380952380955,2.65,2.6744050239544217 -2018,7,13,4,7,11,15,14,15,19,6.429007600212154,12.0,9.628689198905025,17.738433710499763,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.612947173308619,2.73,2.42,2.75,2.519382566585956,2.88,2.27,2.6600593928728555,3.2861571428571428,2.64,2.6842044397181977 -2018,7,14,4,10,12,13,14,16,20,6.071755700159116,13.0,11.316563998942392,16.964590339449785,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.622108262108262,2.63,2.45,2.8,2.5043140906269397,3.04,2.36,2.6803692707366857,3.187380191693291,2.58,2.613049772507928 -2018,7,15,9,11,13,12,15,15,20,8.071755700159116,12.0,9.002528348592257,17.190746968399807,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.622108262108262,2.63,2.45,2.8,2.5043140906269397,3.04,2.36,2.6803692707366857,3.187380191693291,2.58,2.613049772507928 -2018,7,16,11,13,14,11,16,15,20,9.071755700159116,12.0,10.887833637372767,17.738433710499763,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.622108262108262,2.63,2.45,2.8,2.5043140906269397,3.04,2.36,2.6803692707366857,3.187380191693291,2.58,2.613049772507928 -2018,7,17,11,12,9,8,16,15,20,7.0,12.0,11.123883582191361,18.51227708154974,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.289197080291971,2.7,2.52,2.73,2.493084600760456,3.15,2.3,2.6468176538908246,3.203375,2.61,2.658687244775402 -2018,7,18,8,7,4,9,15,14,21,3.3572519000530385,12.0,11.58039978976143,17.643060226299855,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.224938650306748,2.71,2.53,2.71,2.548598360655738,2.92,2.18,2.687275396359366,3.4422339722405813,2.65,2.6652661328309 -2018,7,19,2,4,5,10,13,13,23,1.6427480999469615,13.0,12.95788957290397,20.643060226299855,0,0,0,0,0,0,0,3.285496199893923,0.0,0.0,0.0,5.822539159109645,2.64,2.47,2.6,2.501580366774541,2.93,2.21,2.6062955586536547,3.4563157894736842,2.57,2.644009140535737 -2018,7,20,4,5,6,10,13,14,23,1.0,11.0,11.912958180945392,21.64306022629986,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,7.298733552631579,2.58,2.49,2.65,2.4417665816326526,2.82,1.94,2.6133788121990373,3.135,2.5,2.583351804702711 -2018,7,21,2,4,7,9,12,14,23,0.0,11.0,12.857507790499058,19.095373484199904,0,0,0,0,0,0,0,2.642748099946961,0.0,0.0,0.0,7.396157894736842,2.64,2.44,2.5,2.438692660550459,2.74,2.03,2.552150227981761,3.0947544022242814,2.54,2.6344527595884006 -2018,7,22,4,7,6,8,13,12,22,2.357251900053039,12.0,11.114895876722532,20.86921685524988,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,7.396157894736842,2.64,2.44,2.5,2.438692660550459,2.74,2.03,2.552150227981761,3.0947544022242814,2.54,2.6344527595884006 -2018,7,23,10,10,6,8,12,11,22,5.357251900053039,14.0,9.588069412768897,23.738433710499763,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,7.396157894736842,2.64,2.44,2.5,2.438692660550459,2.74,2.03,2.552150227981761,3.0947544022242814,2.54,2.6344527595884006 -2018,7,24,12,12,8,8,13,11,20,7.429007600212154,16.0,11.754864680031309,24.833807194699666,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,14.206306113723814,2.68,2.46,2.72,2.554460567823344,2.97,2.22,2.621902386117137,8.821596837944664,2.62,2.6005920568766854 -2018,7,25,11,10,9,7,14,13,19,8.429007600212156,16.0,12.100926559273223,25.059963823649692,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.979333333333335,2.66,2.46,2.67,2.476648936170213,2.99,2.22,2.5990782250686184,7.087140039447732,2.6,2.60870808940926 -2018,7,26,10,11,7,5,15,12,19,9.071755700159116,15.0,9.797486956482462,23.059963823649692,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,6.581062308478039,2.69,2.5,2.75,2.4912684124386253,2.95,2.36,2.6335844350212025,5.39575587905935,2.61,2.6456300376141857 -2018,7,27,11,10,3,4,15,12,19,6.357251900053038,14.0,9.93452138157561,21.381493936799618,0,0,0,1,0,0,0,0.0,0.0,0.03790617936827486,0.0,7.230011918951133,2.71,2.56,2.76,2.471140350877193,3.13,2.31,2.681948310139165,6.477209302325581,2.6,2.662940090857467 -2018,7,28,11,9,2,4,14,11,19,6.642748099946962,12.0,9.188624179176994,20.05996382364969,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.742420574886536,2.65,2.52,2.61,2.4514379947229554,2.94,2.35,2.644082661290322,3.4088973966309344,2.58,2.655674926889333 -2018,7,29,8,6,3,4,13,11,20,9.0,13.0,8.424538355283154,18.964590339449785,0,0,0,0,0,0,0,0.0,0.0,0.41085478056758257,0.0,3.742420574886536,2.65,2.52,2.61,2.4514379947229554,2.94,2.35,2.644082661290322,3.4088973966309344,2.58,2.655674926889333 -2018,7,30,5,4,4,4,12,12,17,8.285496199893922,13.0,8.43466726420611,21.059963823649692,0,0,0,0,0,0,0,0.0,0.0,0.8217095611351651,0.0,3.742420574886536,2.65,2.52,2.61,2.4514379947229554,2.94,2.35,2.644082661290322,3.4088973966309344,2.58,2.655674926889333 -2018,7,31,7,6,4,5,13,12,16,6.357251900053038,14.0,9.127012023255595,18.286120452599715,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.604395491803279,2.66,2.55,2.72,2.480819366852886,3.09,2.42,2.6382619372442018,3.690545938748336,2.61,2.6310624824092317 -2018,8,1,7,10,6,5,14,9,15,3.714503800106077,14.0,10.047524286332155,21.059963823649692,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.946993318485523,2.74,2.58,2.73,2.4246456692913387,3.05,2.41,2.6802623906705536,3.4882556270096456,2.69,2.6779599597360475 -2018,8,2,14,11,7,6,13,10,16,1.6427480999469615,12.0,10.675518537960809,21.286120452599715,0,0,0,1,0,0,0,2.642748099946961,0.0,0.0,0.0,4.813077427821522,2.75,2.57,2.81,2.5402073515551367,3.21,2.41,2.6767731977483202,3.9523364485981314,2.69,2.650846788661643 -2018,8,3,13,11,8,9,13,12,16,0.6427480999469614,12.0,8.450924618317424,20.512277081549737,0,0,0,0,0,0,0,2.0,0.0,0.0,0.0,4.894150943396227,2.75,2.61,2.79,2.523432911392405,3.21,2.27,2.7091830708661413,3.68171875,2.69,2.669031836540746 -2018,8,4,10,12,11,10,15,14,17,1.0,12.0,8.88715008052839,22.286120452599715,0,0,0,0,0,0,0,0.0,0.0,0.06950899840854717,0.0,10.255380794701987,2.83,2.61,2.88,2.5650235294117647,3.23,2.22,2.738376918089475,3.436998880179171,2.78,2.7212773637633907 -2018,8,5,11,12,14,13,16,15,18,3.0,11.0,8.35468574550934,23.059963823649692,0,0,0,0,0,0,0,0.0,0.0,0.1769241761853692,0.0,10.255380794701987,2.83,2.61,2.88,2.5650235294117647,3.23,2.22,2.738376918089475,3.436998880179171,2.78,2.7212773637633907 -2018,8,6,13,14,12,12,16,15,18,5.0,12.0,7.175594048669483,23.833807194699666,0,0,0,0,0,0,0,0.0,0.0,0.03790617936827486,0.0,10.255380794701987,2.83,2.61,2.88,2.5650235294117647,3.23,2.22,2.738376918089475,3.436998880179171,2.78,2.7212773637633907 -2018,8,7,15,13,9,8,16,16,19,8.0,13.0,8.101543868317703,22.05996382364969,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,10.1952983465133,2.98,2.65,3.16,2.5326221577164976,3.94,2.37,2.874177141186788,4.437178217821782,2.96,2.762429906542056 -2018,8,8,13,12,10,10,16,14,18,10.0,13.0,8.891325066629118,18.190746968399807,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,7.398091803278689,2.96,2.7,3.32,2.5824577067669168,3.71,2.68,3.015525501059149,3.9205015673981185,2.94,2.8153918464278647 -2018,8,9,13,12,9,11,15,13,18,11.0,14.0,10.365164091938068,16.512277081549737,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.240069324090121,3.0,2.67,2.87,2.6055723443223444,3.48,2.71,2.84136614340263,3.3284699915469145,2.96,2.855687014174668 -2018,8,10,9,9,10,11,15,13,16,8.357251900053038,14.0,11.605072512864805,14.512277081549737,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,7.516948051948051,2.93,2.62,2.82,2.620173380928098,3.22,2.56,2.79684800897364,8.310488922841863,2.88,2.8671815906562848 -2018,8,11,4,7,8,10,15,14,15,1.6427480999469615,12.0,11.878386583275612,14.286120452599715,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,6.145822784810127,2.84,2.62,2.76,2.4882507288629734,2.9,2.53,2.750688277087034,4.748487140695915,2.7799999999999994,2.7991879802729676 -2018,8,12,6,9,8,11,14,14,15,0.0,11.0,9.300951709870771,15.059963823649689,0,0,0,0,0,0,0,0.6427480999469614,0.0,0.0,0.0,6.145822784810127,2.84,2.62,2.76,2.4882507288629734,2.9,2.53,2.750688277087034,4.748487140695915,2.7799999999999994,2.7991879802729676 -2018,8,13,5,7,8,11,13,12,15,1.7145038001060775,10.0,8.687087289135446,14.964590339449785,0,0,0,0,0,0,0,0.0,0.0,0.06950899840854717,0.0,6.145822784810127,2.84,2.62,2.76,2.4882507288629734,2.9,2.53,2.750688277087034,4.748487140695915,2.7799999999999994,2.7991879802729676 -2018,8,14,9,8,9,8,12,12,17,5.071755700159116,9.0,8.406097769576668,17.738433710499763,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.873331024930748,2.93,2.65,2.98,2.554540358744395,3.3,2.65,2.8509125475285173,3.48242983159583,2.88,2.829597720415689 -2018,8,15,11,11,9,8,14,14,18,5.357251900053039,9.0,8.45103498767575,14.869216855249881,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.477490494296577,2.95,2.72,3.06,2.728373867429662,3.5,2.73,2.8956737458806296,3.485489833641405,2.91,2.8999241104752427 -2018,8,16,12,12,10,10,15,14,20,2.714503800106077,11.0,8.612256929654066,16.643060226299855,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.230062805303559,2.96,2.7,2.94,2.695865209471767,4.18,2.7,2.9016815360744763,3.0439240506329113,2.92,2.877967851695413 -2018,8,17,9,12,10,9,16,14,19,1.6427480999469615,12.0,8.918070193733573,17.190746968399807,0,0,0,0,0,0,0,1.2854961998939227,0.0,0.0,0.0,4.329508825786647,2.93,2.69,2.9,2.676285836542576,3.61,2.66,2.8548016350084153,2.9133397683397684,2.88,2.8507734236888624 -2018,8,18,10,11,9,9,15,13,19,1.3572519000530385,12.0,6.6656110223770275,18.738433710499763,0,0,0,0,0,0,0,0.6427480999469614,0.0,0.03790617936827486,0.0,3.754505893019039,2.91,2.65,2.78,2.58454251883746,3.0,2.62,2.775057388809182,2.774388254486134,2.85,2.8490585518271976 -2018,8,19,4,4,7,6,14,13,19,1.3572519000530385,12.0,5.772550485962308,20.05996382364969,0,0,0,0,0,0,0,0.0,0.0,1.8898522968642468,0.0,3.754505893019039,2.91,2.65,2.78,2.58454251883746,3.0,2.62,2.775057388809182,2.774388254486134,2.85,2.8490585518271976 -2018,8,20,4,5,7,5,13,14,18,2.642748099946961,11.0,6.162791334028412,19.833807194699666,0,0,0,0,0,0,0,0.0,0.0,2.3827186460520795,0.0,3.754505893019039,2.91,2.65,2.78,2.58454251883746,3.0,2.62,2.775057388809182,2.774388254486134,2.85,2.8490585518271976 -2018,8,21,2,6,8,4,15,13,18,5.357251900053039,8.0,5.5203150645860415,18.51227708154974,0,0,0,0,0,0,0,0.0,0.0,2.535319536639845,0.0,4.332493506493506,2.9,2.72,2.88,2.6113849287169044,2.97,2.64,2.8583797827113844,3.5885014204545453,2.83,2.8621696480092327 -2018,8,22,6,9,3,2,14,10,17,5.714503800106078,8.0,4.634874007093097,16.286120452599715,0,0,0,0,0,0,0,0.0,0.0,0.7719826663809894,0.0,3.874444444444444,2.88,2.71,2.82,2.5754881940012764,3.03,2.58,2.8349763908848287,2.9395355450236966,2.83,2.8839391771019676 -2018,8,23,3,3,1,1,10,6,18,0.6427480999469614,7.0,5.8661824554747035,14.738433710499761,0,0,0,0,0,0,0,3.3572519000530385,0.0,0.1453213571450969,0.0,3.8354008438818568,2.84,2.71,2.87,2.4395227765726677,2.99,2.44,2.821188653759568,2.665477528089887,2.8,2.858996282527881 -2018,8,24,2,3,1,6,9,7,19,0.0,6.0,5.7843464566166265,14.190746968399809,0,0,1,0,0,0,0,5.0,0.0,0.25371270803658474,0.0,3.32223233030091,2.84,2.69,2.86,2.3225587905935052,3.1,2.31,2.833797356828194,2.4315406162464983,2.79,2.78996114996115 -2018,8,25,3,3,6,9,10,11,20,0.0,6.0,6.6754234213074,14.190746968399809,0,0,0,0,0,0,0,7.928244299840884,0.0,0.6148405938499916,0.0,3.213951219512195,2.82,2.63,2.8,2.2876137303556656,3.16,2.34,2.7904628027681664,2.304130434782609,2.77,2.7679079995245455 -2018,8,26,3,5,12,11,12,15,19,0.0,6.0,6.933677311287218,15.190746968399809,0,0,0,0,0,0,0,8.0,0.0,1.2369607211426517,0.0,3.213951219512195,2.82,2.63,2.8,2.2876137303556656,3.16,2.34,2.7904628027681664,2.304130434782609,2.77,2.7679079995245455 -2018,8,27,9,10,15,13,14,15,20,0.0,4.0,5.871199351609478,15.964590339449785,0,0,0,0,0,0,0,3.0,0.0,1.743409964101155,0.0,3.213951219512195,2.82,2.63,2.8,2.2876137303556656,3.16,2.34,2.7904628027681664,2.304130434782609,2.77,2.7679079995245455 -2018,8,28,14,15,15,10,16,16,20,0.7145038001060773,4.0,3.1586671466359046,15.416903597349833,0,0,0,2,0,0,0,1.0,0.0,3.9821360712789664,0.0,3.1882981853849928,2.85,2.72,3.18,2.3013384433962267,4.02,2.29,2.9198972935461485,2.4912305986696226,2.8100000000000005,2.7449360750053273 -2018,8,29,16,16,9,3,16,15,19,0.35725190005303864,5.0,3.1586671466359046,15.738433710499761,0,0,0,2,0,0,0,2.2854961998939225,0.0,0.8432538431743065,0.0,3.3884207201516108,2.8,2.67,3.04,2.329173553719008,4.47,2.29,2.879356191865767,2.5181061164333087,2.77,2.742467450385539 -2018,8,30,13,13,4,3,15,14,18,0.0,6.0,5.621090798828671,16.190746968399807,0,0,1,1,0,0,0,3.714503800106077,0.0,0.43063688422195395,0.0,4.315379159847245,2.72,2.66,2.91,2.2930317848410757,3.84,2.3,2.831794673871092,2.55140013726836,2.72,2.7793819494584833 -2018,8,31,3,6,6,8,15,13,18,0.0,6.0,5.865540401698641,16.964590339449785,0,0,0,0,0,0,0,4.0,0.0,0.5453315954414444,0.0,3.4433895446880265,2.71,2.6,2.77,2.289101382488479,3.02,2.25,2.729137970880518,2.4665333333333335,2.63,2.7394258439402326 -2018,9,1,2,6,9,11,15,14,18,0.0,6.0,3.738159171336908,15.833807194699666,1,0,0,0,0,0,0,4.642748099946962,0.0,0.7222557716268135,0.0,3.3310340843443096,2.8,2.64,2.88,2.2795897435897436,3.28,2.31,2.809161521609241,2.3554666666666666,2.62,2.7692155019325186 -2018,9,2,4,9,13,9,15,15,17,0.0,6.0,3.5636086564402847,13.286120452599715,0,0,0,0,0,0,0,3.285496199893923,0.0,1.543965332761979,0.2261566289500239,3.3310340843443096,2.8,2.64,2.88,2.2795897435897436,3.28,2.31,2.809161521609241,2.3554666666666666,2.62,2.7692155019325186 -2018,9,3,12,14,13,8,15,15,15,0.0,7.0,3.511898189962162,11.738433710499763,0,0,0,0,0,0,0,3.6427480999469615,0.0,1.025695374417574,0.0,3.3310340843443096,2.8,2.64,2.88,2.2795897435897436,3.28,2.31,2.809161521609241,2.3554666666666666,2.62,2.7692155019325186 -2018,9,4,13,14,14,9,16,15,15,0.0,8.0,3.428194814878968,11.738433710499763,0,0,0,0,0,0,0,3.285496199893923,0.0,1.3795437267883126,0.0,3.3310340843443096,2.8,2.64,2.88,2.2795897435897436,3.28,2.31,2.809161521609241,2.3554666666666666,2.62,2.7692155019325186 -2018,9,5,10,14,14,7,16,13,16,0.7145038001060773,7.0,3.947831035902838,13.512277081549737,0,0,0,1,0,0,0,1.2854961998939227,0.0,1.7327102243332488,0.0,3.2385534591194967,2.87,2.7,3.03,2.2738663594470045,3.86,2.3,2.8887008185899132,2.4147643979057594,2.74,2.7474916201117314 -2018,9,6,14,15,7,4,16,15,15,1.071755700159116,8.0,4.375618544644504,13.833807194699666,0,0,0,2,0,0,0,0.0,0.0,1.6687185809826002,0.0,3.2863298302344384,2.85,2.66,2.93,2.3114541622760796,3.26,2.28,2.841370267453977,2.582130281690141,2.76,2.725341504398537 -2018,9,7,3,7,4,3,15,15,15,1.0,10.0,5.270577028156428,14.607650565749642,1,0,1,2,0,0,0,1.2854961998939227,0.0,1.194658162334473,0.0,3.199400386847196,2.75,2.53,2.73,2.3955444997236044,2.91,2.35,2.7095330548046204,2.5866782006920417,2.65,2.6452357600905314 -2018,9,8,0,1,1,1,13,13,13,0.0,11.0,5.209824849850867,15.607650565749642,2,2,2,2,0,0,0,4.642748099946962,0.0,0.8533123801754374,0.0,3.158820697954272,2.68,2.4,2.47,2.34442206235012,2.69,2.03,2.6191073691834146,2.542171215880894,2.56,2.6346576480360744 -2018,9,9,0,0,0,0,10,10,10,0.0,10.0,5.059533074770527,16.833807194699666,8,9,5,2,1,0,0,3.6427480999469615,0.0,0.3295250667731345,0.0,3.158820697954272,2.68,2.4,2.47,2.34442206235012,2.69,2.03,2.6191073691834146,2.542171215880894,2.56,2.6346576480360744 -2018,9,10,0,0,0,1,11,6,9,0.0,8.0,4.585948370313942,16.60765056574964,8,7,3,1,0,0,0,5.357251900053039,0.0,0.47582259703289714,0.0,3.158820697954272,2.68,2.4,2.47,2.34442206235012,2.69,2.03,2.6191073691834146,2.542171215880894,2.56,2.6346576480360744 -2018,9,11,2,1,0,3,12,6,9,0.0,7.0,4.935049400107188,16.286120452599715,1,2,1,0,0,0,0,7.714503800106078,0.0,1.3200526133218697,0.0,3.1311003236245956,2.66,2.46,2.78,2.3116457080371786,2.93,2.2,2.7495057833859096,2.3422424242424245,2.55,2.657543468045113 -2018,9,12,2,4,2,5,14,10,12,0.0,5.0,4.766412155973768,15.512277081549737,0,0,0,0,0,0,0,9.357251900053038,1.0,1.8868581188806297,0.0,3.078458972648433,2.64,2.43,2.63,2.293046875,2.99,2.17,2.7182518829917672,2.375967588179219,2.58,2.6538420464423194 -2018,9,13,3,7,4,6,14,13,13,0.0,4.0,4.1170210432994185,13.964590339449785,0,0,0,0,0,0,0,8.714503800106076,1.0,1.994273296657452,0.0,2.9695003568879375,2.71,2.31,2.65,2.2522348232154767,2.94,2.13,2.583926523019687,2.3832809917355378,2.63,2.69414131501472 -2018,9,14,3,6,7,10,14,15,14,0.0,5.0,3.912709686233531,15.512277081549737,0,0,0,0,0,0,0,9.0,1.0,1.7196981614075277,0.0,2.9955555555555553,2.75,2.47,2.65,2.2000464037122973,3.05,2.23,2.6642011941378687,2.268923076923077,2.7,2.643508547008547 -2018,9,15,4,7,8,11,13,15,14,0.0,5.0,4.363702712605196,16.286120452599715,0,0,0,0,0,0,0,11.0,1.0,1.5048678058538836,0.0,2.933546856465006,2.69,2.3,2.5,2.099070146818923,2.91,2.13,2.5231569933396765,2.143114134542706,2.64,2.631696742707979 -2018,9,16,6,7,9,11,12,13,15,0.0,4.0,5.139360757173076,16.512277081549737,0,0,0,0,0,0,0,10.35725190005304,1.0,1.7936373177784548,0.0,2.933546856465006,2.69,2.3,2.5,2.099070146818923,2.91,2.13,2.5231569933396765,2.143114134542706,2.64,2.631696742707979 -2018,9,17,6,5,10,9,14,13,16,0.0,4.0,5.3057659348706885,17.286120452599715,0,0,0,1,0,0,0,11.0,1.0,1.9010524955552768,0.0,2.933546856465006,2.69,2.3,2.5,2.099070146818923,2.91,2.13,2.5231569933396765,2.143114134542706,2.64,2.631696742707979 -2018,9,18,6,8,8,8,15,15,17,0.0,4.0,5.1014545778048,16.512277081549737,0,0,0,2,0,0,0,11.285496199893922,1.0,2.0400704923723714,0.0,3.1420566572237956,2.87,2.66,2.95,2.30992,3.15,2.33,2.870854476140397,2.362368583797155,2.81,2.752747057875222 -2018,9,19,1,5,7,8,14,15,17,0.0,3.0,3.1348195752298427,11.643060226299857,1,0,1,3,0,0,0,10.285496199893922,0.0,2.967893514386214,0.0,3.0613333333333332,2.94,2.68,3.14,2.3476354973198332,3.27,2.31,2.962563549160672,2.5055915721231767,2.82,2.8081099107562233 -2018,9,20,0,2,10,10,13,15,16,0.0,5.0,2.3569294642261553,9.512277081549739,3,1,0,3,0,0,0,9.285496199893924,0.0,4.0593792384763026,0.2261566289500239,3.1940254237288133,2.96,2.67,2.92,2.205243445692884,3.22,2.07,2.9156222707423582,2.204721283783784,2.82,2.8141326324302467 -2018,9,21,0,3,9,3,12,15,14,0.0,6.0,1.9839808630268476,11.05996382364969,2,0,0,5,0,0,0,6.0,0.0,6.2169324794175225,0.2261566289500239,2.939914224446033,2.81,2.58,2.84,2.1317435897435897,2.96,2.19,2.7982471420794774,2.1591435406698563,2.69,2.6701632701704208 -2018,9,22,1,2,0,0,12,10,9,0.0,7.0,2.5873204591339123,11.05996382364969,1,2,7,8,0,0,0,8.357251900053038,0.0,3.3410260645160608,0.2261566289500239,3.0208166969147006,2.82,2.36,2.48,2.253846153846154,3.16,2.28,2.549348931841302,2.0830217028380633,2.66,2.741243793761935 -2018,9,23,0,0,0,0,9,8,7,0.0,6.0,2.785718545436597,11.833807194699666,10,7,6,5,1,0,0,11.0,0.0,2.89601085468892,0.2261566289500239,3.0208166969147006,2.82,2.36,2.48,2.253846153846154,3.16,2.28,2.549348931841302,2.0830217028380633,2.66,2.741243793761935 -2018,9,24,0,0,0,1,9,9,11,0.0,4.0,2.785718545436597,12.05996382364969,13,6,4,3,0,0,0,11.0,0.0,6.324918488039294,0.0,3.0208166969147006,2.82,2.36,2.48,2.253846153846154,3.16,2.28,2.549348931841302,2.0830217028380633,2.66,2.741243793761935 -2018,9,25,0,1,4,3,12,12,14,0.0,5.0,2.388922372831227,12.286120452599715,9,3,0,6,0,0,0,9.213740499734808,0.0,10.499152492943333,0.2261566289500239,3.0715599095704595,2.83,2.36,2.65,2.346716417910448,3.19,2.36,2.6731915957978987,2.3144656488549624,2.7,2.802996796925048 -2018,9,26,3,5,1,0,13,9,10,0.0,7.0,2.1823789493295322,11.607650565749642,1,0,4,10,0,0,1,5.49923669962873,0.0,10.169627426170198,0.9046265158000956,3.1076154428463285,2.87,2.38,2.64,2.4112625250501,3.3,2.39,2.7056422093981864,2.4598701298701298,2.74,2.8418055721630995 -2018,9,27,0,0,0,0,11,5,5,1.071755700159116,9.0,1.9839808630268476,12.607650565749642,2,4,9,9,0,1,1,4.213740499734807,0.0,7.553848103614178,0.4523132579000478,3.025384615384615,2.87,2.38,2.74,2.3189207547169812,3.86,2.28,2.7337100371747214,2.465154185022026,2.76,2.885808539944904 -2018,9,28,0,0,0,0,10,4,6,1.071755700159116,6.0,1.9839808630268476,13.05996382364969,8,4,8,14,0,1,0,2.928244299840884,0.0,10.290786469397478,0.4523132579000478,2.9483363148479427,2.83,1.73,1.85,2.0707781155015197,3.23,2.03,2.2403561171740383,2.182789297658863,2.78,2.8111933174224344 -2018,9,29,0,0,0,0,10,5,8,0.0,3.0,2.1905242865285426,13.05996382364969,6,5,13,16,0,0,0,8.357251900053038,1.0,5.643422395382974,0.2261566289500239,2.9483363148479427,2.83,1.73,1.85,2.0707781155015197,3.23,2.03,2.2403561171740383,2.182789297658863,2.78,2.8111933174224344 -2018,9,30,0,0,0,0,9,7,10,0.0,3.0,2.388922372831227,11.738433710499763,10,7,8,12,0,0,0,10.285496199893922,1.0,9.029173711223352,0.0,2.9483363148479427,2.83,1.73,1.85,2.0707781155015197,3.23,2.03,2.2403561171740383,2.182789297658863,2.78,2.8111933174224344 -2018,10,1,0,1,1,2,10,9,12,0.0,5.0,1.992126200225858,5.547686742099953,8,4,5,10,0,0,0,8.285496199893922,1.0,7.271132802683218,0.0,2.954095808383233,2.8,1.75,2.07,1.9824406604747162,3.41,1.92,2.2701068294544067,2.2054074074074075,2.74,2.76989559957069 -2018,10,2,0,2,2,3,11,11,13,0.0,4.0,1.3887866041187933,6.321530113149929,8,2,4,7,0,0,0,8.928244299840884,0.0,4.568945073831275,0.0,3.1001876302988185,2.9,1.68,2.57,2.2177691766361716,3.56,2.22,2.5022417336073226,2.076302521008403,2.83,2.8733562022795174 -2018,10,3,0,2,6,6,12,11,15,0.0,1.0,1.761735205318101,8.095373484199904,5,2,0,3,0,0,0,17.14198479957569,0.0,4.000362137182828,0.0,3.1756574923547403,3.0,1.98,2.31,2.5225321100917433,3.75,2.53,2.658142788996661,2.0051334180432017,2.93,3.000916621253406 -2018,10,4,0,1,3,1,12,12,15,0.0,0.0,0.5951942589080543,6.8692168552498805,2,1,3,15,0,0,0,15.928244299840884,1.0,10.84979882467762,0.2261566289500239,3.339152542372881,3.17,2.49,3.09,2.8544494526722475,3.65,2.85,3.0182457879088203,2.5402900552486187,3.12,3.12260813235001 -2018,10,5,0,0,1,2,11,13,15,0.0,1.0,0.5951942589080543,4.321530113149929,7,5,8,13,0,0,0,20.0,2.0,12.040332996006343,0.4523132579000478,3.128999305072967,3.0,2.21,2.74,2.7004704704704703,4.2,2.71,2.892953856517346,2.472089552238806,3.02,3.0693643633381176 -2018,10,6,0,0,3,2,11,12,14,0.0,0.0,0.19839808630268477,3.0953734841999045,11,3,3,14,0,0,0,16.0,2.0,16.894305039303866,1.9046265158000957,2.950161538461538,2.87,1.51,1.42,2.521897119341564,2.95,2.65,1.999539011463084,2.4157442235357336,2.84,2.9670179324894517 -2018,10,7,1,5,3,1,13,12,13,0.0,0.0,0.0,0.0,2,1,5,13,0,0,0,17.64274809994696,2.0,17.645275108063448,3.226156628950024,2.950161538461538,2.87,1.51,1.42,2.521897119341564,2.95,2.65,1.999539011463084,2.4157442235357336,2.84,2.9670179324894517 -2018,10,8,0,2,6,2,12,12,13,0.0,0.0,0.0,0.0,8,1,1,10,0,0,0,15.0,2.0,19.589434628052317,6.1307831447501195,2.950161538461538,2.87,1.51,1.42,2.521897119341564,2.95,2.65,1.999539011463084,2.4157442235357336,2.84,2.9670179324894517 -2018,10,9,1,5,9,3,12,11,10,0.0,0.0,0.0,0.0,1,0,0,10,0,0,0,12.0,2.0,21.378684141945993,6.261566289500239,3.2946280991735537,3.15,2.78,2.89,2.918608644168147,3.01,2.97,3.0540476613907166,2.773075657894737,3.05,3.136851636269564 -2018,10,10,6,7,5,1,12,10,6,0.0,0.0,0.0,0.0,0,0,1,14,0,0,1,13.0,5.0,22.643241392253813,4.261566289500239,3.3275512820512816,3.26,2.7,2.83,2.951720021703744,3.2,2.95,2.981771945701358,2.797006975269499,3.2800000000000002,3.166382472489343 -2018,10,11,3,6,0,0,12,3,3,0.0,0.0,0.0,0.7738433710499761,2,0,11,23,0,1,3,14.285496199893922,4.0,21.194480432317956,3.261566289500239,3.6054763092269324,3.37,2.87,2.95,3.2301587301587307,3.3,3.3,3.074830970556161,3.134876237623762,3.43,3.1919469884710696 -2018,10,12,0,0,0,0,5,0,3,0.0,0.0,0.19839808630268477,1.5476867420999523,7,8,23,25,3,8,2,13.570992399787844,2.0,17.199976708530432,2.809253031600191,3.3047603833865815,3.22,2.78,2.79,2.8473209404045927,3.07,2.96,2.9558470213287573,2.823960396039604,3.18,3.0537205022732192 -2018,10,13,0,0,0,0,4,0,6,0.0,0.0,0.19839808630268477,0.0,17,16,22,21,5,9,2,13.570992399787844,3.0,16.92597823026596,3.1307831447501195,3.445320665083135,3.18,2.71,2.75,2.971664753157291,3.23,3.33,2.8968577140953014,2.943347692307692,3.14,3.0686374447842337 -2018,10,14,0,0,0,0,5,3,8,0.0,0.0,0.0,0.0,18,17,18,24,5,5,2,14.928244299840884,3.0,27.800247696072375,4.583096402650168,3.445320665083135,3.18,2.71,2.75,2.971664753157291,3.23,3.33,2.8968577140953014,2.943347692307692,3.14,3.0686374447842337 -2018,10,15,0,0,0,0,7,3,4,0.0,0.0,0.0,0.0,14,11,19,26,1,3,10,13.213740499734806,2.0,27.827764819524823,8.749289207950502,3.445320665083135,3.18,2.71,2.75,2.971664753157291,3.23,3.33,2.8968577140953014,2.943347692307692,3.14,3.0686374447842337 -2018,10,16,0,0,0,0,8,2,1,0.0,0.0,0.0,0.0,16,16,21,21,2,9,14,10.213740499734806,2.0,22.723223761959872,12.166192805300334,3.5490505836575874,3.29,3.02,3.16,3.0392056074766356,3.46,4.27,3.100029335071708,3.029297385620915,3.2899999999999996,3.1735744382022473 -2018,10,17,0,0,0,0,7,1,0,0.0,0.0,0.0,0.0,18,16,21,20,2,7,10,8.856488599681768,2.0,18.879785969855025,8.940036176350311,3.6986771910724,3.38,3.02,3.11,3.0900000000000003,3.56,4.27,3.1310580708661417,3.06885255648038,3.36,3.172450682108156 -2018,10,18,0,0,0,0,5,1,0,0.0,1.0,0.0,0.0,25,22,22,15,6,9,7,10.213740499734806,1.0,15.800688322496384,6.392349434250359,3.8709929411764707,3.41,3.1,3.25,3.18267169511711,3.97,4.43,3.184610730775354,3.1802767429483767,3.38,3.2411460905349796 -2018,10,19,0,0,0,0,5,1,2,0.0,2.0,0.0,0.7738433710499761,21,19,20,13,7,7,4,10.856488599681768,1.0,13.757264788070211,4.035409660550215,3.800048394192697,3.29,2.95,3.03,3.0762144053601337,3.34,5.84,3.0587128217945514,3.15940379403794,3.23,3.166459368703828 -2018,10,20,0,0,0,0,5,1,2,0.0,3.0,0.19839808630268477,4.643060226299857,13,14,17,18,4,7,2,11.784732899522652,0.0,13.004999679562275,2.035409660550215,3.5532285890326554,3.33,2.98,3.06,3.0501427815970383,3.62,4.85,3.0490696474634564,2.934126984126984,3.3,3.141058254896973 -2018,10,21,0,0,0,0,3,0,0,0.0,1.0,0.19839808630268477,4.643060226299857,22,21,26,20,10,16,5,12.499236699628728,1.0,11.742816090543197,2.261566289500239,3.5532285890326554,3.33,2.98,3.06,3.0501427815970383,3.62,4.85,3.0490696474634564,2.934126984126984,3.3,3.141058254896973 -2018,10,22,0,0,0,0,3,0,0,0.0,0.0,0.0,3.8692168552498805,27,23,19,17,11,15,7,12.856488599681768,1.0,12.225553530808073,1.8092530316001911,3.5532285890326554,3.33,2.98,3.06,3.0501427815970383,3.62,4.85,3.0490696474634564,2.934126984126984,3.3,3.141058254896973 -2018,10,23,0,0,0,0,3,0,0,0.0,0.0,0.0,3.8692168552498805,21,16,19,19,8,11,6,15.928244299840884,2.0,13.08614544442618,3.261566289500239,3.820549535603715,3.42,3.07,3.21,3.1933833798882683,3.54,5.93,3.1429526506213623,3.270382165605095,3.4,3.1299450398461115 -2018,10,24,0,0,0,0,3,0,0,0.0,1.0,0.19839808630268477,1.5476867420999523,22,20,23,20,9,11,7,14.0,2.0,13.374018581722323,3.487722918450263,4.018582089552238,3.48,3.13,3.3,3.344924812030075,4.7,6.35,3.201098573281453,3.4217798060467772,3.48,3.168722136620442 -2018,10,25,0,0,0,0,3,0,0,0.0,1.0,0.19839808630268477,2.3215301131499286,25,24,24,20,12,13,5,13.642748099946962,1.0,13.391595720313571,3.261566289500239,4.160663077359025,3.51,3.2,3.45,3.3191662696522153,5.38,4.77,3.295240264176725,3.359953298307064,3.49,3.2605100644909126 -2018,10,26,0,0,0,0,4,0,0,0.0,3.0,0.19839808630268477,2.3215301131499286,28,25,22,16,12,12,4,11.35725190005304,1.0,12.741698322575594,3.487722918450263,3.9574163179916315,3.4,3.08,3.28,3.137021276595745,3.73,5.09,3.1753440978209753,3.1228145695364233,3.37,3.162233676975945 -2018,10,27,0,0,0,0,2,0,1,0.0,3.0,0.19839808630268477,3.0953734841999045,24,23,20,13,9,12,1,14.49923669962873,1.0,10.19531697444727,2.261566289500239,3.9137468608739328,3.27,2.94,3.07,3.040737410071942,3.76,3.61,3.0093251074967284,2.8712515802781287,3.22,3.0142396560988716 -2018,10,28,0,0,0,0,1,0,4,0.0,2.0,0.19839808630268477,3.0953734841999045,20,19,19,14,8,7,1,14.928244299840884,1.0,10.738026413888106,1.8092530316001911,3.9137468608739328,3.27,2.94,3.07,3.040737410071942,3.76,3.61,3.0093251074967284,2.8712515802781287,3.22,3.0142396560988716 -2018,10,29,0,0,0,0,1,1,4,0.0,0.0,0.39679617260536953,3.0953734841999045,17,18,18,16,7,10,1,18.0,3.0,11.289108606394391,1.5830964026501673,3.9137468608739328,3.27,2.94,3.07,3.040737410071942,3.76,3.61,3.0093251074967284,2.8712515802781287,3.22,3.0142396560988716 -2018,10,30,0,0,0,0,2,1,6,0.0,0.0,0.0,2.3215301131499286,22,19,15,15,9,7,1,18.357251900053036,5.0,20.77997501829506,2.809253031600191,3.7299999999999995,3.17,2.97,3.18,3.065752032520325,4.64,11.3,3.0458214069744005,2.975450847457627,3.17,2.9964381449412882 -2018,10,31,0,0,0,0,2,1,5,0.0,0.0,0.0,0.0,23,16,13,17,6,3,2,17.35725190005304,4.0,24.451705844843072,7.1661928053003345,3.601515778582514,3.18,2.91,3.02,3.032113785557987,3.69,5.32,3.0253678065054217,2.7513425925925925,3.2,3.107438189204875 -2018,11,1,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,15,11,18,21,3,3,7,12.0,2.0,21.2654914621184,9.166192805300335,3.6432075471698107,3.11,2.74,2.74,2.954096668230877,3.09,3.87,2.9131614575831777,2.812115685252736,3.05,3.0958475352757926 -2018,11,2,0,0,0,0,4,0,0,0.0,2.0,0.0,0.0,9,6,22,23,2,13,8,10.35725190005304,1.0,15.4060173164679,7.9400361763503104,3.4241106484235577,3.17,2.8,2.8,2.918663594470046,3.0,3.29,2.9501033544877604,2.7474431818181824,3.14,3.10519301097115 -2018,11,3,0,0,0,0,1,0,0,0.0,2.0,0.0,0.0,9,12,23,22,9,14,5,15.357251900053038,1.0,19.03094937483221,5.487722918450263,3.0888210961737332,3.11,2.83,2.98,2.7774668969487624,3.09,2.74,2.96172468605945,2.490760667903525,3.0899999999999994,3.026488731955551 -2018,11,4,0,0,0,0,2,0,1,0.0,2.0,0.0,0.0,21,21,20,23,11,12,6,13.714503800106076,1.0,21.27843230211301,6.392349434250359,3.0888210961737332,3.11,2.83,2.98,2.7774668969487624,3.09,2.74,2.96172468605945,2.490760667903525,3.0899999999999994,3.026488731955551 -2018,11,5,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,24,20,18,22,7,7,3,17.71450380010608,2.0,20.780840822051402,4.035409660550215,3.0888210961737332,3.11,2.83,2.98,2.7774668969487624,3.09,2.74,2.96172468605945,2.490760667903525,3.0899999999999994,3.026488731955551 -2018,11,6,0,0,0,0,5,1,5,0.0,0.0,0.0,0.0,17,13,16,24,3,4,2,19.0,4.0,24.623198290597283,4.261566289500239,3.530900900900901,3.55,3.12,3.19,3.2461481481481487,3.43,3.58,3.2817233638404417,2.645519614590502,3.5,3.3507626484115947 -2018,11,7,0,0,0,0,4,1,6,0.0,0.0,0.0,0.0,12,13,25,30,5,11,4,22.357251900053036,5.0,27.918968270380574,5.487722918450263,3.794719101123596,3.68,3.27,3.37,3.347903543307087,3.68,6.26,3.3784086475942785,2.780705563093622,3.65,3.410062733987656 -2018,11,8,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,20,20,29,36,6,13,7,25.570992399787844,6.0,31.315764442985945,6.713879547400287,3.8231434751261713,3.67,3.35,3.5,3.417174741426239,3.88,12.22,3.439045679371545,2.587350746268657,3.69,3.447294752239898 -2018,11,9,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,26,25,31,39,9,15,12,26.856488599681768,7.0,32.269101443514685,9.844662692150408,3.907352168199737,3.75,3.39,3.46,3.534020681265207,3.95,6.31,3.4702976368531258,2.723014511873351,3.8400000000000003,3.520479784834288 -2018,11,10,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,25,39,44,13,27,20,24.642748099946964,8.0,28.800758694418207,9.618506063200382,3.8810322580645162,3.9,3.56,3.92,3.670354535974974,4.61,3.76,3.7275246006389775,2.952015113350126,3.97,3.7026529543754676 -2018,11,11,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,29,34,38,17,24,17,25.570992399787844,9.0,33.159448373161545,12.487722918450263,3.8810322580645162,3.9,3.56,3.92,3.670354535974974,4.61,3.76,3.7275246006389775,2.952015113350126,3.97,3.7026529543754676 -2018,11,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,29,34,40,16,22,18,24.213740499734808,9.0,36.55337042555505,19.618506063200382,3.8810322580645162,3.9,3.56,3.92,3.670354535974974,4.61,3.76,3.7275246006389775,2.952015113350126,3.97,3.7026529543754676 -2018,11,13,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,25,26,37,45,12,24,27,22.570992399787844,9.0,33.135594975614985,21.07081932110043,4.268735177865612,4.02,3.7,3.89,3.893473183391004,4.77,4.02,3.8199042568861397,4.175508565310492,4.05,3.8302015877263402 -2018,11,14,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,33,31,40,38,15,29,27,20.64274809994696,7.0,26.19554006980502,18.166192805300334,4.5352255639097745,4.06,3.86,4.26,3.9966969696969703,8.63,6.53,4.033344398340249,4.416765746638358,4.03,3.9674780897871584 -2018,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,34,37,31,18,29,20,19.285496199893924,7.0,23.585311029820087,13.713879547400285,5.798446909667194,4.61,4.42,5.09,4.643355325164939,10.17,10.36,4.576710138353368,4.901924482338612,4.59,4.463556991509505 -2018,11,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,32,30,18,23,14,18.0,7.0,23.888892227463785,13.487722918450263,6.93888888888889,4.43,4.18,4.32,4.377380738073807,5.8,52.69,4.326964969507872,4.444306220095695,4.4,4.326458053691275 -2018,11,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,27,31,35,15,19,11,21.570992399787848,9.0,29.346532683764494,13.487722918450263,5.953506072874494,4.21,4.09,4.43,4.225029673590504,6.86,12.03,4.217546772068511,3.94042689434365,4.23,4.125781891280677 -2018,11,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,29,31,42,14,17,14,23.856488599681768,9.0,32.28257396792703,14.166192805300334,5.953506072874494,4.21,4.09,4.43,4.225029673590504,6.86,12.03,4.217546772068511,3.94042689434365,4.23,4.125781891280677 -2018,11,19,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,26,33,38,11,17,18,23.213740499734808,10.0,30.916033270273545,14.166192805300334,5.953506072874494,4.21,4.09,4.43,4.225029673590504,6.86,12.03,4.217546772068511,3.94042689434365,4.23,4.125781891280677 -2018,11,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,26,34,37,10,20,17,22.570992399787844,9.0,28.84197726378126,12.844662692150406,6.141886724386725,4.61,4.38,4.67,4.999954049396899,11.88,8.15,4.475288228645245,5.247117117117118,4.61,4.437142708658143 -2018,11,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,30,34,32,15,24,18,23.28549619989392,11.0,26.587073208204856,12.713879547400285,6.426039094650205,4.63,4.41,4.9,5.297832335329341,13.88,8.18,4.622202592780885,5.738530585106383,4.6,4.4718341820780845 -2018,11,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,49,44,34,26,18,20,14,22.357251900053036,12.0,25.49296185861476,14.940036176350311,6.150662824207493,4.58,4.31,4.79,5.358070519098923,10.06,6.37,4.5092959490536,5.468157894736842,4.54,4.518486808854746 -2018,11,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,46,44,27,24,20,21,7,23.0,12.0,23.82767016110719,13.583096402650169,6.150662824207493,4.58,4.31,4.79,5.358070519098923,10.06,6.37,4.5092959490536,5.468157894736842,4.54,4.518486808854746 -2018,11,24,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,35,35,23,23,16,14,6,25.0,10.0,24.784722340872555,13.583096402650169,6.150662824207493,4.58,4.31,4.79,5.358070519098923,10.06,6.37,4.5092959490536,5.468157894736842,4.54,4.518486808854746 -2018,11,25,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,28,24,24,32,12,14,6,25.285496199893924,9.0,32.029831606864605,13.940036176350311,6.150662824207493,4.58,4.31,4.79,5.358070519098923,10.06,6.37,4.5092959490536,5.468157894736842,4.54,4.518486808854746 -2018,11,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,24,31,43,11,23,20,21.28549619989392,8.0,33.51747491928341,14.844662692150406,6.150662824207493,4.58,4.31,4.79,5.358070519098923,10.06,6.37,4.5092959490536,5.468157894736842,4.54,4.518486808854746 -2018,11,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,27,40,45,20,33,20,17.35725190005304,9.0,29.322341042757387,13.39234943425036,6.160221822541966,4.37,4.07,4.79,5.101379501385042,4.77,9.54,4.355463878803055,5.203117593436645,4.37,4.197891928516982 -2018,11,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,31,41,41,26,32,13,21.0,11.0,24.707310673836353,12.261566289500239,5.9369778117827074,4.27,4.07,4.86,4.852791495198902,5.82,10.17,4.507684761281884,4.860697471665213,4.27,4.181611923820038 -2018,11,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,29,37,34,22,22,5,22.357251900053036,13.0,25.85224194141665,12.130783144750119,6.298383584589615,4.4,4.23,4.47,5.227865655471289,6.07,11.16,4.352532751091704,4.77369622475856,4.37,4.304954954954955 -2018,11,30,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,32,30,31,31,15,11,2,24.071755700159116,13.0,28.911459160817124,16.13078314475012,6.625711727842435,4.45,4.28,4.43,5.008202068416865,5.57,10.82,4.395540540540541,4.8709655172413795,4.41,4.384663328905691 -2018,12,1,0,0,0,0,2,1,3,0.0,0.0,0.0,0.0,31,28,25,28,11,6,3,26.71450380010608,16.0,31.255427098976764,16.583096402650167,7.79592857142857,4.4,4.22,4.3,5.635767844268204,5.18,7.89,4.327163528862611,6.244519038076153,4.35,4.362823986194996 -2018,12,2,0,0,0,0,4,1,0,0.0,0.0,0.0,0.0,25,21,20,32,6,5,9,27.357251900053036,18.0,35.753524864102,19.261566289500237,7.79592857142857,4.4,4.22,4.3,5.635767844268204,5.18,7.89,4.327163528862611,6.244519038076153,4.35,4.362823986194996 -2018,12,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,19,18,29,37,7,17,15,29.357251900053036,18.0,37.2042635696213,21.94003617635031,7.79592857142857,4.4,4.22,4.3,5.635767844268204,5.18,7.89,4.327163528862611,6.244519038076153,4.35,4.362823986194996 -2018,12,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,30,35,39,15,25,21,31.642748099946964,16.0,40.128342543544996,22.166192805300334,8.107439429928741,4.39,4.28,4.63,5.754460285132383,11.25,7.43,4.3722539305060115,5.771034482758621,4.36,4.310326596896427 -2018,12,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,38,36,36,21,29,20,32.28549619989392,17.0,40.12754711171048,17.618506063200382,7.974294627383015,4.5,4.45,5.78,5.808826951042172,10.14,7.34,4.831309465424228,6.168809034907597,4.45,4.476245537163258 -2018,12,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,35,36,41,23,29,16,32.928244299840884,16.0,39.98198308599403,16.26156628950024,7.440454976303318,4.46,4.33,4.85,5.641272034302048,7.01,6.85,4.560535879273175,5.483431734317343,4.47,4.429183032911847 -2018,12,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,35,42,45,20,27,15,34.28549619989392,14.0,36.68030566158804,14.940036176350311,7.067751295336787,4.23,4.16,4.63,5.7078560000000005,8.9,7.53,4.328006382264024,6.409705340699817,4.19,4.220420267442918 -2018,12,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,40,42,44,20,26,20,29.928244299840884,13.0,34.35867161116155,15.487722918450263,6.4706596491228074,4.32,4.27,5.15,4.9376641014033495,7.71,6.04,4.520050610300684,4.862140151515152,4.24,4.337233226837061 -2018,12,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,42,39,41,42,21,27,22,27.285496199893924,13.0,34.01714508772237,16.39234943425036,6.4706596491228074,4.32,4.27,5.15,4.9376641014033495,7.71,6.04,4.520050610300684,4.862140151515152,4.24,4.337233226837061 -2018,12,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,42,41,23,28,22,25.642748099946964,14.0,33.485070842268115,16.618506063200385,6.4706596491228074,4.32,4.27,5.15,4.9376641014033495,7.71,6.04,4.520050610300684,4.862140151515152,4.24,4.337233226837061 -2018,12,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,37,37,37,23,29,19,24.0,14.0,30.19744619968383,13.166192805300334,6.186887159533074,4.38,4.36,5.15,4.759722759509994,7.21,5.45,4.503601558529562,4.858229755178908,4.31,4.355626244429696 -2018,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,33,31,33,22,25,13,25.0,14.0,29.60062553110344,15.26156628950024,5.497007786429366,4.27,4.24,4.59,4.472681091251176,9.01,4.85,4.369768533505989,4.589812426729192,4.21,4.28857492965417 -2018,12,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,32,30,31,18,17,8,22.0,12.0,34.36640898760073,18.261566289500237,5.374791965566716,3.99,3.97,4.24,3.970240452616691,7.4,5.1,4.082294742652132,4.125206861755802,3.9300000000000006,4.008322784810127 -2018,12,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,33,27,27,30,15,14,16,20.35725190005304,13.0,33.620115869496814,20.713879547400285,5.122562988705474,4.06,3.97,4.1,4.147855543113102,5.33,5.36,4.0611491865697475,4.209424460431654,3.97,4.034326632271838 -2018,12,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,22,27,29,11,15,15,25.35725190005304,11.0,29.04135152319861,16.94003617635031,4.545784563189144,3.69,3.64,3.76,3.7452481520591343,4.72,4.19,3.7224302344123745,3.846124481327801,3.58,3.705020833333333 -2018,12,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,26,27,28,12,16,15,23.0,12.0,28.51666783516788,14.487722918450263,4.545784563189144,3.69,3.64,3.76,3.7452481520591343,4.72,4.19,3.7224302344123745,3.846124481327801,3.58,3.705020833333333 -2018,12,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,26,30,31,14,18,14,21.357251900053036,13.0,28.314665593609412,15.26156628950024,4.545784563189144,3.69,3.64,3.76,3.7452481520591343,4.72,4.19,3.7224302344123745,3.846124481327801,3.58,3.705020833333333 -2018,12,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,33,33,28,17,21,15,20.64274809994696,13.0,25.918146784569416,14.583096402650169,4.8450621669627,3.39,3.43,3.86,3.7884499999999997,7.98,4.06,3.603314973184519,3.8609554140127393,3.26,3.4028870967741933 -2018,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,35,28,27,18,20,12,21.28549619989392,11.0,26.060704390860973,13.809253031600193,4.832742735648476,3.48,3.46,3.8,3.6821004098360652,5.15,4.09,3.5781223383662413,3.7072478991596642,3.32,3.4558583525789066 -2018,12,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,28,26,28,13,20,12,19.0,10.0,29.043160179782916,13.166192805300334,4.459515550239234,3.32,3.25,3.58,3.4354820717131473,4.18,3.99,3.4007527097551185,3.4667352185089975,3.17,3.319591058374828 -2018,12,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,20,19,28,35,9,22,15,28.0,11.0,27.377401343638923,15.035409660550215,4.608213783403656,3.43,3.24,3.34,3.6428917050691245,3.99,3.94,3.4001331739798535,3.6403812316715545,3.29,3.4809012731740006 -2018,12,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,16,23,33,33,16,24,12,29.357251900053036,12.0,31.880865442404705,12.583096402650167,4.348988549618321,3.22,3.17,3.37,3.4207889344262297,4.85,3.63,3.3072248427672957,3.149520426287744,3.05,3.27790290237467 -2018,12,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,29,32,34,19,22,13,27.0,13.0,34.88588233853948,14.618506063200382,4.348988549618321,3.22,3.17,3.37,3.4207889344262297,4.85,3.63,3.3072248427672957,3.149520426287744,3.05,3.27790290237467 -2018,12,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,29,34,36,18,25,15,25.285496199893924,13.0,30.818492680567314,13.487722918450263,4.348988549618321,3.22,3.17,3.37,3.4207889344262297,4.85,3.63,3.3072248427672957,3.149520426287744,3.05,3.27790290237467 -2018,12,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,33,33,19,23,9,29.28549619989392,15.0,31.91048298770246,15.809253031600193,4.348988549618321,3.22,3.17,3.37,3.4207889344262297,4.85,3.63,3.3072248427672957,3.149520426287744,3.05,3.27790290237467 -2018,12,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,37,33,30,31,18,18,5,30.0,17.0,34.30198490060768,19.809253031600193,4.348988549618321,3.22,3.17,3.37,3.4207889344262297,4.85,3.63,3.3072248427672957,3.149520426287744,3.05,3.27790290237467 -2018,12,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,36,31,25,27,15,13,7,29.28549619989392,19.0,40.00060244911308,22.809253031600193,4.528373919874313,2.96,2.94,3.09,3.681942363112392,4.2,4.19,3.003223755621027,3.5301684210526316,2.82,2.9174938083444464 -2018,12,28,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,27,23,21,42,9,9,19,28.35725190005304,20.0,42.71818212109351,27.261566289500237,4.432322033898306,2.96,2.81,2.9,3.4324381466486726,3.53,3.75,2.8957604966508743,3.4316487681617183,2.87,2.93362371445856 -2018,12,29,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,21,21,36,49,8,21,23,23.71450380010608,20.0,42.18361801885169,30.618506063200382,4.432322033898306,2.96,2.81,2.9,3.4324381466486726,3.53,3.75,2.8957604966508743,3.4316487681617183,2.87,2.93362371445856 -2018,12,30,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,36,31,35,40,11,16,22,25.0,18.0,35.105773908173084,29.618506063200385,4.432322033898306,2.96,2.81,2.9,3.4324381466486726,3.53,3.75,2.8957604966508743,3.4316487681617183,2.87,2.93362371445856 -2018,12,31,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,32,26,28,38,8,8,15,31.0,21.0,41.60877499242437,29.261566289500237,4.432322033898306,2.96,2.81,2.9,3.4324381466486726,3.53,3.75,2.8957604966508743,3.4316487681617183,2.87,2.93362371445856 -2019,1,1,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,21,31,50,4,12,22,31.643612332567493,22.0,50.49350181407247,30.012112258806578,4.225186470078057,3.04,2.88,3.06,3.3438033298647243,3.47,3.79,3.030675769097822,3.533333333333333,3.08,3.077430010655817 -2019,1,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,36,31,35,46,10,18,24,29.643612332567493,21.0,46.3552521734045,32.35352043134429,4.225186470078057,3.04,2.88,3.06,3.3438033298647243,3.47,3.79,3.030675769097822,3.533333333333333,3.08,3.077430010655817 -2019,1,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,29,33,35,10,17,22,24.0,19.0,39.98513801274327,30.12995240258801,4.110174799708667,2.61,2.53,2.68,3.1915864166244297,3.1,3.63,2.641769273433167,3.8126010286554,2.59,2.6594492727106394 -2019,1,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,30,28,30,11,15,18,21.712775334865015,17.0,33.65454937564626,24.129952402588007,4.198428351309707,2.5,2.43,2.52,3.220971039182283,2.89,3.71,2.535236797274276,3.898616714697406,2.42,2.5563546193085207 -2019,1,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,27,26,26,11,18,14,24.0,20.0,32.29537161229462,21.90638437383172,3.955266435986159,2.58,2.44,2.54,2.887939079714841,3.53,3.26,2.5242840726269824,3.0108491508491504,2.46,2.57027013895637 -2019,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,25,28,28,12,16,10,26.712775334865015,19.0,29.131223922325024,20.117840143781432,3.955266435986159,2.58,2.44,2.54,2.887939079714841,3.53,3.26,2.5242840726269824,3.0108491508491504,2.46,2.57027013895637 -2019,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,37,22,22,14,13,4,28.356387667432507,16.0,29.787844245965594,18.788544230050288,3.955266435986159,2.58,2.44,2.54,2.887939079714841,3.53,3.26,2.5242840726269824,3.0108491508491504,2.46,2.57027013895637 -2019,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,30,21,27,9,7,6,29.218061662837464,13.0,33.02154849693121,17.682816345075434,3.9849024110218143,2.55,2.47,2.61,2.6919193020719736,3.06,3.12,2.5669732360097326,2.905440414507772,2.45,2.554625600163449 -2019,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,27,39,42,13,22,13,23.930836997702478,13.0,31.712187286562383,16.353520431344293,3.518854961832061,2.72,2.7,3.09,2.868651262761956,3.44,3.06,2.9046244343891403,2.9149895031490556,2.68,2.7609085284108486 -2019,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,33,43,42,22,29,17,21.287224665134985,14.0,29.034246907375508,14.90638437383172,3.4308008356545963,2.7,2.66,4.99,2.7836124567474045,6.74,2.9,3.499554159186116,2.8163768115942025,2.65,2.7488241350906097 -2019,1,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,39,41,40,23,28,16,21.0,13.0,30.586114882068667,16.012112258806575,3.481767554479419,2.71,2.67,4.85,2.771464705882353,7.15,2.88,3.437481089258699,2.850633307271306,2.65,2.7659185303514375 -2019,1,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,43,37,37,21,23,13,23.0,15.0,33.16022603755411,17.90638437383172,3.6042942942942937,2.71,2.67,3.61,2.7832483081728268,5.43,3.03,3.064008097165992,2.865082251082251,2.65,2.750525669871139 -2019,1,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,42,37,36,20,22,22,24.643612332567493,17.0,37.014275488691254,20.459248316319147,3.6042942942942937,2.71,2.67,3.61,2.7832483081728268,5.43,3.03,3.064008097165992,2.865082251082251,2.65,2.750525669871139 -2019,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,42,42,37,21,28,23,27.287224665134985,19.0,37.471819311966044,16.129952402588007,3.6042942942942937,2.71,2.67,3.61,2.7832483081728268,5.43,3.03,3.064008097165992,2.865082251082251,2.65,2.750525669871139 -2019,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,41,40,36,23,28,21,28.643612332567493,17.0,36.18199703729791,15.90638437383172,4.0655656108597285,3.28,3.23,3.9,3.4415904365904364,7.11,3.86,3.455,3.600458553791887,3.22,3.226326550109869 -2019,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,36,42,23,26,15,28.0,14.0,31.212546925210585,14.012112258806575,4.436041426927503,3.41,3.34,3.75,3.7660409207161125,7.57,4.32,3.4958724569640056,3.6390735694822887,3.39,3.410336105336105 -2019,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,41,37,40,22,24,9,24.0,13.0,27.376487087897775,14.012112258806575,4.736569881889763,3.51,3.42,3.87,3.890269959793222,11.38,4.38,3.5807426561853535,4.037979797979798,3.48,3.487560723998875 -2019,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,36,43,17,17,9,23.0,12.0,29.309471461254784,13.788544230050288,4.538861892583121,3.4,3.32,3.54,3.7506631648063036,9.71,4.06,3.4089509213647142,3.613627204030227,3.36,3.345711079188364 -2019,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,36,40,51,13,13,14,22.0,10.0,31.531670180214366,15.353520431344293,3.735712098009188,3.26,3.19,7.94,3.334544934172868,13.5,3.69,4.174332700822264,3.403108571428571,3.29,3.1771939935064935 -2019,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,35,54,57,15,34,25,26.287224665134985,10.0,28.108506430344192,14.682816345075434,3.735712098009188,3.26,3.19,7.94,3.334544934172868,13.5,3.69,4.174332700822264,3.403108571428571,3.29,3.1771939935064935 -2019,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,61,58,59,51,32,37,19,27.643612332567493,17.0,29.332203928765793,14.341408172537715,3.735712098009188,3.26,3.19,7.94,3.334544934172868,13.5,3.69,4.174332700822264,3.403108571428571,3.29,3.1771939935064935 -2019,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,50,46,44,27,27,10,27.0,18.0,38.026899537882244,20.012112258806575,3.735712098009188,3.26,3.19,7.94,3.334544934172868,13.5,3.69,4.174332700822264,3.403108571428571,3.29,3.1771939935064935 -2019,1,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,38,36,35,45,16,17,21,23.0,16.0,38.51757904546358,22.90638437383172,3.745689201053556,2.98,2.83,2.98,3.116220710506425,4.54,3.52,2.944833545570311,3.133187203791469,2.98,2.992362781954887 -2019,1,24,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,23,42,48,11,29,23,24.287224665134985,13.0,36.38946525673771,20.682816345075434,3.7314960629921257,3.07,2.72,2.89,3.1861145703611453,3.97,3.38,2.8968482790554098,3.3892366412213746,3.18,3.0030799930591705 -2019,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,34,55,57,22,32,23,24.287224665134985,10.0,35.814850032652465,19.353520431344293,3.6333752093802345,3.18,2.91,4.13,3.172208860759494,8.71,3.39,3.2419931220095695,3.3238271604938268,3.16,3.0332066154569683 -2019,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,41,55,51,24,29,19,24.57444933026997,9.0,33.00459929515602,18.129952402588007,3.440677361853832,3.1,2.85,3.22,3.1037126865671643,7.99,3.39,3.0197054263565892,3.015774193548387,3.18,2.9909019184453123 -2019,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,36,51,48,22,24,15,24.148898660539942,7.0,29.14293349592972,16.353520431344293,3.440677361853832,3.1,2.85,3.22,3.1037126865671643,7.99,3.39,3.0197054263565892,3.015774193548387,3.18,2.9909019184453123 -2019,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,41,46,46,22,22,14,23.57444933026997,8.0,32.32929686851981,14.90638437383172,3.440677361853832,3.1,2.85,3.22,3.1037126865671643,7.99,3.39,3.0197054263565892,3.015774193548387,3.18,2.9909019184453123 -2019,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,40,54,57,22,33,25,25.218061662837464,8.0,37.30935520724682,15.694928603882008,3.6113062730627306,3.82,2.89,4.45,3.3715785054575984,8.33,3.43,3.368884046692607,3.39678369195923,4.39,2.982596981907245 -2019,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,46,71,72,28,39,24,26.50528632797245,10.0,36.19728066318877,13.247792546369435,3.532255639097744,6.54,2.97,8.48,3.3700046232085064,10.08,3.49,4.020757162346522,3.452303664921466,4.95,2.906614124073352 -2019,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,58,59,69,63,29,34,18,23.218061662837464,13.0,32.447831223709315,13.129952402588007,3.7858023379383634,5.39,2.92,6.54,3.6515470383275264,9.61,3.61,3.8186862091938707,3.6220693277310927,5.5600000000000005,2.922554159087151 -2019,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,55,56,57,47,24,26,10,23.643612332567493,15.0,28.714787412989423,11.90638437383172,3.5171780400205233,2.8,2.7,4.02,2.8249099756690996,6.71,3.43,3.0510057572553166,2.859994340690436,2.82,2.67839863713799 -2019,2,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,49,48,41,34,18,17,7,22.643612332567493,15.0,26.431836389234423,11.682816345075434,3.406131386861314,2.53,2.47,2.66,2.6701725838264303,4.39,4.9,2.58292042156713,2.665963488843813,2.5,2.5262471042471044 -2019,2,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,38,34,26,25,14,12,3,27.930836997702478,16.0,24.97789579470975,11.341408172537717,3.406131386861314,2.53,2.47,2.66,2.6701725838264303,4.39,4.9,2.58292042156713,2.665963488843813,2.5,2.5262471042471044 -2019,2,4,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,25,23,20,34,11,11,1,35.861673995404956,17.0,29.891528749241782,12.11784014378143,3.406131386861314,2.53,2.47,2.66,2.6701725838264303,4.39,4.9,2.58292042156713,2.665963488843813,2.5,2.5262471042471044 -2019,2,5,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,20,20,30,49,8,5,3,39.218061662837464,22.0,33.420552069047005,13.447136057512573,4.870655391120508,2.52,2.39,2.49,3.7211811764705884,3.18,8.87,2.4655141552511415,3.821355181576616,2.68,2.4308584489036957 -2019,2,6,0,0,0,0,1,2,5,0.0,0.0,0.0,0.0,31,28,30,47,7,3,3,38.861673995404956,24.0,40.35469878883463,19.447136057512573,6.366145339652448,2.52,2.4,2.52,4.612268292682927,4.4,10.33,2.4822538966365872,4.335989385898408,2.63,2.4505272211232474 -2019,2,7,0,0,0,0,1,3,3,0.0,0.0,0.0,0.0,30,25,24,48,4,1,8,39.218061662837464,24.0,49.513123631586716,26.788544230050288,12.669551122194513,2.57,2.38,2.47,6.029940828402367,2.91,16.77,2.460512353179425,6.7642030629608625,2.71,2.4988526976617234 -2019,2,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,22,47,60,5,25,30,37.93083699770248,22.0,46.8338745072518,24.129952402588007,17.66451104100946,2.64,2.43,2.58,10.046582423894312,3.12,18.33,2.533926548153936,11.392978382706165,3.35,2.5697398843930634 -2019,2,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,40,49,55,17,28,29,36.57444933026997,21.0,41.373558597151714,21.235680287562865,14.510177514792899,2.54,2.41,2.64,8.834985775248933,5.1,23.1,2.5404225604297226,10.505598349381017,2.7,2.4947412441191843 -2019,2,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,41,44,48,20,24,20,40.57444933026997,22.0,39.157015658272336,19.34140817253772,14.510177514792899,2.54,2.41,2.64,8.834985775248933,5.1,23.1,2.5404225604297226,10.505598349381017,2.7,2.4947412441191843 -2019,2,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,38,37,41,17,14,10,37.218061662837464,23.0,41.141239001780214,21.564976201294005,14.510177514792899,2.54,2.41,2.64,8.834985775248933,5.1,23.1,2.5404225604297226,10.505598349381017,2.7,2.4947412441191843 -2019,2,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,41,35,32,39,13,9,11,32.50528632797245,21.0,37.31949080099011,20.682816345075434,7.029781061850027,2.62,2.51,2.74,4.08740157480315,5.04,25.85,2.6247009391992093,4.762673964034402,2.72,2.5723418611189204 -2019,2,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,33,39,40,14,22,16,30.57444933026997,17.0,30.315723745103824,17.23568028756286,6.01188936501753,2.62,2.49,2.65,3.986254399195576,3.86,13.26,2.5858128503665374,4.277873888439773,2.62,2.5418631178707223 -2019,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,30,32,36,16,18,7,30.861673995404956,14.0,26.942950072292433,13.894272115025144,9.3763114071607,2.57,2.43,2.57,4.972898461538461,3.91,10.58,2.521576429658621,5.146730245231607,2.66,2.48503156082632 -2019,2,15,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,30,23,38,54,11,14,6,29.287224665134985,18.0,28.342771618194465,10.447136057512573,7.584032258064516,2.59,2.4,2.54,4.268999341672153,3.3,7.71,2.4942358180965774,5.1659547738693465,2.67,2.501356683106244 -2019,2,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,30,43,52,10,20,15,30.0,20.0,34.786525108316006,15.894272115025146,8.353870967741935,2.59,2.45,2.65,4.608095238095237,3.99,9.26,2.5608922792417936,5.44484347826087,2.66,2.5110966719492867 -2019,2,17,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,39,38,41,47,16,18,13,31.0,22.0,41.1252593364846,24.012112258806575,8.353870967741935,2.59,2.45,2.65,4.608095238095237,3.99,9.26,2.5608922792417936,5.44484347826087,2.66,2.5110966719492867 -2019,2,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,38,35,40,50,12,23,20,32.64361233256749,23.0,45.84915593845289,25.23568028756286,8.353870967741935,2.59,2.45,2.65,4.608095238095237,3.99,9.26,2.5608922792417936,5.44484347826087,2.66,2.5110966719492867 -2019,2,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,44,41,44,51,17,24,22,33.287224665134985,24.0,46.13837028405546,27.682816345075434,8.353870967741935,2.59,2.45,2.65,4.608095238095237,3.99,9.26,2.5608922792417936,5.44484347826087,2.66,2.5110966719492867 -2019,2,20,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,45,39,37,44,18,18,16,30.643612332567493,24.0,43.82773847741073,27.788544230050288,10.915458904109588,2.69,2.54,2.9,5.321240632805996,3.7,8.23,2.690955165692008,7.4314285714285715,2.74,2.6113664921465967 -2019,2,21,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,34,29,33,43,11,16,16,31.0,24.0,42.69334226012638,25.894272115025146,10.56201215805471,2.67,2.48,2.59,5.659427954668105,3.08,8.33,2.607754547355216,8.390258302583026,2.66,2.5905742251223494 -2019,2,22,0,0,0,0,3,1,0,0.0,0.0,0.0,0.0,30,29,34,42,11,14,13,33.64361233256749,23.0,41.157536574343595,25.32929591373114,6.739589041095891,2.69,2.53,2.71,3.9090985442329225,3.62,5.47,2.676426576217079,5.4887981093855505,2.71,2.598384953126854 -2019,2,23,0,0,0,0,4,1,2,0.0,0.0,0.0,0.0,35,32,28,34,14,8,6,31.0,22.0,39.54222289411286,26.670704086268856,4.3453739130434785,2.71,2.52,2.65,3.359902470741223,4.14,7.85,2.606559466019418,3.8884071630537234,2.79,2.594331288343558 -2019,2,24,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,31,27,25,41,8,11,14,30.287224665134985,18.0,38.04653613727758,23.23568028756286,4.3453739130434785,2.71,2.52,2.65,3.359902470741223,4.14,7.85,2.606559466019418,3.8884071630537234,2.79,2.594331288343558 -2019,2,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,31,45,53,13,22,14,33.64361233256749,16.0,34.14059963701122,19.34140817253772,4.3453739130434785,2.71,2.52,2.65,3.359902470741223,4.14,7.85,2.606559466019418,3.8884071630537234,2.79,2.594331288343558 -2019,2,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,38,44,51,13,16,11,35.35638766743251,15.0,30.750096808411133,14.341408172537715,4.913892078071182,2.94,2.72,3.07,3.8635933437337497,6.92,13.08,2.849396519107075,3.9346753246753248,3.16,2.7275337837837834 -2019,2,27,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,49,41,38,50,13,10,8,34.712775334865015,14.0,31.878505137413725,10.788544230050288,4.817053160318125,3.01,2.84,3.1,3.699781659388646,6.5,18.93,2.915054145789559,3.732785956964892,3.36,2.828983694645173 -2019,2,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,38,43,50,11,14,17,32.35638766743251,12.0,27.88163450682319,9.78854423005029,4.40636836628512,2.93,2.75,2.89,3.4488814776808625,5.73,6.52,2.7934834944373517,3.5791628334866608,3.21,2.7675365305357813 -2019,3,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,41,37,39,46,12,17,17,30.643612332567493,13.0,27.82824803273496,8.341408172537717,4.339239040529363,2.91,2.77,2.95,3.4316282894736845,5.03,15.36,2.858562108559499,3.4785941644562333,3.18,2.8554471276683424 -2019,3,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,37,33,37,49,11,18,15,29.930836997702478,13.0,33.81313191331311,7.341408172537717,6.058395688015219,8.01,3.11,3.39,6.775415358264344,6.94,80.5,3.1435356752821257,5.970951557093426,8.45,3.867450346158211 -2019,3,3,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,33,32,42,60,12,20,18,31.643612332567493,12.0,41.46006145518647,9.012112258806576,6.058395688015219,8.01,3.11,3.39,6.775415358264344,6.94,80.5,3.1435356752821257,5.970951557093426,8.45,3.867450346158211 -2019,3,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,34,56,62,17,34,33,33.287224665134985,14.0,40.618803430609944,12.247792546369437,6.058395688015219,8.01,3.11,3.39,6.775415358264344,6.94,80.5,3.1435356752821257,5.970951557093426,8.45,3.867450346158211 -2019,3,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,45,53,55,22,36,30,33.64361233256749,14.0,36.68383312121226,10.800656488856866,6.4663501063075834,4.48,4.08,4.91,4.598171106557378,8.36,9.26,4.240814308387255,5.078416126709863,4.47,4.072827664542185 -2019,3,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,47,49,49,27,34,24,34.287224665134985,13.0,30.54896039804959,5.90638437383172,4.270934579439253,3.08,3.02,4.34,3.174846511627907,9.17,5.01,3.1938697697449867,3.4634170854271358,3.07,2.976212701306594 -2019,3,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,45,45,47,22,29,12,30.643612332567493,14.0,26.100280023049404,5.1178401437814305,4.496878612716763,2.96,2.84,3.07,3.200630068621335,6.86,5.0,2.9193355481727576,3.4373619631901837,2.99,2.8622898682417084 -2019,3,8,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,45,42,38,38,18,19,4,31.356387667432507,19.0,28.177217971230068,8.67070408626886,4.372895086321381,2.83,2.75,2.91,3.1748097165991904,4.28,5.71,2.825633491311217,3.516383701188455,2.77,2.7953117435940236 -2019,3,9,0,0,0,0,1,1,6,0.0,0.0,0.0,0.0,38,34,31,29,13,9,2,30.287224665134985,20.0,30.868146524460233,17.67070408626886,3.817238239757208,2.8,2.7,2.78,3.062554082344731,3.41,7.52,2.768634889296291,3.078080229226361,2.75,2.768258034466698 -2019,3,10,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,36,29,27,33,7,7,7,29.930836997702478,19.0,30.4755688748839,14.894272115025146,3.817238239757208,2.8,2.7,2.78,3.062554082344731,3.41,7.52,2.768634889296291,3.078080229226361,2.75,2.768258034466698 -2019,3,11,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,27,24,30,34,7,11,7,28.218061662837464,17.0,29.093192917942677,12.341408172537717,3.817238239757208,2.8,2.7,2.78,3.062554082344731,3.41,7.52,2.768634889296291,3.078080229226361,2.75,2.768258034466698 -2019,3,12,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,29,29,31,31,11,13,4,28.0,15.0,25.062196023364148,14.329295913731142,4.2036905412793875,2.62,2.59,2.72,2.907012917115178,3.86,3.65,2.6890626797009776,2.9401639344262294,2.48,2.6552554186956936 -2019,3,13,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,33,30,22,22,11,7,2,25.643612332567493,16.0,28.19065708947085,16.564976201294,3.817758913412564,2.65,2.55,2.67,2.8865532879818594,3.17,3.45,2.6630757234448104,3.1672807881773397,2.5335172158459827,2.6139369477473546 -2019,3,14,0,0,0,0,3,2,3,0.0,0.0,0.0,0.0,27,21,11,23,6,2,5,24.287224665134985,15.0,32.977333244082615,20.564976201294005,3.816301295896329,2.67,2.51,2.6,2.9686345609065152,2.88,4.06,2.606494990607389,3.037420718816067,2.569558151345861,2.6456492049556144 -2019,3,15,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,17,11,24,29,2,10,13,20.930836997702478,12.0,32.5105893458527,16.682816345075434,3.878669225847729,2.73,2.54,2.54,3.1536335403726707,2.82,3.49,2.640511746221757,3.4437655172413795,2.70539708939709,2.7417749846719808 -2019,3,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,21,22,30,31,10,19,15,18.930836997702478,9.0,28.17660649193106,11.800656488856864,3.4237234042553193,2.69,2.6,2.69,2.7451017441860466,3.38,3.04,2.6933313644418195,2.931863354037267,2.6149924736578023,2.6936375853959014 -2019,3,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,30,32,30,14,18,12,17.218061662837464,6.0,25.674465733437245,8.57708846010058,3.4237234042553193,2.69,2.6,2.69,2.7451017441860466,3.38,3.04,2.6933313644418195,2.931863354037267,2.6149924736578023,2.6936375853959014 -2019,3,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,32,31,29,15,20,11,14.287224665134985,6.0,24.322027797811497,7.129952402588007,3.4237234042553193,2.69,2.6,2.69,2.7451017441860466,3.38,3.04,2.6933313644418195,2.931863354037267,2.6149924736578023,2.6936375853959014 -2019,3,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,28,26,16,20,9,13.574449330269971,7.0,23.82247677324317,5.353520431344292,3.3336446766819074,2.73,2.64,2.74,2.6816434202546997,3.22,2.87,2.7470597976080957,2.7089130434782605,2.61876629018245,2.7115335282467226 -2019,3,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,27,24,15,17,9,11.643612332567493,13.0,22.72677855238134,5.353520431344292,3.4500950806118227,2.74,2.63,2.72,2.67222333000997,3.17,2.77,2.7264072174066865,2.7667822318526545,2.6112303422756704,2.756837632473505 -2019,3,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,26,25,23,13,16,7,16.712775334865015,15.0,23.44272850545048,10.564976201294003,3.6022736220472438,2.69,2.6,2.7,2.5623076923076926,3.07,2.68,2.683612121212122,2.529167340339531,2.5890859950859952,2.6787543252595154 -2019,3,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,24,25,22,11,15,5,17.138326004595044,15.0,22.731667611136345,11.67070408626886,3.4877681940700804,2.67,2.59,2.71,2.485436787845903,3.09,2.54,2.6671908660060315,2.219430740037951,2.5754984762734003,2.6590192080695356 -2019,3,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,28,28,23,12,15,4,18.42555066973003,14.0,22.346344250387247,10.564976201294003,3.2799191039203484,2.64,2.56,2.7,2.382980549199085,3.16,2.52,2.6479223433242507,1.814214103653356,2.451276391554703,2.592325227963526 -2019,3,24,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,24,23,24,21,10,11,2,19.0,12.0,21.957097042532894,8.564976201294003,3.2799191039203484,2.64,2.56,2.7,2.382980549199085,3.16,2.52,2.6479223433242507,1.814214103653356,2.451276391554703,2.592325227963526 -2019,3,25,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,25,24,26,23,8,9,3,21.069163002297522,11.0,20.43487706735742,5.235680287562861,3.2799191039203484,2.64,2.56,2.7,2.382980549199085,3.16,2.52,2.6479223433242507,1.814214103653356,2.451276391554703,2.592325227963526 -2019,3,26,0,0,0,0,2,0,1,0.0,0.0,0.0,0.7764319712437139,32,29,30,23,11,14,5,19.356387667432507,9.0,16.877711176115525,3.0121122588065754,3.568529048207664,2.64,2.56,2.7,2.4750858034321372,3.5,2.71,2.641296043656207,2.3518446601941747,2.4974628792769527,2.585799957164275 -2019,3,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7764319712437139,32,29,24,15,14,15,5,20.712775334865015,11.0,14.365000017105668,1.6707040862688585,3.3951763299462043,2.6,2.54,2.67,2.4408528645833334,3.0,2.56,2.6316081812713055,2.630422310756972,2.397154308617234,2.557915029693924 -2019,3,28,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,28,25,16,17,11,11,2,18.356387667432507,12.0,16.92268450062965,1.4471360575125725,3.5006342620035564,2.52,2.44,2.5,2.35646408839779,2.8,2.43,2.5146133886870783,2.0783916083916085,2.3731993736951984,2.4812140659340662 -2019,3,29,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,22,19,17,22,7,7,1,17.712775334865015,12.0,23.87978644893967,4.6707040862688585,3.2894014084507046,2.55,2.35,2.33,2.3083672376873667,2.64,2.31,2.428500551267916,1.705458593054319,2.389100623330365,2.498033959662127 -2019,3,30,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,15,10,20,28,3,3,5,16.0,10.0,25.384438642574054,7.3535204313442915,3.2894014084507046,2.55,2.35,2.33,2.3083672376873667,2.64,2.31,2.428500551267916,1.705458593054319,2.389100623330365,2.498033959662127 -2019,3,31,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,13,15,34,31,5,19,17,15.0,6.0,24.435696719435832,9.247792546369437,3.2894014084507046,2.55,2.35,2.33,2.3083672376873667,2.64,2.31,2.428500551267916,1.705458593054319,2.389100623330365,2.498033959662127 -2019,4,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,29,31,27,15,21,17,14.712775334865015,4.0,21.976092405217962,6.800656488856864,3.0474078212290503,2.58,2.47,2.61,2.328132158590308,3.19,2.32,2.5579048036209664,1.900457337883959,2.5471611982881597,2.5266225263003013 -2019,4,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,28,24,23,15,17,11,13.069163002297522,8.0,19.742364529062502,4.459248316319147,3.1541969407265773,2.62,2.53,2.69,2.341691691691692,2.92,2.35,2.62596837944664,2.0997910447761194,2.5670911360799,2.573225859652016 -2019,4,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,20,21,21,10,12,7,15.356387667432507,10.0,17.77880509341019,5.564976201294003,3.367496757457847,2.58,2.48,2.55,2.39109243697479,2.73,2.5,2.5459382716049386,2.327249388753056,2.465612565445026,2.536529083942877 -2019,4,4,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,23,21,22,21,8,11,2,15.356387667432507,11.0,15.164285245378258,5.012112258806575,3.5505833333333334,2.57,2.48,2.58,2.3908790560471975,2.74,2.52,2.530617507351278,2.3226019273535954,2.4625151515151518,2.5075518361229077 -2019,4,5,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,29,27,18,15,8,6,1,16.712775334865015,12.0,13.392382709485235,5.341408172537717,3.5696561604584525,2.56,2.46,2.56,2.376799750467873,2.8,2.51,2.531918928969877,2.4495278637770896,2.4336808510638295,2.493908562863032 -2019,4,6,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,19,16,12,11,3,2,1,19.356387667432507,9.0,14.765729906372599,4.012112258806575,3.346315789473684,2.49,2.34,2.32,2.2888106630211893,2.57,2.45,2.407439042859306,2.2707374392220423,2.2544284781188764,2.4520081300813006 -2019,4,7,0,0,0,0,4,2,4,0.0,0.0,0.0,1.5528639424874278,17,13,9,8,3,2,0,19.0,4.0,13.382839488330026,2.341408172537717,3.346315789473684,2.49,2.34,2.32,2.2888106630211893,2.57,2.45,2.407439042859306,2.2707374392220423,2.2544284781188764,2.4520081300813006 -2019,4,8,0,0,0,0,6,2,5,0.0,1.0,0.39901667570470034,3.8821598562185695,21,8,5,7,0,1,0,17.643612332567493,2.0,11.142185687666341,1.1178401437814307,3.346315789473684,2.49,2.34,2.32,2.2888106630211893,2.57,2.45,2.407439042859306,2.2707374392220423,2.2544284781188764,2.4520081300813006 -2019,4,9,0,0,0,0,5,3,6,0.0,0.0,0.5985250135570506,5.658591827462284,26,12,10,12,0,1,0,18.42555066973003,6.0,12.31384560706055,0.6707040862688585,3.2155725190839695,2.59,2.47,2.53,2.1535837384003536,3.07,2.22,2.5325713752565777,2.3242492917847026,2.4344464285714285,2.476375832354093 -2019,4,10,0,0,0,1,4,2,8,0.0,0.0,0.0,0.0,25,18,21,16,2,2,0,20.712775334865015,9.0,21.295644722071266,4.6707040862688585,3.1378965369816156,2.6,2.47,2.55,2.309700157811678,3.31,2.34,2.5299568867710462,2.16497432605905,2.469970023980815,2.458611027114202 -2019,4,11,0,0,0,0,3,3,4,0.0,0.0,0.0,0.0,25,21,16,21,3,0,2,20.712775334865015,10.0,28.085734200218575,10.235680287562861,2.948636363636364,2.61,2.46,2.53,2.3436634663971705,2.91,2.32,2.5185174999999997,2.141290322580645,2.530746619635509,2.429013345605154 -2019,4,12,0,0,0,0,5,2,1,0.0,0.0,0.0,0.0,20,12,15,27,2,1,6,17.356387667432507,9.0,26.622570615595635,9.90638437383172,2.866643628509719,2.58,2.4,2.42,2.3240185950413226,2.7,2.26,2.472467893835616,2.2880044345898005,2.483348961821835,2.4643900778210117 -2019,4,13,0,0,0,0,6,2,3,0.0,0.0,0.0,0.0,8,5,19,26,0,4,7,20.356387667432507,7.0,23.907384995512828,10.129952402588007,2.7022950819672134,2.54,2.36,2.34,2.1665485362095533,2.65,2.17,2.428556902620258,2.03243195785777,2.4200251730648206,2.4287117925955815 -2019,4,14,0,0,0,0,7,2,0,0.0,0.0,0.0,0.0,8,7,23,25,0,2,8,22.356387667432507,6.0,18.644802952038475,5.459248316319147,2.7022950819672134,2.54,2.36,2.34,2.1665485362095533,2.65,2.17,2.428556902620258,2.03243195785777,2.4200251730648206,2.4287117925955815 -2019,4,15,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7764319712437139,9,10,23,17,4,13,3,21.42555066973003,9.0,14.651703314865879,2.341408172537717,2.7022950819672134,2.54,2.36,2.34,2.1665485362095533,2.65,2.17,2.428556902620258,2.03243195785777,2.4200251730648206,2.4287117925955815 -2019,4,16,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,17,16,13,9,6,6,1,19.643612332567493,11.0,15.57266059464861,2.894272115025145,2.4188357785139614,2.48,2.38,2.46,0.7251280974380512,2.78,1.74,2.44720890893713,0.9069135802469136,2.079431137724551,2.2610244458255644 -2019,4,17,0,0,0,1,2,0,5,0.0,0.0,0.0,0.0,17,14,8,8,3,2,0,13.643612332567493,6.0,15.550889594904806,6.564976201294003,2.688217344753747,2.48,2.33,2.43,1.4006949806949807,2.86,1.86,2.4074731034482757,1.434,2.15534105002067,2.1846111882562984 -2019,4,18,0,0,0,0,4,2,2,0.0,0.0,0.19950833785235017,2.3292959137311415,19,9,8,14,0,0,1,9.574449330269971,1.0,13.70892036174426,3.0121122588065754,2.792085359265262,2.4,2.27,2.35,1.5738728323699422,2.45,1.88,2.3381176161722235,1.761528239202658,2.1898891966759004,2.2590599078341014 -2019,4,19,0,0,0,0,5,0,0,0.0,0.0,0.7980333514094007,5.4350237987059975,8,3,17,15,0,8,5,11.930836997702478,1.0,10.466109051939851,1.564976201294003,2.4035820895522386,2.32,2.12,2.09,1.1382686414708887,2.33,1.33,2.1957321261317517,1.246786355475763,1.998484710178001,2.1681436493266437 -2019,4,20,0,1,0,0,1,0,0,0.0,0.0,0.7980333514094007,4.658591827462283,4,4,18,9,6,15,3,13.712775334865015,7.0,8.187748028184206,0.6707040862688585,2.4035820895522386,2.32,2.12,2.09,1.1382686414708887,2.33,1.33,2.1957321261317517,1.246786355475763,1.998484710178001,2.1681436493266437 -2019,4,21,0,0,0,0,0,0,2,0.0,0.0,0.19950833785235017,3.1057278849748555,7,10,11,5,7,9,1,15.356387667432507,8.0,11.178179438997276,0.6707040862688585,2.4035820895522386,2.32,2.12,2.09,1.1382686414708887,2.33,1.33,2.1957321261317517,1.246786355475763,1.998484710178001,2.1681436493266437 -2019,4,22,0,0,0,0,1,0,3,0.0,0.0,0.0,1.5528639424874278,10,9,6,7,3,4,0,14.930836997702478,6.0,14.344813389724811,2.341408172537717,2.4035820895522386,2.32,2.12,2.09,1.1382686414708887,2.33,1.33,2.1957321261317517,1.246786355475763,1.998484710178001,2.1681436493266437 -2019,4,23,0,0,0,0,2,0,4,0.0,0.0,0.5985250135570506,1.5528639424874278,10,4,7,11,0,1,1,13.287224665134985,1.0,12.070490724240523,3.2356802875628614,2.5169644208932627,2.27,2.17,2.19,1.713941205779771,2.42,1.65,2.237551305970149,1.6870772176132742,2.0229070691024624,2.2622550588235293 -2019,4,24,0,0,0,0,4,2,4,0.0,2.0,1.1970500271141011,3.1057278849748555,11,8,14,8,0,0,2,13.930836997702478,0.0,9.954109488812215,2.7885442300502894,2.3824452724732184,2.23,2.16,2.29,1.656032110091743,2.44,1.62,2.240260761589404,1.6100943396226415,2.03714865550482,2.1911345251173477 -2019,4,25,0,0,0,0,4,1,4,0.0,3.0,1.5960667028188014,6.211455769949711,15,12,10,7,0,0,0,14.218061662837464,0.0,10.343032269879192,0.8942721150251446,2.657661354581673,2.23,2.16,2.27,1.8457296767874636,2.52,1.64,2.264753461258198,2.01612685560054,2.1037799834574025,2.255292938931298 -2019,4,26,0,0,0,0,5,1,3,0.0,1.0,1.7955750406711515,8.764319712437139,17,10,11,12,1,2,1,13.574449330269971,0.0,9.062170848981525,0.4471360575125723,2.5509591354272203,2.21,2.14,2.27,1.8484812108559499,2.44,1.67,2.253448275862069,2.010731707317073,2.0942062572421785,2.237576148427423 -2019,4,27,0,0,0,0,2,0,4,0.0,1.0,1.5960667028188014,8.435023798705998,17,15,20,13,3,6,0,18.0,2.0,11.684921235488986,0.22356802875628615,2.280344827586207,2.31,2.2,2.26,1.6214292682926827,2.52,1.66,2.2944892349977097,1.5373015873015872,2.160530401034929,2.2749689624593556 -2019,4,28,0,0,0,0,3,1,5,0.0,0.0,1.7955750406711515,7.435023798705997,20,18,20,19,1,4,0,19.0,3.0,12.887327790278544,0.4471360575125723,2.280344827586207,2.31,2.2,2.26,1.6214292682926827,2.52,1.66,2.2944892349977097,1.5373015873015872,2.160530401034929,2.2749689624593556 -2019,4,29,0,0,0,0,4,2,7,0.0,0.0,0.5985250135570506,5.4350237987059975,20,20,18,17,4,1,0,17.356387667432507,7.0,21.156296122777142,0.8942721150251446,2.280344827586207,2.31,2.2,2.26,1.6214292682926827,2.52,1.66,2.2944892349977097,1.5373015873015872,2.160530401034929,2.2749689624593556 -2019,4,30,0,0,0,0,6,5,9,0.0,0.0,0.0,0.7764319712437139,20,14,16,17,0,0,0,15.643612332567493,8.0,21.766729393912538,2.894272115025145,2.879864812668984,2.39,2.26,2.37,1.9505220228384994,2.62,1.89,2.3609407298038385,1.8043697478991596,2.318856548856549,2.325568235294118 -2019,5,1,0,0,0,0,7,7,10,0.0,0.0,0.0,1.5528639424874278,19,12,9,15,1,0,0,15.643612332567493,7.0,21.20859396619106,1.8942721150251445,2.7738669724770646,2.41,2.25,2.42,1.9459354076408033,2.58,1.97,2.366664137198361,1.6687679907887163,2.341137605563835,2.3551601356443106 -2019,5,2,0,0,0,0,9,7,7,0.0,0.0,0.0,1.5528639424874278,16,5,10,14,0,0,1,16.356387667432507,5.0,18.345211209519995,2.341408172537717,2.741125137211855,2.48,2.26,2.34,2.025912215758858,2.71,1.93,2.412921061585573,1.7468798955613576,2.381071663379356,2.415234638585012 -2019,5,3,0,0,0,0,8,5,6,0.0,0.0,0.39901667570470034,3.8821598562185695,16,9,11,14,0,0,1,13.643612332567493,4.0,14.172560064947326,1.1178401437814307,2.8198425196850394,2.4,2.23,2.34,2.0058333333333334,2.55,1.89,2.3383041722745626,1.745878962536023,2.306059344091619,2.3644811896570856 -2019,5,4,0,0,0,0,9,3,5,0.0,0.0,0.7980333514094007,4.658591827462283,10,6,12,10,0,0,0,11.287224665134985,3.0,11.246897886700948,0.8942721150251446,2.5098844323589393,2.32,2.17,2.27,1.889706329113924,2.46,1.85,2.283225669358266,1.6448380427291522,2.135754060324826,2.306673866090713 -2019,5,5,0,0,0,0,7,2,6,0.0,0.0,1.1970500271141011,5.658591827462284,12,9,9,8,0,1,0,8.930836997702478,6.0,9.544418745774818,0.4471360575125723,2.5098844323589393,2.32,2.17,2.27,1.889706329113924,2.46,1.85,2.283225669358266,1.6448380427291522,2.135754060324826,2.306673866090713 -2019,5,6,0,0,0,0,6,1,6,0.0,0.0,0.39901667570470034,2.5528639424874275,10,5,7,10,0,1,0,6.2872246651349855,8.0,9.089822326307894,0.4471360575125723,2.5098844323589393,2.32,2.17,2.27,1.889706329113924,2.46,1.85,2.283225669358266,1.6448380427291522,2.135754060324826,2.306673866090713 -2019,5,7,0,0,0,0,6,3,9,0.0,0.0,0.19950833785235017,0.0,10,6,11,11,0,0,0,6.643612332567493,7.0,12.809522616891275,2.4471360575125725,3.0878712220762154,2.35,2.23,2.29,2.0531738913801694,2.42,2.04,2.3167198228128463,2.0451902173913044,2.256171662125341,2.3265678015002886 -2019,5,8,0,0,0,0,7,6,7,0.0,0.0,0.39901667570470034,1.5528639424874278,9,6,9,11,0,0,0,6.356387667432507,5.0,15.024985639305706,3.5649762012940034,2.98,2.33,2.22,2.23,2.1602068661971834,2.41,2.13,2.304707238358691,2.179967248908297,2.2587234042553193,2.329614279398762 -2019,5,9,0,0,1,0,7,4,7,0.0,0.0,0.19950833785235017,1.5528639424874278,15,9,6,17,0,0,1,3.3563876674325073,6.0,18.718067957794048,3.682816345075434,2.7667354698533404,2.35,2.24,2.31,2.0721243758511116,2.41,2.04,2.332414209763171,2.1647269524368764,2.285115712545676,2.3537772164080355 -2019,5,10,0,0,0,0,9,3,2,0.7127753348650143,0.0,0.0,1.5528639424874278,11,3,12,16,0,1,5,1.0,5.0,16.778775981495926,4.353520431344292,2.930009037505649,2.33,2.2,2.2,1.9869534412955465,2.4,2.01,2.2819969742813924,2.0636177884615385,2.193264320220842,2.3414638657682656 -2019,5,11,0,0,0,0,8,3,2,0.0,0.0,0.19950833785235017,1.5528639424874278,8,7,17,15,0,2,4,1.0,2.0,12.816222294704362,3.2356802875628614,2.6987639060568607,2.33,2.2,2.19,1.9112328767123288,2.35,1.85,2.27892765160384,1.8416101238556812,2.190793650793651,2.3462906632868608 -2019,5,12,0,0,0,0,7,3,3,0.0,0.0,0.5985250135570506,2.3292959137311415,17,16,17,13,2,2,1,6.643612332567493,2.0,8.458736314414871,2.7885442300502894,2.6987639060568607,2.33,2.2,2.19,1.9112328767123288,2.35,1.85,2.27892765160384,1.8416101238556812,2.190793650793651,2.3462906632868608 -2019,5,13,0,0,0,0,6,1,4,0.0,1.0,1.1970500271141011,3.8821598562185695,17,19,14,10,3,5,0,9.0,2.0,5.40084207664386,1.341408172537717,2.6987639060568607,2.33,2.2,2.19,1.9112328767123288,2.35,1.85,2.27892765160384,1.8416101238556812,2.190793650793651,2.3462906632868608 -2019,5,14,0,0,0,0,4,1,6,0.0,0.0,1.3965583649664512,6.987887741193425,22,18,11,5,5,6,0,12.712775334865015,2.0,4.2035547648360865,0.4471360575125723,2.918947368421053,2.41,2.36,2.46,2.0859981472904123,2.71,2.02,2.4255125881168174,2.188235294117647,2.267780172413793,2.4513258208124653 -2019,5,15,0,0,0,2,3,1,8,0.0,0.0,1.3965583649664512,9.764319712437139,15,11,7,2,4,5,0,10.781938337162536,5.0,3.8876651915554277,0.22356802875628615,3.171764948453608,2.4,2.3,2.35,2.2436470588235293,2.46,2.13,2.373370411568409,2.321860308932169,2.259903846153846,2.4439268553123332 -2019,5,16,0,0,1,6,4,5,10,0.0,0.0,0.19950833785235017,7.658591827462283,10,7,3,2,1,1,0,11.712775334865015,9.0,4.235095232430234,0.22356802875628615,3.0798922734026744,2.33,2.27,2.3,1.9165866388308976,2.34,1.84,2.336232051875868,2.1537942122186493,2.133160377358491,2.383554574516669 -2019,5,17,0,0,1,5,7,8,11,0.0,0.0,0.0,1.2235680287562862,9,3,4,4,0,0,0,12.425550669730029,10.0,11.759068377431642,1.2235680287562862,2.941070547607301,2.35,2.23,2.24,1.890625,2.3,1.85,2.329663662343372,1.8596936758893279,2.1770704225352118,2.348971493155846 -2019,5,18,0,1,3,3,10,9,11,0.0,0.0,0.0,0.7764319712437139,6,4,4,6,0,0,0,9.425550669730029,10.0,15.329231156926191,3.1178401437814305,2.7817909002904164,2.38,2.25,2.23,1.8114913366336634,2.3,1.76,2.336213642213642,1.378768267223382,2.1826951151038743,2.3705270127118645 -2019,5,19,0,3,3,0,11,8,11,0.0,0.0,0.0,0.7764319712437139,5,0,2,10,0,0,0,11.138326004595044,13.0,16.913694534944916,3.1178401437814305,2.7817909002904164,2.38,2.25,2.23,1.8114913366336634,2.3,1.76,2.336213642213642,1.378768267223382,2.1826951151038743,2.3705270127118645 -2019,5,20,4,6,0,0,12,8,12,0.0,0.0,0.0,0.0,1,0,9,15,0,0,0,12.712775334865015,11.0,19.08561536422264,5.447136057512573,2.7817909002904164,2.38,2.25,2.23,1.8114913366336634,2.3,1.76,2.336213642213642,1.378768267223382,2.1826951151038743,2.3705270127118645 -2019,5,21,0,0,0,0,9,8,12,0.0,0.0,0.0,0.0,6,5,14,12,0,0,0,12.425550669730029,12.0,20.440113790791457,6.564976201294003,2.8343029490616622,2.47,2.32,2.31,1.7938731343283583,2.44,1.74,2.465263754963131,1.301266213712168,2.249644927536232,2.435264642665234 -2019,5,22,0,0,0,0,8,10,12,0.0,0.0,0.0,0.0,7,7,3,8,1,0,0,8.781938337162536,10.0,18.84647783598941,6.2235680287562865,2.9708508457201432,2.39,2.26,2.25,1.7841702867072111,2.32,1.68,2.4198883980469654,1.6525686172967375,2.1879027355623104,2.371258647894162 -2019,5,23,0,0,3,1,11,12,15,0.0,0.0,0.0,0.22356802875628615,7,2,1,7,0,0,0,5.069163002297522,10.0,18.47154252285656,6.0,2.813280865715691,2.28,2.24,2.28,1.786147278548559,2.32,1.7,2.3734596375617794,1.6050873362445415,2.0630440173589584,2.3096679761753895 -2019,5,24,0,2,3,3,13,13,15,0.0,0.0,0.0,0.7764319712437139,3,2,3,3,0,0,0,11.069163002297522,6.0,13.123243643032676,2.341408172537717,2.6902089337175794,2.26,2.19,2.22,1.8231190926275993,2.32,1.63,2.3394879898862198,1.7116198347107439,2.072602006688963,2.3348709599614086 -2019,5,25,0,1,7,4,13,13,14,0.0,0.0,0.19950833785235017,2.5528639424874275,7,4,0,3,0,0,0,14.425550669730029,7.0,10.015823261374834,1.4471360575125725,2.316081871345029,2.27,2.17,2.2,1.5475769068689422,2.29,1.45,2.3607112970711297,1.0580731581658938,2.061427600271924,2.146807654802535 -2019,5,26,3,5,5,4,15,13,14,0.0,0.0,0.0,2.0,1,0,0,3,0,0,0,8.781938337162536,12.0,7.740670551310588,1.2235680287562862,2.316081871345029,2.27,2.17,2.2,1.5475769068689422,2.29,1.45,2.3607112970711297,1.0580731581658938,2.061427600271924,2.146807654802535 -2019,5,27,2,4,2,4,14,13,14,0.0,0.0,0.0,0.22356802875628615,1,1,2,4,0,0,0,6.851101339460056,11.0,11.091137332776743,1.4471360575125725,2.316081871345029,2.27,2.17,2.2,1.5475769068689422,2.29,1.45,2.3607112970711297,1.0580731581658938,2.061427600271924,2.146807654802535 -2019,5,28,0,2,4,4,15,14,14,0.0,0.0,0.0,0.0,10,3,2,5,0,0,0,6.7127753348650145,7.0,12.237535275603651,2.894272115025145,2.316081871345029,2.27,2.17,2.2,1.5475769068689422,2.29,1.45,2.3607112970711297,1.0580731581658938,2.061427600271924,2.146807654802535 -2019,5,29,0,3,3,2,15,14,13,0.0,0.0,0.19950833785235017,2.3292959137311415,12,3,2,3,0,0,0,5.0,3.0,10.477555972819154,1.8942721150251445,2.5667215568862276,2.33,2.22,2.27,1.666885768985322,2.36,1.4,2.4371413892314018,1.4600367647058823,2.1884404242046163,2.241972972972973 -2019,5,30,0,2,3,1,15,11,11,0.0,0.0,0.7980333514094007,5.4350237987059975,9,2,1,1,0,0,0,3.3563876674325073,1.0,8.410700881277677,0.8942721150251446,2.5809388335704124,2.41,2.26,2.29,1.7259680741503605,2.36,1.31,2.402447257383966,1.6556986634264883,2.280270700636943,2.316633097103071 -2019,5,31,0,3,3,4,13,10,12,0.6436123325674928,1.0,1.3965583649664512,8.211455769949712,1,1,0,0,0,0,0,2.0,1.0,6.189503779998101,0.4471360575125723,2.6948387096774193,2.34,2.23,2.23,1.745991356023771,2.35,1.43,2.350460479468312,1.8094222992489888,2.2268499999999998,2.3446447890371442 -2019,6,1,0,2,4,4,11,9,14,0.6436123325674928,1.0,1.3965583649664512,8.658591827462283,3,0,1,2,0,0,0,1.6436123325674927,2.0,4.3697415152486725,0.22356802875628615,2.4293402565668907,2.2,2.11,2.14,1.2923676880222843,2.26,0.93,2.2528513687304796,1.3710997304582209,1.8861525423728813,2.1387717017918484 -2019,6,2,0,2,1,2,11,10,14,0.6436123325674928,1.0,1.512041649531411,8.435023798705998,3,1,3,3,0,0,0,2.287224665134986,2.0,3.0007263777633,0.22356802875628615,2.4293402565668907,2.2,2.11,2.14,1.2923676880222843,2.26,0.93,2.2528513687304796,1.3710997304582209,1.8861525423728813,2.1387717017918484 -2019,6,3,0,0,0,3,10,8,15,0.6436123325674928,2.0,1.7806261049698169,9.658591827462283,6,7,7,1,0,0,0,5.643612332567493,1.0,2.392063188474987,0.0,2.4293402565668907,2.2,2.11,2.14,1.2923676880222843,2.26,0.93,2.2528513687304796,1.3710997304582209,1.8861525423728813,2.1387717017918484 -2019,6,4,0,0,1,6,9,9,14,0.0,4.0,2.3100750009408118,10.21145576994971,10,8,2,0,1,0,0,5.930836997702478,0.0,2.488369144753281,0.22356802875628615,2.4338066260987152,2.18,2.08,2.14,1.2481806879403232,2.19,1.01,2.196830935251799,1.42041383570105,1.9550599270453362,2.1258523686283337 -2019,6,5,1,2,5,9,11,11,13,0.0,6.0,3.1153774230585336,11.093615626168281,1,1,0,0,0,0,0,8.287224665134985,0.0,2.293593268086067,0.4471360575125723,2.3264931506849313,2.17,2.08,2.21,1.3962691652470187,2.26,1.24,2.265241054613936,1.5771368547418967,1.9468316831683168,2.119164955509925 -2019,6,6,4,6,4,8,13,9,13,0.0,3.0,3.275747664640301,12.317183654924566,0,0,0,0,0,0,0,12.356387667432507,0.0,1.5101401444970834,0.22356802875628615,2.4205598866052442,2.19,2.1,2.24,1.68593991416309,2.34,1.51,2.240148219441771,1.8825300515168861,2.0331793770139632,2.1741316881918817 -2019,6,7,2,3,4,9,12,10,14,0.0,0.0,2.8378321138496605,13.211455769949712,1,0,0,0,0,0,0,14.712775334865015,2.0,2.9195886970636793,0.0,2.369423449612403,2.19,2.07,2.13,1.5301989150090416,2.3,1.32,2.1935728676964406,1.7072549019607843,2.037188160676533,2.1270703075156314 -2019,6,8,1,2,4,9,11,10,15,0.0,2.0,2.1672835788986773,11.32929591373114,1,0,0,0,0,0,0,11.712775334865015,1.0,7.716167356455508,0.0,1.8329337175792508,2.1,2.01,2.01,1.3816925064599481,2.17,1.56,2.091314017547439,1.4086309523809524,1.871967621419676,2.0924518137196215 -2019,6,9,0,1,5,4,10,11,16,0.0,6.0,1.5960667028188014,12.764319712437139,3,1,0,1,0,0,0,7.2872246651349855,0.0,10.376707589669698,0.22356802875628615,1.8329337175792508,2.1,2.01,2.01,1.3816925064599481,2.17,1.56,2.091314017547439,1.4086309523809524,1.871967621419676,2.0924518137196215 -2019,6,10,0,1,3,1,11,11,12,0.0,10.0,1.9950833785235016,13.199343511143136,2,2,0,2,0,0,0,3.5744493302699714,0.0,7.243459388782773,0.6707040862688585,1.8329337175792508,2.1,2.01,2.01,1.3816925064599481,2.17,1.56,2.091314017547439,1.4086309523809524,1.871967621419676,2.0924518137196215 -2019,6,11,2,2,1,1,10,4,9,3.7819383371625355,12.0,2.9158690852061833,15.422911539899424,1,1,2,2,0,0,0,0.0,0.0,4.210548595627699,0.0,2.8332228360957643,2.13,2.04,2.21,1.932305220883534,2.2,1.93,2.1860340275740686,2.3575505967825636,1.9229277566539924,2.1056487760027585 -2019,6,12,0,0,0,0,7,4,10,7.425550669730029,11.0,3.629877383328194,17.199343511143137,3,3,2,3,0,0,0,0.0,0.0,2.630527656996325,0.0,2.969239177962396,2.15,2.06,2.22,1.900034742327736,2.21,2.01,2.195663815544812,2.6044940867279895,1.9585714285714284,2.0506187335092347 -2019,6,13,0,0,0,0,8,3,10,3.7127753348650145,5.0,5.12146917180606,18.09361562616828,9,5,5,4,0,0,0,0.0,0.0,0.48404747785283686,0.0,2.7788857938718663,2.16,2.05,2.1,1.8487576944599888,2.21,2.05,2.201831840508523,2.2684210526315787,1.9656716417910447,2.0893501592168886 -2019,6,14,0,0,0,2,6,2,12,0.6436123325674928,3.0,4.1243382768290004,15.435023798705997,4,3,3,1,0,1,0,4.2872246651349855,0.0,0.11233893962531094,0.0,2.5558271171566473,2.07,1.97,2.01,1.6837101910828025,2.22,1.9,2.089241397995123,2.0532974316487156,1.7715923566878982,2.060425232633629 -2019,6,15,0,0,1,4,7,6,15,0.6436123325674928,3.0,3.809346654411691,13.987887741193425,3,3,1,1,0,0,0,4.2872246651349855,0.0,1.0313545644609108,0.0,2.114997137950773,1.99,1.97,2.09,1.6713655685441022,2.16,1.9,2.0888219818766443,1.7435993061578492,1.6793684210526316,2.0718743467657648 -2019,6,16,0,2,2,4,10,10,14,0.6436123325674928,3.0,3.5458523300408036,14.540751683680853,2,2,3,1,0,0,0,2.6436123325674927,0.0,1.5095855334829293,0.22356802875628615,2.114997137950773,1.99,1.97,2.09,1.6713655685441022,2.16,1.9,2.0888219818766443,1.7435993061578492,1.6793684210526316,2.0718743467657648 -2019,6,17,3,4,2,4,13,13,13,0.6436123325674928,3.0,3.3463439921884537,14.540751683680853,0,0,1,1,0,0,0,2.287224665134986,0.0,2.0342236694838522,0.0,2.114997137950773,1.99,1.97,2.09,1.6713655685441022,2.16,1.9,2.0888219818766443,1.7435993061578492,1.6793684210526316,2.0718743467657648 -2019,6,18,0,5,4,4,13,11,14,0.6436123325674928,5.0,3.553121400749125,13.764319712437139,1,0,0,1,0,0,0,3.2872246651349855,0.0,2.708564628352848,0.0,2.64425068119891,2.22,2.09,2.22,1.953605527638191,2.34,1.89,2.2327677419354837,2.098351177730193,2.056405384006334,2.131434415750447 -2019,6,19,2,5,5,3,14,13,16,0.0,6.0,3.6056882227589457,12.987887741193425,0,0,0,1,0,0,0,8.0,0.0,1.7347355937820306,0.0,2.42284126003706,2.19,2.08,2.15,1.8281908360888048,2.3,1.88,2.214237610084614,2.1083622484385844,2.0258355437665783,2.1687825015403575 -2019,6,20,1,6,2,5,15,11,17,0.0,3.0,3.7706193524258,14.658591827462283,1,0,1,1,0,0,0,10.069163002297522,0.0,2.9299808758606654,0.0,2.416706014614952,2.18,2.07,2.17,1.852786010669828,2.23,1.85,2.2103198420533072,2.031897733263047,2.052608695652174,2.173824855925833 -2019,6,21,2,5,1,5,14,12,19,0.0,1.0,2.7658085924557283,13.435023798705998,1,0,1,1,0,0,0,8.069163002297522,1.0,8.560898283939796,0.0,2.1027584797711487,2.09,1.98,2.08,1.6095353748680044,2.11,1.64,2.1355693069306936,1.6688138771683074,1.8971446700507615,2.0943627619374783 -2019,6,22,2,2,3,6,13,13,19,0.0,2.0,1.5960667028188014,12.435023798705998,0,1,1,1,0,0,0,7.0,0.0,8.792125762953237,0.22356802875628615,1.3005952380952381,1.91,1.89,1.97,0.9882231578947367,2.07,1.11,2.0120310296191817,0.914429566148902,1.5776766821836647,1.8650584859854336 -2019,6,23,3,3,4,3,12,14,18,0.0,5.0,1.7955750406711515,10.987887741193424,0,0,0,1,0,0,0,7.643612332567493,0.0,7.949430152029387,0.4471360575125723,1.3005952380952381,1.91,1.89,1.97,0.9882231578947367,2.07,1.11,2.0120310296191817,0.914429566148902,1.5776766821836647,1.8650584859854336 -2019,6,24,4,4,6,4,14,12,12,0.0,5.0,2.194591716375852,11.764319712437139,0,0,0,0,0,0,0,7.0,0.0,3.9294331716643085,0.22356802875628615,1.3005952380952381,1.91,1.89,1.97,0.9882231578947367,2.07,1.11,2.0120310296191817,0.914429566148902,1.5776766821836647,1.8650584859854336 -2019,6,25,1,8,7,6,15,12,13,0.0,3.0,3.5856491559900925,13.211455769949712,1,0,0,0,0,0,0,7.356387667432507,0.0,1.754814810463687,0.0,2.3910583768391076,2.03,1.97,2.04,1.8396017699115044,2.15,1.87,2.130505678745268,2.0072534332084895,1.8980935251798559,2.008681938114656 -2019,6,26,7,9,10,8,14,13,15,0.0,2.0,4.651326925570775,13.88215985621857,0,0,0,0,0,0,0,6.7127753348650145,1.0,0.4983101857036747,0.0,2.2171280653950953,2.08,2.0,2.16,1.8035089894606326,2.3,1.76,2.151302772241348,1.9451808785529714,1.9530902972518225,2.080072523102117 -2019,6,27,6,10,11,10,15,13,17,0.0,2.0,5.472344811065936,15.658591827462283,0,0,0,0,0,0,0,8.781938337162536,1.0,0.7442256905349292,0.0,2.1608380952380952,2.08,2.03,2.17,1.730768094534712,2.26,1.67,2.1721251516727333,1.7742188449848024,1.9559833440102499,2.093496030196538 -2019,6,28,8,10,12,12,15,13,17,0.0,2.0,6.283385443229539,17.987887741193425,0,0,0,0,0,0,0,6.356387667432507,1.0,0.8222626618914519,0.0,2.0257393850658856,2.07,2.0,2.08,1.74002772002772,2.17,1.85,2.14475758200949,1.629745222929936,1.9842305508233955,2.076706479546133 -2019,6,29,8,12,13,14,14,13,16,0.0,3.0,7.544171584977194,20.76431971243714,0,0,0,0,0,0,0,4.356387667432507,0.0,0.45314385758942116,0.0,2.0257393850658856,2.07,2.0,2.08,1.74002772002772,2.17,1.85,2.14475758200949,1.629745222929936,1.9842305508233955,2.076706479546133 -2019,6,30,5,8,12,14,15,14,14,0.0,6.0,7.171285724788872,21.317183654924566,0,0,0,0,0,0,0,2.0,0.0,0.13815223517211112,0.0,2.0257393850658856,2.07,2.0,2.08,1.74002772002772,2.17,1.85,2.14475758200949,1.629745222929936,1.9842305508233955,2.076706479546133 -2019,7,1,5,5,11,12,15,15,16,0.6436123325674928,5.0,6.490956683989008,19.540751683680853,0,0,0,0,0,0,0,3.425550669730028,0.0,0.06907611758605556,0.0,2.241875245194194,2.1,2.02,2.1,1.782878192534381,2.14,1.76,2.191811361200429,1.9421327014218008,1.9622014925373137,2.0866849343397784 -2019,7,2,7,8,14,13,16,16,16,0.0,5.0,6.067829146499996,18.76431971243714,0,0,0,0,0,0,0,7.0,0.0,0.27630447034422223,0.0,2.1693685914732863,2.04,2.01,2.12,1.775731707317073,2.3,1.77,2.143491281273692,1.841532075471698,1.950620525059666,2.0439466604281202 -2019,7,3,9,11,13,12,17,15,16,0.0,3.0,5.937039256351319,17.211455769949712,0,0,0,0,0,0,0,5.0,0.0,0.5673863032897302,0.0,1.9034025974025972,2.07,2.0,2.1,1.671149782473586,2.25,1.7,2.126625111308994,1.6271700991609457,1.9443230088495576,2.0054767750171854 -2019,7,4,10,12,13,11,17,15,17,0.0,3.0,4.329066232445144,16.435023798706,0,0,0,0,0,0,0,3.2872246651349855,0.0,0.6137934702686345,0.0,1.8688768606224628,2.0,1.94,1.98,1.608919288645691,2.1,1.63,2.0388025288211233,1.5681967213114751,1.8440090771558244,1.9453889032927145 -2019,7,5,9,11,15,10,16,16,19,0.6436123325674928,4.0,4.065571908074257,16.65859182746228,0,0,0,0,0,0,0,3.930836997702478,0.0,0.46668038132605605,0.0,1.8688768606224628,2.0,1.94,1.98,1.608919288645691,2.1,1.63,2.0388025288211233,1.5681967213114751,1.8440090771558244,1.9453889032927145 -2019,7,6,13,14,13,9,16,16,18,0.6436123325674928,5.0,5.266439533488997,15.764319712437139,0,0,0,0,0,0,0,4.356387667432507,0.0,0.14396874400292953,0.0,1.8688768606224628,2.0,1.94,1.98,1.608919288645691,2.1,1.63,2.0388025288211233,1.5681967213114751,1.8440090771558244,1.9453889032927145 -2019,7,7,8,10,9,9,16,16,18,0.0,4.0,6.252388548651011,16.317183654924566,0,0,0,0,0,0,0,4.643612332567493,0.0,0.06907611758605556,0.0,1.8688768606224628,2.0,1.94,1.98,1.608919288645691,2.1,1.63,2.0388025288211233,1.5681967213114751,1.8440090771558244,1.9453889032927145 -2019,7,8,3,6,7,11,15,16,18,0.0,2.0,4.932996960548321,13.658591827462285,0,0,0,0,0,0,0,3.0,0.0,0.3601579505315636,0.0,1.8688768606224628,2.0,1.94,1.98,1.608919288645691,2.1,1.63,2.0388025288211233,1.5681967213114751,1.8440090771558244,1.9453889032927145 -2019,7,9,6,7,8,11,14,17,20,0.0,4.0,4.850835263423125,14.435023798705998,0,0,0,0,0,0,0,3.7127753348650145,0.0,0.5041266945344931,0.0,2.447202572347267,2.12,2.1,2.23,1.8664256880733945,2.28,1.99,2.2027956417751793,1.918449612403101,1.9690688259109312,2.1242588898016663 -2019,7,10,8,10,13,11,15,17,20,0.6436123325674928,6.0,6.1671861734028255,18.987887741193425,0,0,0,0,0,0,0,2.287224665134986,0.0,0.07489262641687396,0.0,2.2380392156862747,2.16,2.13,2.27,1.760112359550562,2.52,1.7,2.231167392883079,1.8975784392598551,1.979471153846154,2.123049911920141 -2019,7,11,7,9,11,8,16,16,18,1.3563876674325073,8.0,10.135478070240271,21.540751683680853,0,0,0,0,0,0,0,0.6436123325674928,0.0,0.0,0.0,2.6180554250821984,2.31,2.24,2.36,2.09453231633882,2.61,2.15,2.3723525513585155,2.274948096885813,2.215077664702732,2.224110807113543 -2019,7,12,10,11,7,10,15,15,17,1.3563876674325073,10.0,11.200232520925884,22.646479568655707,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7829789590254705,2.34,2.25,2.35,2.18908014571949,2.61,2.26,2.3625162507863284,2.5503211678832116,2.249921875,2.2645156663724624 -2019,7,13,9,9,11,11,16,14,17,1.3563876674325073,11.0,11.155517137009124,22.317183654924566,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7001851851851852,2.32,2.22,2.31,2.1692995529061103,2.47,2.24,2.35727680798005,2.4534375,2.2115753424657534,2.2693496889306255 -2019,7,14,11,11,11,13,17,13,16,1.3563876674325073,11.0,11.114926478861038,22.317183654924566,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7001851851851852,2.32,2.22,2.31,2.1692995529061103,2.47,2.24,2.35727680798005,2.4534375,2.2115753424657534,2.2693496889306255 -2019,7,15,6,7,12,12,17,13,17,0.0,11.0,10.456178403491002,22.540751683680853,0,0,0,0,0,0,0,1.6436123325674927,0.0,0.0,0.0,2.7001851851851852,2.32,2.22,2.31,2.1692995529061103,2.47,2.24,2.35727680798005,2.4534375,2.2115753424657534,2.2693496889306255 -2019,7,16,7,10,12,12,18,15,19,1.0,9.0,9.712403657153569,23.540751683680853,0,0,0,0,0,0,0,0.6436123325674928,0.0,0.06907611758605556,0.0,2.745643288434742,2.31,2.21,2.35,2.1555004766444235,2.59,2.31,2.336796497584541,2.5030295358649792,2.207154255319149,2.21943661971831 -2019,7,17,12,13,14,14,18,15,20,0.0,7.0,9.887472962551685,20.211455769949712,0,0,0,0,0,0,0,2.6436123325674927,0.0,0.253635519737071,0.0,2.4952104664391355,2.22,2.14,2.31,2.0087425149700597,2.49,2.07,2.268396416163833,2.2044474885844747,2.140225988700565,2.129988210327753 -2019,7,18,7,11,14,16,17,16,20,0.0,7.0,9.797434459301705,20.211455769949712,0,0,0,0,0,0,0,3.2872246651349855,0.0,0.13815223517211112,0.0,2.4899477806788513,2.25,2.16,2.37,2.0419757807520713,2.43,2.12,2.282769937643584,2.236431261770245,2.143804173354735,2.144702720859926 -2019,7,19,10,14,18,17,18,17,20,0.0,5.0,10.447586257601452,21.211455769949712,0,0,0,0,0,0,0,5.643612332567493,0.0,0.4608638724952377,0.0,2.4963440860215056,2.22,2.16,2.35,2.0443803843605037,2.64,2.15,2.293400473933649,2.2220619396903016,2.0946509740259738,2.1608242867962635 -2019,7,20,17,18,18,15,18,16,20,0.0,6.0,8.769120572963784,20.435023798706,0,0,0,0,0,0,0,2.287224665134986,0.0,0.4608638724952377,0.0,2.29519368723099,2.1,2.03,2.21,1.8498305840392333,2.75,2.06,2.153156686435814,1.9159746146872165,1.977380281690141,2.034361630566393 -2019,7,21,18,18,13,9,18,15,20,2.0,8.0,8.775569991593692,21.211455769949712,0,0,0,0,0,0,0,0.0,0.0,0.20722835275816667,0.0,2.29519368723099,2.1,2.03,2.21,1.8498305840392333,2.75,2.06,2.153156686435814,1.9159746146872165,1.977380281690141,2.034361630566393 -2019,7,22,9,11,6,5,16,14,17,2.3563876674325073,11.0,9.775756088376024,20.317183654924566,0,0,0,0,0,0,0,0.0,0.0,0.06907611758605556,0.0,2.29519368723099,2.1,2.03,2.21,1.8498305840392333,2.75,2.06,2.153156686435814,1.9159746146872165,1.977380281690141,2.034361630566393 -2019,7,23,2,5,3,4,12,9,14,1.6436123325674927,12.0,10.83632229638911,17.317183654924566,0,0,0,0,0,0,0,2.0,0.0,0.0,0.0,2.8922000000000003,2.06,2.01,2.07,2.1128483920367533,2.24,2.29,2.1115114896988905,2.7160693641618496,1.93633608815427,2.0846135450545247 -2019,7,24,5,5,3,5,10,6,12,0.6436123325674928,14.0,11.152133570884832,17.987887741193425,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,2.9277245508982035,2.04,1.97,2.03,2.075558889722431,2.16,2.21,2.070195270123671,2.6854225352112677,1.9831897711978466,2.0591242484969943 -2019,7,25,4,6,5,7,10,7,11,1.712775334865014,14.0,9.575786413824634,19.76431971243714,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.8903189066059225,2.0,1.96,2.07,2.016345461815274,2.13,2.16,2.0771027799030857,2.7210568031704097,1.9270954907161804,2.018199664077262 -2019,7,26,6,7,7,10,11,9,13,4.069163002297522,13.0,9.285155525076622,22.09361562616828,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.826364795918367,2.05,1.96,1.99,2.0126155519303968,2.32,2.09,2.0591856677524434,2.6970024772914942,1.9868496420047734,2.015305531421952 -2019,7,27,7,8,10,11,12,11,15,1.712775334865014,13.0,9.320448266675978,23.09361562616828,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.5894146341463413,1.99,1.91,2.02,1.895,2.14,2.0,2.023243475767135,2.332906465787822,1.8838373751783166,1.9859116527037317 -2019,7,28,9,11,12,10,14,13,18,1.3563876674325073,13.0,9.985906670559444,23.09361562616828,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.5894146341463413,1.99,1.91,2.02,1.895,2.14,2.0,2.023243475767135,2.332906465787822,1.8838373751783166,1.9859116527037317 -2019,7,29,12,13,12,8,15,13,18,1.3563876674325073,10.0,10.359146069449409,22.870047597411993,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.5894146341463413,1.99,1.91,2.02,1.895,2.14,2.0,2.023243475767135,2.332906465787822,1.8838373751783166,1.9859116527037317 -2019,7,30,14,14,9,5,15,13,19,1.0,9.0,12.000444811976086,19.76431971243714,0,0,0,1,0,0,0,1.3563876674325073,0.0,0.0,0.0,2.5818432883750804,2.01,1.94,2.07,1.944736842105263,2.47,2.03,2.0618304707379136,2.3878856152513,1.9517248459958934,1.9776599902296041 -2019,7,31,13,11,5,6,15,13,19,2.0,8.0,10.739859742540943,15.329295913731142,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.536691689008043,2.04,1.94,2.08,1.910113571834185,2.42,2.07,2.0381903765690375,2.355685279187817,1.9710122164048864,1.9255652300101582 -2019,8,1,10,9,4,8,14,13,19,4.0,8.0,9.301217813987002,18.211455769949712,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.6207138607971445,2.07,1.97,2.08,1.8969585987261146,2.32,2.03,2.1096631154621366,2.2564359861591696,1.9639175257731958,2.030431886772817 -2019,8,2,5,8,6,8,13,13,19,2.3563876674325073,10.0,10.54257243073317,20.76431971243714,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.5004008551576695,2.1,1.88,1.99,1.9214876507754164,2.23,2.01,2.04770253929867,2.157025948103793,2.0050322202694786,2.104687234042553 -2019,8,3,7,9,7,10,14,13,18,3.425550669730028,11.0,11.545162164658665,22.317183654924566,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3400000000000003,1.9,1.71,1.88,1.7823628691983122,1.9,1.86,1.8102043132803631,1.9723529411764706,1.8134191886670958,1.941472474868358 -2019,8,4,9,10,8,10,15,13,18,5.069163002297522,11.0,12.104377508845085,21.870047597411993,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3400000000000003,1.9,1.71,1.88,1.7823628691983122,1.9,1.86,1.8102043132803631,1.9723529411764706,1.8134191886670958,1.941472474868358 -2019,8,5,4,7,10,11,13,13,19,6.0,12.0,12.11333836261555,22.870047597411993,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3400000000000003,1.9,1.71,1.88,1.7823628691983122,1.9,1.86,1.8102043132803631,1.9723529411764706,1.8134191886670958,1.941472474868358 -2019,8,6,3,8,9,10,14,14,20,4.643612332567493,11.0,12.485046900843077,18.76431971243714,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.4735548172757476,1.9,1.78,1.96,1.8249323843416372,2.14,1.83,1.9134353803849682,2.3752043795620437,1.8338570306362922,1.9284490125880585 -2019,8,7,7,10,9,9,15,14,21,3.2872246651349855,10.0,11.034045770513297,19.987887741193425,0,0,0,0,0,0,0,0.35638766743250716,0.0,0.0,0.0,2.589045020463847,2.04,1.92,2.09,1.9081881533101044,2.43,1.89,2.018307609475951,2.6349111470113087,1.9715323117921386,2.005784514078111 -2019,8,8,10,9,9,7,15,13,21,2.287224665134986,8.0,8.02671318290112,19.987887741193425,0,0,0,1,0,0,0,2.3563876674325073,0.0,0.0,0.0,2.4889539748953973,2.02,1.89,1.99,1.8755834053586864,2.11,1.88,2.015552369708214,2.2880721533258175,1.9377810433504776,2.01925871601038 -2019,8,9,7,7,5,7,16,15,21,0.6436123325674928,6.0,8.124986355807366,18.211455769949712,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,2.3360869565217395,1.97,1.82,1.88,1.8141672025723474,2.01,1.81,1.9544173829990448,2.0058734939759035,1.8644099913867356,1.994861078683166 -2019,8,10,3,3,5,9,15,15,21,0.6436123325674928,5.0,8.043390114045762,16.987887741193425,0,0,0,0,0,0,0,2.3563876674325073,0.0,0.06907611758605556,0.0,2.1234874651810585,1.9,1.73,1.69,1.6956077348066296,1.88,1.73,1.8860665267237202,1.6466696191319754,1.8035153328347047,1.9896699318568993 -2019,8,11,1,2,6,9,15,14,22,0.0,5.0,6.696940260350884,16.211455769949712,0,0,0,0,0,0,0,2.3563876674325073,0.0,0.5222199751754768,0.0,2.1234874651810585,1.9,1.73,1.69,1.6956077348066296,1.88,1.73,1.8860665267237202,1.6466696191319754,1.8035153328347047,1.9896699318568993 -2019,8,12,4,6,8,11,15,16,22,1.0,7.0,5.8413451666702265,17.987887741193425,0,0,0,0,0,0,0,0.0,0.0,0.3601579505315636,0.0,2.1234874651810585,1.9,1.73,1.69,1.6956077348066296,1.88,1.73,1.8860665267237202,1.6466696191319754,1.8035153328347047,1.9896699318568993 -2019,8,13,6,6,10,10,16,18,22,2.3563876674325073,9.0,6.2588127928982935,19.540751683680853,0,0,0,0,0,0,0,0.0,0.0,0.1755985483805481,0.0,2.439793893129771,1.98,1.83,1.91,1.8576252019386108,2.14,1.89,2.0575393419170243,2.091957773512476,1.897445034116755,2.0132003867536863 -2019,8,14,6,9,8,6,17,16,20,3.7127753348650145,12.0,7.783529227684152,20.09361562616828,0,0,0,0,0,0,0,0.0,0.0,0.06907611758605556,0.0,2.6867930711610484,2.02,1.81,1.91,1.8853560830860534,2.08,1.95,2.0129342934293426,2.4337759336099585,1.938704,1.9990112119594232 -2019,8,15,5,7,6,5,16,14,20,2.0,13.0,8.362015174472349,20.870047597411993,0,0,0,0,0,0,0,0.0,0.0,0.06907611758605556,0.0,2.6722762430939224,2.0,1.83,1.89,1.876111627906977,2.16,1.92,1.9773030367381608,2.3835869565217394,1.9276317638791283,1.9914490830115832 -2019,8,16,5,8,6,6,15,13,21,0.6436123325674928,11.0,7.924271196781758,20.317183654924566,0,0,0,0,0,0,0,2.287224665134986,0.0,0.13815223517211112,0.0,2.6065452706120387,1.99,1.86,1.93,1.8858627648839554,2.21,1.94,1.9713816321034203,2.2375951293759515,1.928916518650089,2.0219901315789475 -2019,8,17,7,10,8,8,15,14,21,0.6436123325674928,7.0,7.158278444034668,19.987887741193425,0,0,0,0,0,0,0,1.3563876674325073,0.0,0.6275015671053185,0.0,2.3634530706836614,2.02,1.89,2.05,1.8160744763382468,2.36,1.89,2.0051227236737925,1.911812865497076,1.9038244047619046,2.048581385813858 -2019,8,18,11,12,10,7,16,16,21,1.0,6.0,7.556712752354628,18.211455769949712,0,0,0,0,0,0,0,0.6436123325674928,0.0,0.06907611758605556,0.0,2.3634530706836614,2.02,1.89,2.05,1.8160744763382468,2.36,1.89,2.0051227236737925,1.911812865497076,1.9038244047619046,2.048581385813858 -2019,8,19,12,12,10,9,17,17,22,1.0,6.0,9.566850928085891,18.987887741193425,0,0,0,0,0,0,0,0.6436123325674928,0.0,0.0,0.0,2.3634530706836614,2.02,1.89,2.05,1.8160744763382468,2.36,1.89,2.0051227236737925,1.911812865497076,1.9038244047619046,2.048581385813858 -2019,8,20,9,11,10,11,16,16,21,2.0,7.0,10.354085437594351,20.76431971243714,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.6382065217391304,2.05,1.96,2.18,1.8170928462709288,2.47,1.9,2.0754984846067956,2.210386473429952,1.8862352941176468,2.0244103392568658 -2019,8,21,7,11,9,8,16,15,20,0.6436123325674928,9.0,8.680273721707787,21.09361562616828,0,0,0,1,0,0,0,3.3563876674325073,0.0,0.0,0.0,2.6299165275459093,2.11,1.93,2.1,1.7444985163204747,2.47,1.81,2.0758251453779826,2.173401677539609,1.9086330119115145,2.0531763787721125 -2019,8,22,11,12,6,5,17,15,19,0.6436123325674928,9.0,7.57623735802213,19.09361562616828,0,0,0,1,0,0,0,3.0,0.0,0.13815223517211112,0.0,2.3987871853546907,2.04,1.84,1.95,1.718745556119858,2.36,1.8,1.9739199463327368,2.0183519313304723,1.8960790667530785,1.9717626074266257 -2019,8,23,5,3,2,5,14,13,18,0.0,9.0,6.77449007512875,17.76431971243714,0,0,1,1,0,0,0,2.5744493302699714,0.0,0.15292959777339685,0.0,2.366793893129771,1.96,1.71,1.7,1.6932196969696969,1.94,1.78,1.844686907020873,1.8797492767598842,1.7832129697862935,2.004067218064855 -2019,8,24,0,1,0,3,11,12,17,1.0,10.0,6.634277349013574,17.76431971243714,2,2,1,0,0,0,0,1.9308369977024786,0.0,0.0,0.0,2.2505908419497787,1.86,1.56,1.46,1.5731644691186675,1.83,1.72,1.674575739760925,1.7794132653061223,1.6849624060150374,1.9553638180322086 -2019,8,25,0,1,1,2,9,10,18,1.0,12.0,8.646725887572885,18.435023798706,2,1,1,1,0,0,0,1.2872246651349857,0.0,0.20722835275816667,0.0,2.2505908419497787,1.86,1.56,1.46,1.5731644691186675,1.83,1.72,1.674575739760925,1.7794132653061223,1.6849624060150374,1.9553638180322086 -2019,8,26,0,0,2,4,9,8,21,0.7127753348650143,13.0,5.511245622642846,20.76431971243714,3,1,0,1,0,0,0,1.2872246651349857,0.0,0.795208527480001,0.0,2.2505908419497787,1.86,1.56,1.46,1.5731644691186675,1.83,1.72,1.674575739760925,1.7794132653061223,1.6849624060150374,1.9553638180322086 -2019,8,27,0,1,6,4,10,13,17,3.49471367202755,13.0,5.213174090086463,21.646479568655707,4,2,0,1,0,0,0,0.0,0.0,1.4289588282009114,0.0,2.8851829268292684,1.98,1.7,1.71,1.8308741475511467,2.01,1.9,1.8466787264833573,2.3266323529411768,1.774017743979721,1.9805955902124226 -2019,8,28,1,4,3,3,13,12,17,6.425550669730029,11.0,6.807889961353449,21.09361562616828,0,0,0,1,0,0,0,0.0,0.0,0.10652243079449253,0.0,3.1665673494723774,1.93,1.74,1.77,1.7823908794788275,2.16,1.94,1.885974622620871,2.4517674783974863,1.798787483702738,1.9366011576255215 -2019,8,29,6,4,3,5,11,8,18,3.069163002297522,10.0,7.452411347604712,18.211455769949712,0,0,0,1,0,0,0,0.0,0.0,0.31375078355265923,0.0,2.9741745730550284,2.02,1.78,1.78,1.8716451612903227,2.25,1.97,1.9375540765391015,2.355336787564767,1.8943699927166786,2.0088011441363016 -2019,8,30,3,4,3,2,11,9,17,2.3563876674325073,11.0,8.01889576249945,20.317183654924566,0,0,1,2,0,0,0,0.0,0.0,0.1755985483805481,0.0,2.6778498023715414,2.02,1.68,1.64,1.7685286103542237,1.89,1.89,1.847422568375294,2.228720472440945,1.8908379888268154,2.0016540629726385 -2019,8,31,2,4,1,1,12,11,16,3.0,11.0,8.784810216461606,20.317183654924566,1,1,2,2,0,0,0,0.0,0.0,0.0,0.0,2.6778498023715414,2.02,1.68,1.64,1.7685286103542237,1.89,1.89,1.847422568375294,2.228720472440945,1.8908379888268154,2.0016540629726385 -2019,9,1,0,2,2,4,13,12,17,2.3563876674325073,12.0,10.265910290506566,20.317183654924566,2,1,1,1,0,0,0,0.0,0.0,0.0,0.0,2.566124031007752,1.97,1.55,1.58,1.8713626834381552,1.94,2.01,1.715068442471328,2.2851833568406206,1.8281100058513753,2.0479168102953005 -2019,9,2,0,4,5,6,14,13,18,1.3563876674325073,13.0,10.715552133273956,17.76431971243714,2,0,0,1,0,0,0,0.0,0.0,0.0,0.0,2.566124031007752,1.97,1.55,1.58,1.8713626834381552,1.94,2.01,1.715068442471328,2.2851833568406206,1.8281100058513753,2.0479168102953005 -2019,9,3,3,5,6,8,14,13,18,1.0,13.0,8.688955204380807,20.317183654924566,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,2.566124031007752,1.97,1.55,1.58,1.8713626834381552,1.94,2.01,1.715068442471328,2.2851833568406206,1.8281100058513753,2.0479168102953005 -2019,9,4,4,7,3,5,15,14,18,1.3563876674325073,14.0,10.252627769835653,20.09361562616828,0,0,1,2,0,0,0,0.6436123325674928,0.0,0.0,0.0,3.2063162583518934,2.08,1.91,1.96,1.921542761319173,2.31,1.96,2.1270098538905877,2.766414821944177,2.012512355848435,2.1486066796740504 -2019,9,5,0,1,0,6,14,12,18,2.7819383371625355,13.0,10.850212746125582,19.870047597411993,3,2,3,1,0,0,0,0.0,0.0,0.0,0.0,3.500424671385238,2.17,1.89,1.89,2.0620514390691973,2.1,2.1,2.1323312698173034,2.9669244935543277,2.058354430379747,2.2375531040957632 -2019,9,6,0,0,1,5,13,10,19,1.3563876674325073,12.0,7.715630432058891,20.09361562616828,6,3,2,0,0,0,0,0.0,0.0,0.4608638724952377,0.0,3.0636708860759496,2.18,1.92,1.85,2.1341359773371105,1.99,2.26,2.1493632527809745,2.6103663003663002,2.007780628608082,2.249161399072903 -2019,9,7,0,0,1,4,12,11,19,0.6436123325674928,9.0,6.552484359769297,20.317183654924566,4,2,1,3,0,0,0,2.7127753348650145,0.0,0.46668038132605605,0.0,2.7956009811937856,2.14,1.93,1.86,2.0352604166666666,2.08,2.14,2.1751974723538705,2.372217484008529,2.01,2.206833209785026 -2019,9,8,0,1,0,4,13,11,19,0.0,3.0,3.3788717474294208,16.540751683680853,2,1,3,3,0,0,0,4.7127753348650145,0.0,2.859713106280627,0.0,2.7956009811937856,2.14,1.93,1.86,2.0352604166666666,2.08,2.14,2.1751974723538705,2.372217484008529,2.01,2.206833209785026 -2019,9,9,0,2,3,7,14,13,18,0.0,2.0,2.573569325311699,13.987887741193425,4,2,1,2,0,0,0,5.7127753348650145,0.0,2.9303200845291215,0.0,2.7956009811937856,2.14,1.93,1.86,2.0352604166666666,2.08,2.14,2.1751974723538705,2.372217484008529,2.01,2.206833209785026 -2019,9,10,0,3,9,9,14,15,18,0.0,1.0,2.374060987459349,13.987887741193425,4,1,0,1,0,0,0,5.7127753348650145,1.0,3.2682600286510293,0.0,2.944862385321101,2.33,2.07,2.19,2.201779984721161,2.37,2.24,2.3814979613543694,2.4976436448055717,2.1853225806451615,2.391337856173677 -2019,9,11,6,9,11,10,15,16,17,0.0,3.0,2.339483779273853,13.435023798705998,0,0,0,2,0,0,0,5.0,0.0,4.6587097328488065,0.0,3.0131949095780306,2.46,2.2,2.37,2.274010989010989,2.66,2.33,2.457473804534197,2.3087972972972968,2.3084572230014024,2.442093625029405 -2019,9,12,1,7,9,8,16,16,17,0.0,7.0,1.7955750406711515,13.211455769949712,1,0,0,2,0,0,0,2.0,0.0,5.645541916993089,0.22356802875628615,3.059705882352941,2.36,2.2,2.29,2.227015891701001,2.42,2.32,2.414764312804768,2.44643484132343,2.265787401574803,2.433316378433367 -2019,9,13,0,1,9,3,13,17,16,0.0,11.0,2.401369124936523,15.317183654924566,8,3,0,3,0,0,0,4.2872246651349855,0.0,4.336974538823061,0.22356802875628615,3.4574207257273617,2.31,2.14,2.14,2.3140166204986143,2.29,2.38,2.3402305475504326,2.6872865275142317,2.120302419354839,2.314395459345301 -2019,9,14,0,1,3,4,13,14,17,0.0,13.0,3.2875776234337093,14.540751683680853,8,1,0,2,0,0,0,3.930836997702478,0.0,1.4004733687629418,0.0,2.989120654396728,2.25,2.03,2.12,2.1393303167420816,2.28,2.26,2.2889747108410115,2.33445067264574,2.1262482566248257,2.3564374688589935 -2019,9,15,1,4,3,8,14,14,17,0.0,9.0,4.4794060962930455,12.093615626168281,1,0,0,0,0,0,0,7.356387667432507,0.0,0.47823096902201845,0.22356802875628615,2.989120654396728,2.25,2.03,2.12,2.1393303167420816,2.28,2.26,2.2889747108410115,2.33445067264574,2.1262482566248257,2.3564374688589935 -2019,9,16,0,3,7,11,14,15,17,0.0,5.0,4.7488885025948,12.540751683680853,2,1,0,0,0,0,0,9.356387667432507,1.0,0.606073455362818,0.0,2.989120654396728,2.25,2.03,2.12,2.1393303167420816,2.28,2.26,2.2889747108410115,2.33445067264574,2.1262482566248257,2.3564374688589935 -2019,9,17,0,2,5,12,13,15,16,0.0,3.0,3.1549243771228377,11.21145576994971,7,2,0,0,0,0,0,10.712775334865015,1.0,3.0296771114319516,0.0,2.9910956036287506,2.39,2.21,2.28,2.1954446308724833,2.44,2.25,2.5609221183800623,2.3450156412930134,2.2867469879518074,2.5003741935483874 -2019,9,18,0,0,5,11,9,14,17,0.0,2.0,1.768266903193977,11.987887741193425,9,5,0,0,0,0,0,9.069163002297522,1.0,5.008185482785596,0.0,2.82138928067701,2.37,2.19,2.18,2.1942053445850913,2.38,2.32,2.4520719713902546,2.3525000000000005,2.219303187546331,2.4635005497526112 -2019,9,19,0,0,5,10,7,12,16,0.0,1.0,1.768266903193977,11.987887741193425,11,7,0,0,1,0,0,9.356387667432507,2.0,4.74327461526927,0.0,2.7856864864864863,2.37,2.07,2.03,2.235172839506173,2.26,2.37,2.24205644228545,2.396232370718603,2.189078014184397,2.369145728643216 -2019,9,20,0,0,7,9,6,11,16,0.0,1.0,1.3419420900121024,9.658591827462283,7,4,0,0,1,0,0,7.7127753348650145,1.0,6.009834792145773,0.0,2.6517293233082704,2.23,1.88,1.73,2.0732632880098882,2.28,2.24,2.0451817962918373,2.2638062283737024,2.0713893967093235,2.240852081488043 -2019,9,21,0,1,8,9,8,11,16,0.0,4.0,0.7980333514094007,7.658591827462283,1,1,0,0,0,0,0,6.356387667432507,0.0,8.171990284753898,0.22356802875628615,2.592751992498828,2.01,1.42,1.26,1.9555193482688389,1.97,2.17,1.7030997925789353,2.134603340292276,1.8910042553191488,2.1933333333333334 -2019,9,22,2,4,9,4,10,10,17,0.0,6.0,0.9975416892617508,8.987887741193425,0,0,0,2,0,0,0,8.069163002297522,0.0,8.078077314918422,0.4471360575125723,2.592751992498828,2.01,1.42,1.26,1.9555193482688389,1.97,2.17,1.7030997925789353,2.134603340292276,1.8910042553191488,2.1933333333333334 -2019,9,23,7,7,4,2,11,9,16,0.0,4.0,1.3965583649664512,8.435023798705998,0,0,0,1,0,0,0,8.643612332567493,0.0,5.761461363874464,0.4471360575125723,2.592751992498828,2.01,1.42,1.26,1.9555193482688389,1.97,2.17,1.7030997925789353,2.134603340292276,1.8910042553191488,2.1933333333333334 -2019,9,24,2,2,1,2,10,8,16,0.0,8.0,1.3965583649664512,4.8821598562185695,0,1,1,1,0,0,0,4.643612332567493,0.0,4.2875266937211665,0.22356802875628615,3.2263594852635946,1.95,1.71,1.67,2.084135416666667,2.0,2.31,1.899333979171712,2.4360495216657285,1.8257066309444074,2.1878821417888124 -2019,9,25,0,0,2,3,9,9,17,0.0,9.0,1.7955750406711515,6.105727884974856,5,2,0,2,0,0,0,6.2872246651349855,0.0,4.625466637843075,0.22356802875628615,3.434084650688425,1.97,1.83,1.71,2.080295126973233,2.07,2.35,2.0183557844690965,2.5099476439790576,1.8744729729729732,2.2812025316455697 -2019,9,26,0,1,1,1,12,10,16,0.0,5.0,1.768266903193977,6.329295913731142,2,2,2,5,0,0,0,7.0,0.0,4.026215246522724,0.22356802875628615,3.114857414448669,1.98,1.73,1.79,2.0834361233480174,2.13,2.37,2.098439378757515,2.406145194274029,1.8656039325842695,2.240088045634921 -2019,9,27,0,0,1,4,12,13,16,0.0,2.0,1.3965583649664512,5.3292959137311415,5,4,3,4,0,0,0,11.643612332567493,0.0,6.051835732118491,0.22356802875628615,2.8645317410433693,1.94,1.62,1.39,2.0427491694352162,1.69,2.2,1.8889087531924773,2.203320132013201,1.8170511989630589,2.171483795392425 -2019,9,28,0,2,3,2,13,14,17,0.0,0.0,1.3965583649664512,6.658591827462283,2,0,2,7,0,0,0,17.712775334865015,3.0,8.877522110047039,0.22356802875628615,2.7584615384615385,1.74,1.26,1.11,1.9213333333333333,1.57,2.55,1.5936188628562902,1.9378181818181819,1.63217504898759,1.9419928778686364 -2019,9,29,1,3,3,4,14,15,18,0.0,0.0,0.5712168760798761,6.8821598562185695,2,1,3,5,0,0,0,20.069163002297522,8.0,9.82595651841903,0.0,2.7584615384615385,1.74,1.26,1.11,1.9213333333333333,1.57,2.55,1.5936188628562902,1.9378181818181819,1.63217504898759,1.9419928778686364 -2019,9,30,0,1,8,9,13,15,17,0.0,0.0,0.7434170764550518,5.552863942487428,10,4,0,2,0,0,0,19.712775334865015,9.0,12.838487486944015,0.0,2.7584615384615385,1.74,1.26,1.11,1.9213333333333333,1.57,2.55,1.5936188628562902,1.9378181818181819,1.63217504898759,1.9419928778686364 -2019,10,1,0,4,10,7,14,16,17,0.0,0.0,0.0,3.776431971243714,5,0,0,5,0,0,0,18.712775334865015,8.0,16.0834124120938,0.22356802875628615,2.7874824729126835,1.82,1.62,1.69,1.9829708222811673,2.01,2.66,1.971708173690932,1.897311773623042,1.7328073394495416,2.0237755968670377 -2019,10,2,5,9,7,4,16,16,17,0.0,0.0,0.0,4.3292959137311415,1,0,2,9,0,0,0,18.712775334865015,5.0,15.69594632408506,0.22356802875628615,2.912424375274003,1.81,1.63,1.73,1.9613200723327309,2.06,2.53,1.9993892282065517,1.9931382978723404,1.748700882117081,1.9854296648498204 -2019,10,3,0,1,4,1,15,16,15,0.0,0.0,0.19950833785235017,6.4350237987059975,15,7,3,13,0,0,0,16.712775334865015,4.0,14.037359171114733,0.6707040862688585,2.8717559523809526,1.89,1.53,1.51,1.9288506981740063,2.05,2.89,1.8326651901070505,2.009549180327869,1.8340934579439254,1.9788315765866784 -2019,10,4,0,0,0,0,12,11,13,0.0,0.0,0.5985250135570506,6.987887741193425,12,8,11,14,0,0,0,15.712775334865015,4.0,13.060489458420925,0.6707040862688585,2.7471509648127133,1.84,1.18,1.16,1.917766624843162,1.86,3.09,1.412935927181867,2.0221323011963404,1.7338435374149659,1.9165772953178133 -2019,10,5,0,0,0,0,7,9,14,0.0,1.0,0.5985250135570506,7.435023798705997,19,16,10,9,2,0,0,14.356387667432507,2.0,14.037026675614976,0.4471360575125723,2.814037940379404,1.63,0.72,0.68,1.8869722401549387,1.07,2.71,1.0616176073453956,2.009168110918544,1.5607923355774211,1.9207461563272767 -2019,10,6,0,0,0,0,7,7,13,0.0,3.0,0.39901667570470034,6.4350237987059975,15,10,6,10,1,0,0,14.287224665134985,1.0,14.875847819953332,0.8942721150251446,2.814037940379404,1.63,0.72,0.68,1.8869722401549387,1.07,2.71,1.0616176073453956,2.009168110918544,1.5607923355774211,1.9207461563272767 -2019,10,7,0,2,0,0,8,4,7,0.0,5.0,0.7980333514094007,6.987887741193425,4,3,7,9,0,1,1,12.930836997702478,0.0,12.815904129237794,1.564976201294003,2.814037940379404,1.63,0.72,0.68,1.8869722401549387,1.07,2.71,1.0616176073453956,2.009168110918544,1.5607923355774211,1.9207461563272767 -2019,10,8,0,0,0,0,7,3,5,0.0,4.0,0.7980333514094007,6.987887741193425,7,7,9,8,1,2,1,16.287224665134985,0.0,10.815177751474494,0.8942721150251446,3.026651402404121,1.63,1.19,1.33,2.1994659400544956,1.62,3.74,1.5577895667550838,2.550415224913495,1.5817133956386293,1.861820666456428 -2019,10,9,0,0,0,0,6,3,8,0.0,0.0,0.9975416892617508,5.4350237987059975,13,10,8,8,1,1,0,23.643612332567493,2.0,13.507746383457874,0.6707040862688585,3.275937260902831,1.71,1.2,1.26,2.559066666666667,1.62,4.07,1.4890494527766516,2.7542794440380396,1.673937691521961,1.8743928607239546 -2019,10,10,0,0,0,0,5,5,12,0.0,0.0,0.0,3.1057278849748555,12,7,5,10,1,0,0,22.930836997702478,4.0,30.25440837328368,1.8942721150251445,3.0399886428165814,1.73,1.42,1.56,1.934423937360179,1.86,3.22,1.659063502245029,2.0437679083094555,1.685678365636459,1.8907913267016876 -2019,10,11,0,0,0,0,5,6,5,0.0,1.0,0.0,1.5528639424874278,12,9,4,23,1,0,6,18.930836997702478,3.0,28.621712814645086,5.800656488856864,2.962823218997362,1.76,1.37,1.37,1.6994200944032365,1.79,3.72,1.6094923857868022,1.9345303514376997,1.7681870092790863,1.8340919728527967 -2019,10,12,0,0,0,0,5,1,0,0.0,1.0,0.0,2.3292959137311415,11,9,20,24,2,9,8,17.930836997702478,2.0,22.02261802089461,4.129952402588006,2.914313395113732,1.72,1.09,1.11,1.4967452830188681,1.46,3.68,1.4563298464277765,1.5504934210526313,1.639866220735786,1.7277204193709434 -2019,10,13,0,0,0,0,5,1,2,0.0,0.0,0.0,3.1057278849748555,9,11,18,21,3,9,3,16.287224665134985,3.0,17.769947906456384,3.0121122588065754,2.914313395113732,1.72,1.09,1.11,1.4967452830188681,1.46,3.68,1.4563298464277765,1.5504934210526313,1.639866220735786,1.7277204193709434 -2019,10,14,0,0,0,0,5,1,5,0.0,0.0,0.0,3.1057278849748555,10,9,18,17,2,7,1,16.287224665134985,4.0,15.061029739401889,2.341408172537717,2.914313395113732,1.72,1.09,1.11,1.4967452830188681,1.46,3.68,1.4563298464277765,1.5504934210526313,1.639866220735786,1.7277204193709434 -2019,10,15,0,0,0,0,4,1,10,0.0,0.0,0.19950833785235017,5.4350237987059975,14,13,14,17,3,4,1,16.287224665134985,2.0,15.65411108318978,1.341408172537717,3.0555344418052255,1.85,1.49,1.65,1.6517776712985146,2.0,3.12,1.7337637997432607,2.3962443438914027,1.7835524407926535,1.8670618892508144 -2019,10,16,0,0,0,0,6,1,4,0.0,2.0,0.5985250135570506,6.211455769949711,17,14,17,19,4,6,3,15.0,2.0,11.072991121382547,2.0121122588065754,2.902839643652561,1.96,1.61,1.75,1.697419150285352,1.86,3.54,1.8225613853708968,2.301429330499469,1.9016172646905876,1.9500102827763497 -2019,10,17,0,0,0,0,4,0,0,0.0,0.0,0.5985250135570506,6.987887741193425,16,15,18,16,7,13,4,16.069163002297522,3.0,9.650936787189778,1.7885442300502892,2.8876982892690517,2.09,1.84,2.0,1.9045270816491509,2.12,3.04,1.9696166666666666,2.392331932773109,2.0171156138259834,1.985194219806443 -2019,10,18,0,0,0,0,3,0,1,0.0,0.0,0.0,3.1057278849748555,13,15,18,11,8,12,2,18.0,4.0,15.395198690105868,1.341408172537717,2.896704208654416,1.97,1.8,1.97,1.801030640668524,2.03,2.35,1.9288397926437917,2.269075844486934,1.8592627345844503,1.9463734954117506 -2019,10,19,0,0,0,0,4,0,5,0.0,0.0,0.0,0.7764319712437139,18,18,14,11,8,9,1,19.0,4.0,19.50119187791793,3.459248316319148,2.683994314143568,1.75,1.57,1.68,1.619810945273632,1.77,2.19,1.7942215173143008,1.849387269482451,1.641448275862069,1.7832572087658594 -2019,10,20,0,0,0,0,5,1,8,0.0,1.0,0.0,0.7764319712437139,19,18,9,14,4,3,0,19.643612332567493,3.0,22.38643497111627,3.788544230050289,2.683994314143568,1.75,1.57,1.68,1.619810945273632,1.77,2.19,1.7942215173143008,1.849387269482451,1.641448275862069,1.7832572087658594 -2019,10,21,0,0,0,0,5,1,5,0.0,3.0,0.0,0.7764319712437139,13,11,8,16,3,1,2,15.643612332567493,1.0,21.833129410075784,5.129952402588006,2.683994314143568,1.75,1.57,1.68,1.619810945273632,1.77,2.19,1.7942215173143008,1.849387269482451,1.641448275862069,1.7832572087658594 -2019,10,22,0,0,0,0,6,0,1,0.0,6.0,0.0,2.3292959137311415,14,11,13,18,2,5,4,12.287224665134985,1.0,17.99778116864519,4.129952402588006,2.906280623608018,1.95,1.82,1.88,1.9550301659125189,2.03,2.27,1.9049148545978516,2.269874504623514,1.9208721143275924,1.8416715741789353 -2019,10,23,0,0,0,0,3,0,1,0.0,5.0,0.19950833785235017,3.1057278849748555,8,9,15,18,5,11,2,15.930836997702478,0.0,18.90847298069015,3.459248316319148,3.06833438089252,2.1,1.94,2.06,2.0858074222668006,2.29,2.62,2.0593444115638517,2.0653508771929827,2.09,1.9816115459882584 -2019,10,24,0,0,0,0,4,0,3,0.0,6.0,0.0,1.5528639424874278,14,13,17,24,7,9,4,14.574449330269971,0.0,24.524877615384362,6.024224517613151,3.0485905612244895,2.27,1.87,1.95,2.152760905577029,2.07,2.55,2.0191286997006985,2.248125,2.3165445579429376,2.124664841052506 -2019,10,25,0,0,0,0,5,1,0,0.0,6.0,0.0,0.7764319712437139,15,15,19,22,5,10,12,13.930836997702478,0.0,19.625367683154444,6.694928603882009,3.04498224852071,2.24,1.82,1.8,2.115881045025014,2.01,2.47,1.9936038961038962,2.2444791208791206,2.2048680881821467,2.0829713958810068 -2019,10,26,0,0,0,0,6,2,0,0.0,3.0,0.0,0.7764319712437139,14,13,19,20,2,3,8,20.356387667432507,1.0,17.43769698550969,5.353520431344292,3.0088295365278865,2.11,1.73,1.58,2.062963246554364,1.7,2.79,1.900973073846974,2.1773999999999996,2.1237020905923343,1.993491327751196 -2019,10,27,0,0,0,0,8,0,0,0.0,0.0,0.0,0.7764319712437139,17,9,14,22,0,6,5,22.643612332567493,7.0,29.66097349079415,3.2356802875628614,3.0088295365278865,2.11,1.73,1.58,2.062963246554364,1.7,2.79,1.900973073846974,2.1773999999999996,2.1237020905923343,1.993491327751196 -2019,10,28,0,0,0,0,5,0,1,0.0,0.0,0.0,0.0,14,9,17,29,2,7,8,24.643612332567493,8.0,37.26163729407919,8.682816345075434,3.0088295365278865,2.11,1.73,1.58,2.062963246554364,1.7,2.79,1.900973073846974,2.1773999999999996,2.1237020905923343,1.993491327751196 -2019,10,29,0,0,0,0,5,0,2,0.0,0.0,0.0,0.0,13,10,20,33,3,7,10,28.643612332567493,11.0,39.656745098208816,12.459248316319147,3.0681255093724533,2.47,1.94,2.0,2.4691894630192506,2.09,3.36,2.1908985346972627,2.5945454545454547,2.5842460949952186,2.2638390170511538 -2019,10,30,0,0,0,0,6,1,1,0.0,0.0,0.0,0.0,9,7,23,35,2,5,13,27.930836997702478,11.0,43.79945015275363,16.353520431344293,3.340263996358671,2.62,1.95,1.89,2.717524649714582,2.23,3.54,2.1816149562450278,2.8971472081218277,2.5973406193078326,2.3791680652121796 -2019,10,31,0,0,0,0,9,1,0,0.0,0.0,0.0,0.0,3,2,23,34,0,8,21,25.930836997702478,9.0,37.06426755230575,16.02422451761315,3.351997300944669,2.66,1.89,1.91,2.788054794520548,2.01,3.72,2.228483877856075,3.0144901065449012,2.6472814685314683,2.4959354398726985 -2019,11,1,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,10,17,30,30,12,23,19,22.57444933026997,7.0,31.632443750262635,11.353520431344293,3.1929442208165613,2.53,1.86,1.92,2.5143138390272144,2.52,3.24,2.1376148235757935,2.437868852459016,2.4874281609195403,2.374986522911051 -2019,11,2,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,25,24,27,28,13,21,14,20.861673995404956,4.0,28.440204483118606,8.02422451761315,3.128262331838565,2.28,2.0,2.03,2.3211560693641617,2.55,3.79,2.1517233009708736,2.164346485819975,2.244645161290322,2.225703273377276 -2019,11,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7764319712437139,24,24,25,25,13,20,12,19.861673995404956,3.0,23.39584676908423,5.353520431344292,3.128262331838565,2.28,2.0,2.03,2.3211560693641617,2.55,3.79,2.1517233009708736,2.164346485819975,2.244645161290322,2.225703273377276 -2019,11,4,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7764319712437139,24,22,21,25,12,17,5,18.861673995404956,3.0,22.352480280228317,4.459248316319147,3.128262331838565,2.28,2.0,2.03,2.3211560693641617,2.55,3.79,2.1517233009708736,2.164346485819975,2.244645161290322,2.225703273377276 -2019,11,5,0,0,0,0,4,0,2,0.0,0.0,0.0,1.5528639424874278,19,18,25,29,7,12,4,19.930836997702478,3.0,20.25491870320429,3.682816345075434,3.284139650872818,2.68,1.89,1.91,2.569283854166667,2.55,3.89,2.0798335999999997,2.6599999999999997,2.6208681556195965,2.4069584341323953 -2019,11,6,0,0,0,0,4,0,3,0.0,0.0,0.0,2.3292959137311415,22,22,27,29,8,11,2,19.930836997702478,4.0,22.107549093757726,4.129952402588006,3.4611521739130433,2.77,2.17,2.38,2.6206363636363634,3.08,3.67,2.382236686390532,2.7982532751091704,2.741498417164966,2.425951219512195 -2019,11,7,0,0,0,0,4,0,2,0.0,0.0,0.0,0.7764319712437139,24,22,33,39,7,12,6,19.218061662837464,3.0,23.588395164736966,5.800656488856864,3.2165319617928,2.95,2.46,2.73,2.63985257985258,3.16,3.44,2.5985648452929557,2.8101212121212122,3.080622710622711,2.6237328498627988 -2019,11,8,0,0,0,0,3,0,0,0.0,1.0,0.0,1.5528639424874278,33,32,39,37,12,24,18,18.50528632797245,2.0,19.627435855511695,5.577088460100579,3.180171881886294,2.81,2.41,2.86,2.485962187711006,5.27,3.25,2.7153261941665496,2.6765517241379313,2.7961367837338265,2.6456797167027344 -2019,11,9,0,0,0,0,2,0,0,0.0,2.0,0.0,1.5528639424874278,36,35,32,26,18,24,13,19.57444933026997,2.0,16.398343035045517,4.577088460100578,3.0756116605934407,2.7,2.23,2.34,2.4540695148443157,3.24,3.22,2.3893517844136927,2.5173490427098675,2.6951200349192495,2.563003300330033 -2019,11,10,0,0,0,0,1,0,0,0.0,0.0,0.0,1.5528639424874278,28,27,25,27,14,16,7,15.930836997702478,3.0,18.901125223898703,3.682816345075434,3.0756116605934407,2.7,2.23,2.34,2.4540695148443157,3.24,3.22,2.3893517844136927,2.5173490427098675,2.6951200349192495,2.563003300330033 -2019,11,11,0,0,0,0,2,0,1,0.0,0.0,0.0,2.3292959137311415,22,21,31,43,9,13,6,16.861673995404956,3.0,30.601116813072917,4.577088460100578,3.0756116605934407,2.7,2.23,2.34,2.4540695148443157,3.24,3.22,2.3893517844136927,2.5173490427098675,2.6951200349192495,2.563003300330033 -2019,11,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,26,47,51,11,33,30,19.861673995404956,2.0,27.042265400089686,8.81276874766344,2.993387978142077,2.66,2.39,3.99,2.3661737257717155,5.81,2.64,2.979793801854563,2.5689334155363746,2.6402049664958613,2.5508734505621216 -2019,11,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,41,48,42,24,35,29,17.57444933026997,3.0,21.754645432053405,8.02422451761315,3.1016563997262154,2.61,2.34,5.49,2.39618526622903,6.53,3.22,3.2849960722702276,2.662125340599455,2.587287973167226,2.5441989958922866 -2019,11,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,38,35,39,35,22,28,22,17.930836997702478,5.0,22.054408747671935,7.800656488856864,2.9983466995681676,2.46,2.23,3.12,2.2217958271236955,4.24,3.49,2.589400127632419,2.4970731707317073,2.4279728618421053,2.4157655446470314 -2019,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,30,29,34,30,17,24,18,18.643612332567493,7.0,18.716021796884174,6.024224517613151,3.0982335102350262,2.53,2.33,2.77,2.2032653061224488,3.14,2.64,2.5447153668970057,2.383578947368421,2.462426101505857,2.4991226453726454 -2019,11,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,32,34,27,16,23,17,18.930836997702478,5.0,18.236177343584945,5.577088460100579,3.0073942701227834,2.52,2.34,2.86,2.123593466424682,3.62,2.63,2.56666719292706,2.2813245901639343,2.4265333900467887,2.427708783853362 -2019,11,17,0,0,0,0,0,0,0,0.0,2.0,0.0,0.7764319712437139,36,33,32,26,16,21,13,15.643612332567493,2.0,20.992150756596704,5.577088460100579,3.0073942701227834,2.52,2.34,2.86,2.123593466424682,3.62,2.63,2.56666719292706,2.2813245901639343,2.4265333900467887,2.427708783853362 -2019,11,18,0,0,0,0,0,0,0,0.0,2.0,0.0,0.0,31,29,29,24,14,22,10,18.218061662837464,2.0,17.360170537722876,4.90638437383172,3.0073942701227834,2.52,2.34,2.86,2.123593466424682,3.62,2.63,2.56666719292706,2.2813245901639343,2.4265333900467887,2.427708783853362 -2019,11,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,25,28,22,13,16,6,19.0,5.0,18.016314355485132,7.012112258806575,3.0952686567164176,2.44,2.3,2.65,2.0362568140520896,3.81,3.02,2.4301475519785374,2.0617283950617282,2.343785912882298,2.3519141145139812 -2019,11,20,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,25,25,20,13,17,3,22.643612332567493,13.0,23.12882486821049,9.894272115025144,3.473429672447014,2.42,2.22,2.54,2.2155538461538464,4.48,3.44,2.354350143501435,2.336261682242991,2.318210340256297,2.1918760242938395 -2019,11,21,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,26,24,20,24,13,14,3,25.218061662837464,13.0,30.01726956193153,14.11784014378143,3.443534626038781,2.44,2.19,2.41,2.518279245283019,3.73,4.2,2.3080164899882214,2.8110344827586204,2.389433628318584,2.2308903076030178 -2019,11,22,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,23,22,28,35,10,12,9,27.218061662837464,13.0,30.42438535292451,16.235680287562865,3.846225680933852,2.41,2.18,2.46,2.6872956361401354,3.17,4.75,2.31952380952381,3.053922716627635,2.3858538771851188,2.307781162422322 -2019,11,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,29,33,30,11,12,13,25.287224665134985,11.0,27.523820678612275,14.682816345075434,4.005076427996782,2.48,2.26,2.56,2.7604728546409807,3.21,5.66,2.363895310796074,2.9357435344827585,2.3662223291626563,2.3753072625698324 -2019,11,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,27,27,23,12,20,12,22.069163002297522,9.0,26.043722222247325,12.90638437383172,4.005076427996782,2.48,2.26,2.56,2.7604728546409807,3.21,5.66,2.363895310796074,2.9357435344827585,2.3662223291626563,2.3753072625698324 -2019,11,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,23,23,22,23,15,18,7,26.356387667432507,12.0,29.381558499552572,14.235680287562861,4.005076427996782,2.48,2.26,2.56,2.7604728546409807,3.21,5.66,2.363895310796074,2.9357435344827585,2.3662223291626563,2.3753072625698324 -2019,11,26,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,21,20,22,26,13,13,3,31.0,17.0,37.2503176652064,18.788544230050288,3.7498452321517726,2.33,2.13,2.35,2.5240954625810255,2.98,5.86,2.2703383379149926,2.9037461300309597,2.3055575459023734,2.275842145426796 -2019,11,27,0,0,0,0,0,1,1,0.0,0.0,0.0,0.0,24,20,19,32,9,7,10,29.712775334865015,20.0,40.26420185362207,21.577088460100576,3.4411077844311375,2.24,2.06,2.27,2.4497209567198177,3.48,4.69,2.154382798573975,2.75265605875153,2.1911299435028253,2.1479281767955802 -2019,11,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,22,30,37,10,19,13,32.0,23.0,35.9860907017514,16.247792546369435,3.4411077844311375,2.24,2.06,2.27,2.4497209567198177,3.48,4.69,2.154382798573975,2.75265605875153,2.1911299435028253,2.1479281767955802 -2019,11,29,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,30,31,30,32,13,17,7,34.64361233256749,23.0,34.6746833304727,17.34140817253772,3.4411077844311375,2.24,2.06,2.27,2.4497209567198177,3.48,4.69,2.154382798573975,2.75265605875153,2.1911299435028253,2.1479281767955802 -2019,11,30,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,35,31,27,26,11,10,3,35.35638766743251,23.0,36.67818140776309,21.78854423005029,3.4411077844311375,2.24,2.06,2.27,2.4497209567198177,3.48,4.69,2.154382798573975,2.75265605875153,2.1911299435028253,2.1479281767955802 -2019,12,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,34,25,33,9,10,11,32.93083699770248,18.0,39.14319143652708,20.90638437383172,4.182241630276565,2.25,1.92,2.38,2.5010368550368547,4.67,4.5,2.1369940029985006,2.9276951672862457,2.23715905409783,2.1413750782717598 -2019,12,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,33,32,38,15,26,17,26.57444933026997,13.0,33.204547539207326,17.459248316319147,4.182241630276565,2.25,1.92,2.38,2.5010368550368547,4.67,4.5,2.1369940029985006,2.9276951672862457,2.23715905409783,2.1413750782717598 -2019,12,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,33,32,32,21,26,14,24.287224665134985,12.0,28.627023060186335,16.012112258806575,3.4695588235294115,2.12,1.73,2.42,2.2769321533923303,4.67,2.61,2.1497544567776656,2.5856530612244897,2.059252782193959,2.0575615340583857 -2019,12,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,33,29,27,18,21,11,22.0,14.0,29.151381825089807,11.682816345075434,3.5920913107511048,2.23,1.85,2.47,2.415362776025237,4.19,2.74,2.139887896636899,2.5278481012658225,2.19009127418766,2.163757672198227 -2019,12,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,30,29,27,16,19,7,22.287224665134985,13.0,29.64048128513803,10.788544230050288,3.628781163434903,2.19,1.85,2.33,2.265,3.9,2.79,2.0407849512308402,2.5189604292421195,2.1577072310405647,2.1065305866097224 -2019,12,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,29,28,34,16,18,6,22.0,12.0,27.81140049673575,12.90638437383172,3.5192809450436573,2.19,1.9,2.39,2.290472377902322,4.55,2.83,2.089714169876343,2.5273540145985405,2.1550473186119876,2.107627718103222 -2019,12,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,34,35,32,15,17,12,22.643612332567493,12.0,26.59075406893869,12.459248316319147,3.4065461121157323,2.16,1.79,2.12,2.1718457943925236,4.4,2.87,1.9290560413354532,2.4960371517027866,2.0921575757575757,2.055934906639004 -2019,12,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,36,27,29,16,15,8,21.643612332567493,11.0,24.389278514458386,12.564976201294003,3.4065461121157323,2.16,1.79,2.12,2.1718457943925236,4.4,2.87,1.9290560413354532,2.4960371517027866,2.0921575757575757,2.055934906639004 -2019,12,9,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,28,26,22,34,11,9,4,24.930836997702478,14.0,30.593008983575263,13.788544230050288,3.4065461121157323,2.16,1.79,2.12,2.1718457943925236,4.4,2.87,1.9290560413354532,2.4960371517027866,2.0921575757575757,2.055934906639004 -2019,12,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,17,17,38,50,6,15,16,27.287224665134985,15.0,33.21591616130169,16.682816345075434,3.3244112478031638,2.12,1.82,2.12,2.261033822590938,2.73,2.53,1.930036849378167,2.5814769230769237,2.1368665377176015,1.988091108939912 -2019,12,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,33,45,46,16,28,20,25.287224665134985,14.0,31.774072632225053,16.90638437383172,3.6260227812055055,2.12,1.9,3.19,2.2253197674418606,4.45,2.57,2.2858796883493384,2.562108108108108,2.1272162162162163,2.075519533527697 -2019,12,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,38,38,39,20,26,18,23.287224665134985,10.0,28.219138805026276,16.235680287562865,3.4623853211009177,2.13,1.9,2.89,2.225108767303889,4.52,2.6,2.232943978226355,2.562991900905193,2.083672131147541,2.102349596720878 -2019,12,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,34,31,32,36,19,24,12,24.643612332567493,9.0,27.246726313600895,13.788544230050288,3.27955448201825,2.12,1.91,2.23,2.2178655880522715,2.66,2.91,2.0608943396226413,2.42941437007874,2.0879142300194933,2.0482369986274214 -2019,12,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,21,23,32,41,13,19,11,28.0,13.0,30.49713918961338,12.341408172537717,3.6135982092893117,2.16,1.93,2.24,2.229505928853755,3.33,3.14,2.0452364522021518,2.4288465909090906,2.153583180987203,2.0553965855869465 -2019,12,15,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,22,24,39,49,14,17,8,29.0,17.0,37.62116859613248,14.11784014378143,3.6135982092893117,2.16,1.93,2.24,2.229505928853755,3.33,3.14,2.0452364522021518,2.4288465909090906,2.153583180987203,2.0553965855869465 -2019,12,16,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,36,34,38,46,12,13,13,29.287224665134985,18.0,40.011463639251346,22.459248316319147,3.6135982092893117,2.16,1.93,2.24,2.229505928853755,3.33,3.14,2.0452364522021518,2.4288465909090906,2.153583180987203,2.0553965855869465 -2019,12,17,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,37,33,38,43,10,21,23,29.356387667432507,18.0,42.16825982854696,25.577088460100576,3.3814271506713074,2.25,2.06,2.56,2.81346062052506,5.48,3.15,2.2805749656121046,3.1209018036072145,2.238229988726043,2.184297223599405 -2019,12,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,36,45,48,20,32,23,27.356387667432507,18.0,37.546947028386825,22.57708846010058,3.889511899959661,2.22,2.07,4.39,3.1570928088506456,11.05,3.63,2.8477592785293098,3.567772788504715,2.186967213114754,2.1558445482010438 -2019,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,47,43,40,24,30,22,24.643612332567493,17.0,34.909616414058945,22.353520431344293,3.5866382978723403,2.12,1.95,4.88,3.05760736196319,13.97,3.34,2.895672199170124,3.439783900594273,2.0746666666666664,2.071320051598108 -2019,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,46,43,37,34,21,26,20,19.930836997702478,13.0,32.002219283202706,20.90638437383172,3.487529538131042,2.07,1.94,3.07,2.653514043109079,12.04,3.04,2.2747462954647513,3.088867376573088,2.0169645042839655,2.056536853110298 -2019,12,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,43,41,30,31,19,22,16,20.57444933026997,12.0,28.820710951676222,17.129952402588007,4.018082901554404,2.11,1.98,2.43,2.6228129602356405,6.47,3.3,2.1491165993825696,2.904845360824742,2.0144562334217504,2.068745311327832 -2019,12,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,37,34,26,28,17,20,18,25.643612332567493,14.0,26.11992359381224,15.353520431344293,4.018082901554404,2.11,1.98,2.43,2.6228129602356405,6.47,3.3,2.1491165993825696,2.904845360824742,2.0144562334217504,2.068745311327832 -2019,12,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,27,24,28,14,14,14,27.0,18.0,26.45713716017085,16.90638437383172,4.018082901554404,2.11,1.98,2.43,2.6228129602356405,6.47,3.3,2.1491165993825696,2.904845360824742,2.0144562334217504,2.068745311327832 -2019,12,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,27,26,11,11,11,31.356387667432507,19.0,26.95713912893667,18.012112258806575,3.9568493150684936,1.99,1.9,2.19,2.489226594301221,4.64,3.41,2.0096776345042238,2.8559683313032886,1.8876435935198823,1.9308501221001222 -2019,12,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,31,22,23,13,12,9,30.0,21.0,30.407968686166402,19.34140817253772,3.7134995296331135,1.97,1.79,2.15,2.340412451361868,3.68,3.36,1.9346711798839458,2.573239436619718,1.8835379061371842,1.7943537165873307 -2019,12,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,29,17,27,12,10,6,32.287224665134985,21.0,35.208102678431665,21.34140817253772,3.7134995296331135,1.97,1.79,2.15,2.340412451361868,3.68,3.36,1.9346711798839458,2.573239436619718,1.8835379061371842,1.7943537165873307 -2019,12,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,23,22,32,10,9,6,30.356387667432507,21.0,38.07670505286652,22.894272115025146,3.679500959692898,1.95,1.76,1.96,2.390578446909667,2.68,3.11,1.8711554132712453,2.730943396226415,1.8866123093108889,1.8075685026293937 -2019,12,28,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,26,24,25,29,7,6,4,27.930836997702478,20.0,38.80210714746553,24.788544230050288,3.924401294498382,1.8,1.64,1.72,2.404611780455154,2.5,3.06,1.6742274758004465,2.947549342105263,1.7707309941520468,1.6364990729632456 -2019,12,29,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,31,28,18,27,6,4,10,25.356387667432507,20.0,41.23921408417629,30.012112258806578,3.924401294498382,1.8,1.64,1.72,2.404611780455154,2.5,3.06,1.6742274758004465,2.947549342105263,1.7707309941520468,1.6364990729632456 -2019,12,30,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,32,26,24,35,4,15,19,25.643612332567493,18.0,40.77990017905441,27.90638437383172,3.924401294498382,1.8,1.64,1.72,2.404611780455154,2.5,3.06,1.6742274758004465,2.947549342105263,1.7707309941520468,1.6364990729632456 -2019,12,31,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,27,34,37,13,22,20,22.356387667432507,14.0,38.227860631261194,22.57708846010058,4.324742647058823,1.94,1.77,2.07,2.565849633251834,2.68,3.01,1.900009871668312,2.8598395130049807,1.8949101796407186,1.8277094886013554 -2020,1,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,29,32,33,16,23,17,20.354504410729305,15.0,32.64934303588616,22.504317366844155,3.7132887700534756,1.94,1.75,1.97,2.211345875542692,2.73,2.49,1.8415140687807054,2.597069799585349,1.9082031905961379,1.8647057281426138 -2020,1,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,29,27,29,15,17,10,24.0,14.0,30.954135968844938,22.504317366844155,3.7132887700534756,1.94,1.75,1.97,2.211345875542692,2.73,2.49,1.8415140687807054,2.597069799585349,1.9082031905961379,1.8647057281426138 -2020,1,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,26,26,31,10,11,10,19.645495589270695,11.0,31.377859814835798,21.959647797179457,2.8817744154057774,1.93,1.68,1.82,1.924228855721393,2.62,2.06,1.790675537359263,2.1837484885126965,1.8829999999999998,1.8548086483986588 -2020,1,4,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,25,21,31,34,6,16,15,24.70900882145861,13.0,29.369577222348425,18.504317366844155,3.1746666666666665,1.93,1.72,2.01,1.9508720000000002,3.02,2.19,1.8528375878653345,2.050572033898305,1.8959432048681542,1.8963019956720366 -2020,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,29,31,30,18,23,12,26.354504410729305,15.0,32.574750600996175,16.504317366844155,3.1746666666666665,1.93,1.72,2.01,1.9508720000000002,3.02,2.19,1.8528375878653345,2.050572033898305,1.8959432048681542,1.8963019956720366 -2020,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,29,30,33,17,20,12,25.0,13.0,33.18111366134188,17.73198258201181,3.1746666666666665,1.93,1.72,2.01,1.9508720000000002,3.02,2.19,1.8528375878653345,2.050572033898305,1.8959432048681542,1.8963019956720366 -2020,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,31,34,18,20,14,21.354504410729305,13.0,29.126551099370666,17.41497822751476,3.7796542893725995,2.04,1.84,2.23,2.124740099009901,3.03,2.46,2.0483092078809815,2.3386555446516195,2.019001512859304,1.9832124760725143 -2020,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,39,40,18,21,15,25.354504410729305,18.0,29.63731687106619,18.73198258201181,3.815498721227622,2.01,1.85,2.17,2.2505823957643947,3.28,2.74,2.028512241054614,2.358,1.9943303571428568,1.9365159462861938 -2020,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,40,31,32,19,18,6,31.29099117854139,19.0,32.984366297799234,19.593656506173552,3.572942238267148,1.97,1.78,2.11,2.285501453488372,2.96,3.12,1.931951272100043,2.457098445595855,1.948290513833992,1.9305896226415096 -2020,1,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,32,29,23,35,12,9,2,29.936486767812085,18.0,39.05770104625271,21.048986936508854,3.6919656019656024,1.95,1.69,1.81,2.156076923076923,1.99,3.29,1.7946293375394322,2.333960763520679,1.9563434343434347,1.8806370315260856 -2020,1,11,0,0,0,0,3,1,0,0.0,0.0,0.0,0.0,17,15,21,49,4,2,15,27.0,19.0,39.802724482030676,23.95964779717946,3.6240939597315434,2.02,1.66,1.66,2.2625393258426967,1.95,2.89,1.7657314897413023,2.3679702048417135,2.0038795180722886,1.9416220085907139 -2020,1,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,11,11,35,47,3,16,19,27.645495589270695,19.0,36.1647575600501,21.048986936508854,3.6240939597315434,2.02,1.66,1.66,2.2625393258426967,1.95,2.89,1.7657314897413023,2.3679702048417135,2.0038795180722886,1.9416220085907139 -2020,1,13,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,31,27,32,39,7,14,13,34.87297353562417,19.0,35.44432435241536,17.821321721341207,3.6240939597315434,2.02,1.66,1.66,2.2625393258426967,1.95,2.89,1.7657314897413023,2.3679702048417135,2.0038795180722886,1.9416220085907139 -2020,1,14,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,30,27,28,35,7,10,5,37.16396471416556,19.0,33.34590516644316,16.593656506173556,3.59,2.03,1.81,2.01,2.1987412587412587,2.52,2.71,1.905789598108747,2.3656573705179285,2.045170818505338,1.9260570671803516 -2020,1,15,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,25,23,30,38,6,6,3,35.227477946353474,18.0,36.82481271152368,14.593656506173556,3.540546378653113,2.06,1.88,2.03,2.2776375838926177,2.63,2.72,1.9647015915119361,2.3822592032274335,2.0843566815697963,1.9703084911423334 -2020,1,16,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,29,25,38,55,6,12,9,32.29099117854139,20.0,36.45061004606656,16.73198258201181,3.344268292682927,1.98,1.81,2.1,2.035215021199273,4.53,2.31,1.936470790970188,2.209267747344885,2.058309608540925,1.9271423436376705 -2020,1,17,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,46,42,42,46,17,19,10,33.58198235708278,20.0,31.174842169841547,16.593656506173556,3.1392446292446294,2.0,1.87,2.53,1.951533101045296,7.39,2.11,2.111480209111277,2.0974447949526813,1.9912506178942166,1.9558460654796093 -2020,1,18,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,47,39,34,40,16,15,7,29.29099117854139,18.0,36.828446551542626,17.959647797179457,3.1437037037037037,1.97,1.77,3.42,1.9180365853658536,5.01,1.99,2.3676374121463324,2.0107628622117093,2.0975880425880424,1.9059259259259258 -2020,1,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,34,49,54,14,27,19,23.581982357082783,15.0,35.28084785184826,15.41497822751476,3.1437037037037037,1.97,1.77,3.42,1.9180365853658536,5.01,1.99,2.3676374121463324,2.0107628622117093,2.0975880425880424,1.9059259259259258 -2020,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,43,47,55,26,38,21,23.29099117854139,14.0,33.78446892266878,13.87030865785006,3.1437037037037037,1.97,1.77,3.42,1.9180365853658536,5.01,1.99,2.3676374121463324,2.0107628622117093,2.0975880425880424,1.9059259259259258 -2020,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,45,45,49,29,36,22,25.0,15.0,29.491944164275708,16.18731301234711,3.1437037037037037,1.97,1.77,3.42,1.9180365853658536,5.01,1.99,2.3676374121463324,2.0107628622117093,2.0975880425880424,1.9059259259259258 -2020,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,40,40,41,28,33,20,24.0,14.0,27.7137432940214,16.048986936508854,2.5825402669121034,1.81,1.65,2.2,1.7483192771084337,2.78,1.82,1.899118075801749,1.8967650531286895,1.7829811320754718,1.7970466603183242 -2020,1,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,37,34,34,23,27,14,21.29099117854139,12.0,29.792696426095606,16.73198258201181,2.627423920736023,1.8,1.57,1.94,1.7629537843268588,2.28,1.83,1.7749999999999997,1.957301690507152,1.7725619834710742,1.8168627042781305 -2020,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,30,35,15,20,16,19.645495589270695,11.0,29.157014139801518,15.959647797179459,2.5247226342331652,1.82,1.58,1.77,1.7128423349699944,2.12,1.77,1.7765227914481645,1.8429407236335642,1.7779941577409932,1.849541813521307 -2020,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,28,30,35,14,25,15,20.936486767812085,11.0,27.47646668573449,15.504317366844157,2.3529678884203693,1.77,1.57,1.75,1.6389943074003794,1.97,1.69,1.7281759425493715,1.7229562982005142,1.7352128218602207,1.7926067415730338 -2020,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,28,32,35,19,25,10,20.645495589270695,13.0,27.659983312791166,15.048986936508857,2.3529678884203693,1.77,1.57,1.75,1.6389943074003794,1.97,1.69,1.7281759425493715,1.7229562982005142,1.7352128218602207,1.7926067415730338 -2020,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,28,34,36,17,19,11,23.0,13.0,29.372699657562578,15.731982582011808,2.3529678884203693,1.77,1.57,1.75,1.6389943074003794,1.97,1.69,1.7281759425493715,1.7229562982005142,1.7352128218602207,1.7926067415730338 -2020,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,29,34,40,16,23,13,23.0,13.0,31.014795647926007,16.959647797179457,2.3912343750000002,1.83,1.63,1.93,1.661317365269461,2.24,1.7,1.8259298685034437,1.77953125,1.8013120567375884,1.8372293073268318 -2020,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,35,40,19,23,18,23.0,14.0,32.325592460555754,19.959647797179457,2.3800374531835202,1.81,1.65,1.99,1.6258553034947885,2.43,1.74,1.8635791304347826,1.7394721407624631,1.7874007682458388,1.8461019822639542 -2020,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,39,34,38,19,21,20,23.227477946353478,12.0,33.03023943616315,18.959647797179457,2.380795847750865,1.8,1.61,1.87,1.6690508684863525,2.26,1.75,1.7721093117408906,1.8344347826086955,1.7756869275603664,1.821265732605082 -2020,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,35,33,34,19,21,17,18.29099117854139,9.0,31.164469504765908,17.18731301234711,2.375108877721943,1.77,1.57,1.83,1.6327788649706458,1.89,1.74,1.7380875113947127,1.8245296864576384,1.7172915360501566,1.8011961406291304 -2020,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,32,29,18,20,15,17.0,6.0,25.45402996220763,14.731982582011808,2.4086181075561606,1.67,1.55,1.68,1.5877795400475814,1.88,1.74,1.6701565762004174,1.6681941176470587,1.602026234035209,1.7049087501233107 -2020,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,29,22,22,15,15,8,30.0,11.0,22.676219428198483,11.731982582011808,2.4086181075561606,1.67,1.55,1.68,1.5877795400475814,1.88,1.74,1.6701565762004174,1.6681941176470587,1.602026234035209,1.7049087501233107 -2020,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,22,24,28,10,11,6,32.354504410729305,21.0,38.12984580731171,16.365991291005905,2.4086181075561606,1.67,1.55,1.68,1.5877795400475814,1.88,1.74,1.6701565762004174,1.6681941176470587,1.602026234035209,1.7049087501233107 -2020,2,4,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,28,21,27,40,7,9,7,34.645495589270695,24.0,47.285384961399764,27.910660860670603,2.5164764267990076,1.73,1.56,1.66,1.8361509575666541,2.08,1.85,1.6465137401024688,2.146913985554826,1.7140231150247662,1.6925710738671633 -2020,2,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,27,37,42,6,11,21,29.0,22.0,47.15809248427908,31.41497822751476,2.513255813953488,1.74,1.57,1.73,1.7770307167235497,2.41,1.81,1.6556413278334317,2.1592587508579273,1.7210631741140214,1.7355525409579462 -2020,2,6,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,33,29,38,42,7,16,25,23.29099117854139,16.0,38.78373614263341,27.504317366844155,2.3826106018333997,1.74,1.57,1.67,1.7190772042028324,2.13,1.76,1.6684332688588006,2.098326639892905,1.723173483779972,1.736414307381193 -2020,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,25,38,43,12,28,19,20.936486767812085,13.0,31.770226712819202,19.821321721341207,2.341807949349279,1.74,1.6,1.78,1.662698833510074,2.53,1.66,1.715187028140014,1.835875912408759,1.7122914147521158,1.7635254377498966 -2020,2,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,36,38,43,22,25,13,24.70900882145861,13.0,28.282808067101914,15.593656506173556,2.3861456483126107,1.76,1.62,1.77,1.6601024983984625,3.01,1.7,1.7183813327727562,1.6671929824561404,1.7258328563251288,1.7638547945205478 -2020,2,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,34,36,37,18,19,6,28.0,18.0,35.82925658363631,15.593656506173556,2.3861456483126107,1.76,1.62,1.77,1.6601024983984625,3.01,1.7,1.7183813327727562,1.6671929824561404,1.7258328563251288,1.7638547945205478 -2020,2,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,33,29,34,39,13,15,9,27.0,14.0,37.565833369794014,15.276652151676506,2.3861456483126107,1.76,1.62,1.77,1.6601024983984625,3.01,1.7,1.7183813327727562,1.6671929824561404,1.7258328563251288,1.7638547945205478 -2020,2,11,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,28,24,35,37,6,14,17,26.645495589270695,13.0,39.260163024133405,22.731982582011806,2.27343462614954,1.7,1.57,1.72,1.6303183962264152,2.15,1.62,1.632076662908681,1.7323111111111111,1.6664596273291923,1.7010241051862673 -2020,2,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,28,28,36,37,8,14,16,24.0,14.0,38.1420593386243,22.959647797179457,2.3315297906602255,1.72,1.59,1.74,1.65681664791901,2.15,1.59,1.6550127176677756,1.7778053830227742,1.744597902097902,1.7010769230769232 -2020,2,13,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,30,28,40,60,7,17,20,27.0,14.0,36.5930369210705,20.959647797179457,2.413903874448259,1.82,1.64,1.79,1.703196590303676,2.62,1.62,1.7442718446601941,1.8368,1.987426900584795,1.7823958983504236 -2020,2,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,39,38,55,55,16,32,23,26.70900882145861,14.0,31.835846827446474,18.504317366844155,2.397100053504548,1.8,1.72,2.44,1.6836340206185567,3.55,1.59,1.9008505747126436,1.823716814159292,1.7809865229110513,1.780364625535363 -2020,2,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,48,46,46,42,21,27,16,26.354504410729305,13.0,32.386023631487426,16.821321721341207,2.43698006932409,1.73,1.6,1.8,1.6257441860465116,2.27,1.56,1.6996495726495728,1.6912250217202431,1.679403546480387,1.7267168716318917 -2020,2,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,37,36,36,18,21,8,25.645495589270695,12.0,29.28521600038518,14.365991291005905,2.43698006932409,1.73,1.6,1.8,1.6257441860465116,2.27,1.56,1.6996495726495728,1.6912250217202431,1.679403546480387,1.7267168716318917 -2020,2,17,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,32,29,34,32,13,15,4,27.0,11.0,31.610969524795394,13.138326075838254,2.43698006932409,1.73,1.6,1.8,1.6257441860465116,2.27,1.56,1.6996495726495728,1.6912250217202431,1.679403546480387,1.7267168716318917 -2020,2,18,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,34,27,30,37,11,12,6,29.29099117854139,12.0,38.10425677947314,12.731982582011808,2.43698006932409,1.73,1.6,1.8,1.6257441860465116,2.27,1.56,1.6996495726495728,1.6912250217202431,1.679403546480387,1.7267168716318917 -2020,2,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,30,26,40,46,10,18,15,27.29099117854139,12.0,40.100839156055976,12.187313012347108,2.460621468926554,1.86,1.75,2.0,1.7981839762611276,2.49,1.86,1.8587319422150883,1.8098034544371648,1.8681337412587413,1.8660604973696795 -2020,2,20,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,41,38,45,50,17,23,19,24.936486767812085,11.0,40.33052602028284,13.325639088185362,2.449885931558935,1.9,1.8,2.3,1.8097389451252,2.82,1.84,1.9690507275941793,1.834612546125461,1.861546511627907,1.9109678449744465 -2020,2,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,45,41,42,41,23,31,23,24.227477946353478,9.0,34.7204358824793,13.325639088185362,2.4426222222222225,1.83,1.77,2.16,1.7362417713943747,2.49,1.78,1.9503678370573037,1.8187829614604463,1.7667887763055339,1.87147257332188 -2020,2,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,33,33,32,21,27,18,23.936486767812085,13.0,30.048507350759436,14.504317366844157,2.3017527129233804,1.75,1.67,1.86,1.6769993164730006,2.09,1.71,1.8079930974978429,1.7342298850574713,1.6896709470304976,1.7996476895583355 -2020,2,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,26,27,17,24,12,25.0,13.0,28.560363758480133,17.138326075838254,2.3017527129233804,1.75,1.67,1.86,1.6769993164730006,2.09,1.71,1.8079930974978429,1.7342298850574713,1.6896709470304976,1.7996476895583355 -2020,2,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,24,28,29,15,18,6,25.354504410729305,11.0,31.984676961888624,15.593656506173556,2.3017527129233804,1.75,1.67,1.86,1.6769993164730006,2.09,1.71,1.8079930974978429,1.7342298850574713,1.6896709470304976,1.7996476895583355 -2020,2,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,25,29,33,9,14,12,24.936486767812085,9.0,37.788375533145874,20.41497822751476,2.3092188052315303,1.72,1.59,1.69,1.6638297872340424,2.03,1.68,1.704120707596254,1.70182156133829,1.6871092077087793,1.7657434003556285 -2020,2,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,22,22,34,39,9,20,19,22.29099117854139,6.0,36.256649169998916,21.09797387301771,2.2946121057118503,1.77,1.6,1.73,1.6794326241134752,2.09,1.68,1.729354998759613,1.7346476190476192,1.7312637718729749,1.7901022469073467 -2020,2,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,22,28,40,38,19,27,22,18.936486767812085,5.0,31.704504317230963,17.41497822751476,2.287358163707233,1.75,1.67,1.86,1.7144765342960289,2.17,1.75,1.7957079790712882,1.7853097345132745,1.7264520202020202,1.7889545753785385 -2020,2,28,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,34,34,42,35,22,25,15,21.936486767812085,4.0,26.266443813902914,12.959647797179457,2.3108574739281575,1.63,1.58,1.76,1.5722965350523772,2.27,1.62,1.6942202240566038,1.6305119453924914,1.5911705852926465,1.656620575221239 -2020,2,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,38,40,30,22,23,10,25.70900882145861,9.0,25.492233429608632,11.276652151676506,2.3108574739281575,1.63,1.58,1.76,1.5722965350523772,2.27,1.62,1.6942202240566038,1.6305119453924914,1.5911705852926465,1.656620575221239 -2020,3,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,34,28,24,19,17,5,28.354504410729305,17.0,28.624503601391606,12.593656506173556,2.18130890052356,1.58,1.48,1.62,1.4645663890249876,1.92,1.53,1.572854337736523,1.4394193548387098,1.517563930013459,1.5798870732031354 -2020,3,2,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,30,24,24,27,13,13,3,26.354504410729305,15.0,31.21429854717092,15.138326075838254,2.18130890052356,1.58,1.48,1.62,1.4645663890249876,1.92,1.53,1.572854337736523,1.4394193548387098,1.517563930013459,1.5798870732031354 -2020,3,3,0,0,0,0,2,1,3,0.0,0.0,0.0,0.0,20,19,23,24,7,5,4,20.0,10.0,27.338054306604825,15.048986936508857,2.1499896426721907,1.57,1.46,1.52,1.4271041666666664,1.67,1.48,1.5362640449438203,1.4054390934844194,1.499755600814664,1.5856424830045694 -2020,3,4,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,21,19,25,25,8,11,6,20.29099117854139,8.0,23.94786868067177,13.276652151676508,2.4452815454171803,1.61,1.51,1.6,1.3822519083969467,1.78,1.43,1.6088979943929262,1.4119141323792486,1.519600725952813,1.640371036653924 -2020,3,5,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,24,26,25,11,12,7,20.936486767812085,7.0,24.000408805409965,9.731982582011808,2.372772073921971,1.66,1.54,1.63,1.413142201834862,1.84,1.46,1.6714874551971328,1.4735022165927802,1.5500152983171853,1.6687643578141316 -2020,3,6,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,29,30,29,14,18,10,24.29099117854139,9.0,20.404329376028183,8.18731301234711,2.3082809038546745,1.64,1.56,1.66,1.4703803486529317,1.94,1.55,1.667420844327177,1.5802127659574468,1.5199650756693832,1.6756157317859446 -2020,3,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,28,30,22,16,21,12,26.0,15.0,19.399414221779132,6.731982582011808,2.4003612716763003,1.52,1.45,1.51,1.4099712808730616,1.82,1.54,1.535323851624063,1.3710828025477706,1.3951951219512195,1.5504465917994255 -2020,3,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,24,19,15,15,15,8,27.354504410729305,16.0,21.181511448939734,11.048986936508856,2.4003612716763003,1.52,1.45,1.51,1.4099712808730616,1.82,1.54,1.535323851624063,1.3710828025477706,1.3951951219512195,1.5504465917994255 -2020,3,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,16,15,15,23,9,11,3,26.936486767812085,13.0,22.9921857600574,10.821321721341205,2.4003612716763003,1.52,1.45,1.51,1.4099712808730616,1.82,1.54,1.535323851624063,1.3710828025477706,1.3951951219512195,1.5504465917994255 -2020,3,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,16,14,19,28,6,7,2,24.872973535624173,12.0,22.846794647788887,11.365991291005903,2.2590811455847253,1.53,1.42,1.46,1.4689749847467968,1.66,1.59,1.5219957081545064,1.5130651340996168,1.4769542709232095,1.556100049776008 -2020,3,11,0,0,0,0,1,1,4,0.0,0.0,0.0,0.0,21,21,25,22,5,8,1,22.645495589270695,10.0,20.483670933744293,8.138326075838254,2.394003466204506,1.67,1.52,1.58,1.596663249615582,1.79,1.82,1.63105981112277,1.720248447204969,1.5953181818181819,1.7067655677655678 -2020,3,12,0,0,0,0,2,1,6,0.0,0.0,0.0,0.0,27,22,19,19,5,5,0,24.936486767812085,11.0,23.001117257097206,7.910660860670603,2.5650579345088165,1.78,1.55,1.66,1.7528335991493886,1.84,2.09,1.7049274873524451,1.898903358464702,1.718659476117103,1.777293388429752 -2020,3,13,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,19,13,22,29,2,6,3,29.29099117854139,14.0,29.185269287109985,13.682995645502952,2.417416267942584,1.66,1.47,1.51,1.6074839087185488,1.72,1.99,1.6113146853146854,1.6163305322128851,1.583725085910653,1.6384254178894986 -2020,3,14,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,22,21,30,33,6,9,4,30.645495589270695,16.0,28.18860787523914,13.365991291005905,2.5105494505494503,1.74,1.6,1.65,1.6162659698025552,1.99,2.15,1.7167446948151388,1.7072547728768928,1.6876055124892333,1.7511895113230036 -2020,3,15,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,25,23,29,33,9,14,7,30.0,16.0,24.922033694507405,10.821321721341205,2.5105494505494503,1.74,1.6,1.65,1.6162659698025552,1.99,2.15,1.7167446948151388,1.7072547728768928,1.6876055124892333,1.7511895113230036 -2020,3,16,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,34,29,29,30,11,13,6,25.0,18.0,23.698906377065068,9.365991291005905,2.5105494505494503,1.74,1.6,1.65,1.6162659698025552,1.99,2.15,1.7167446948151388,1.7072547728768928,1.6876055124892333,1.7511895113230036 -2020,3,17,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,29,24,25,27,7,10,3,24.29099117854139,21.0,23.540471194248678,10.138326075838254,2.566350328117113,1.66,1.45,1.46,1.7382332643202207,1.88,2.04,1.5532359154929576,1.9417173800928313,1.609472,1.6853582202111612 -2020,3,18,0,0,0,0,3,2,6,0.0,0.0,0.0,0.0,25,23,25,22,7,5,1,22.645495589270695,21.0,25.13442889871491,14.910660860670603,2.5905271565495207,1.64,1.45,1.49,1.782367149758454,1.77,2.01,1.539778093883357,1.935393586005831,1.5956157965194113,1.6520336283185841 -2020,3,19,0,0,0,0,4,3,7,0.0,0.0,0.0,0.0,25,21,16,17,2,1,0,20.645495589270695,19.0,28.315033384289123,18.910660860670603,2.4304969574036512,1.49,1.28,1.31,1.414185765983112,1.52,1.54,1.372018561484919,1.5572183588317106,1.4493472409152086,1.4899467012388359 -2020,3,20,0,0,0,0,5,3,4,0.0,0.0,0.0,0.0,16,8,17,30,0,1,4,19.29099117854139,17.0,30.688076632003863,16.821321721341207,2.2429954151808458,1.53,1.26,1.26,1.505276595744681,1.49,1.58,1.3203795620437957,1.615843429636533,1.520370869858395,1.505089749295357 -2020,3,21,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,21,23,34,34,4,14,13,19.29099117854139,15.0,28.603614530188707,14.593656506173556,2.239326923076923,1.54,1.41,1.51,1.4377221108884435,1.83,1.51,1.4679160081282456,1.5015897435897436,1.4962721893491124,1.5354226198424357 -2020,3,22,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,33,30,34,31,10,14,8,19.936486767812085,13.0,25.694427795659966,12.593656506173556,2.239326923076923,1.54,1.41,1.51,1.4377221108884435,1.83,1.51,1.4679160081282456,1.5015897435897436,1.4962721893491124,1.5354226198424357 -2020,3,23,0,0,0,0,3,1,4,0.0,0.0,0.0,0.0,33,30,29,25,11,10,3,23.70900882145861,15.0,24.266976872211277,9.910660860670603,2.239326923076923,1.54,1.41,1.51,1.4377221108884435,1.83,1.51,1.4679160081282456,1.5015897435897436,1.4962721893491124,1.5354226198424357 -2020,3,24,0,0,0,0,3,2,7,0.0,0.0,0.0,0.0,26,23,26,22,8,8,1,25.354504410729305,16.0,22.425594517638597,10.138326075838254,2.052051282051282,1.49,1.37,1.46,1.37156346749226,1.63,1.46,1.4269151312116137,1.5101321585903085,1.4318352513628105,1.5188243789716926 -2020,3,25,0,0,0,0,4,2,6,0.0,0.0,0.0,0.0,28,24,21,18,7,7,1,25.063513232187915,17.0,22.979018774033403,8.682995645502952,2.194608333333333,1.53,1.42,1.57,1.4108597662771285,1.81,1.48,1.496974602288585,1.5597312588401697,1.4457684761281884,1.5869080911233306 -2020,3,26,0,0,0,0,4,2,8,0.0,0.0,0.0,0.0,23,20,17,18,7,3,0,26.70900882145861,20.0,25.945972470627183,9.77233478483235,2.0879732739420938,1.53,1.38,1.39,1.4236139066788656,1.75,1.5,1.4702686014201913,1.4941287553648068,1.4490751757706868,1.5554624881291548 -2020,3,27,0,0,0,0,5,4,9,0.0,0.0,0.0,0.0,17,15,18,16,2,1,0,25.063513232187915,19.0,29.307052093935187,16.317004354497048,1.9932043530834336,1.48,1.29,1.32,1.3038277153558053,1.55,1.39,1.3861213434452873,1.3253883029721958,1.3685945945945943,1.4941135762263382 -2020,3,28,0,0,0,0,6,8,7,0.0,0.0,0.0,0.0,24,20,12,13,2,0,1,21.063513232187915,18.0,28.817382184401616,18.593656506173552,1.84996699669967,1.39,1.17,1.15,1.174953560371517,1.36,1.29,1.2793917385383569,1.1315768725361366,1.245492277992278,1.4280572730231045 -2020,3,29,0,0,0,0,7,3,1,0.0,0.0,0.0,0.0,23,17,11,17,1,0,4,19.354504410729305,16.0,26.035967552097535,14.821321721341207,1.84996699669967,1.39,1.17,1.15,1.174953560371517,1.36,1.29,1.2793917385383569,1.1315768725361366,1.245492277992278,1.4280572730231045 -2020,3,30,0,0,0,0,5,1,2,0.0,0.0,0.0,0.0,25,18,19,17,2,6,4,21.354504410729305,13.0,23.36778450331353,11.821321721341205,1.84996699669967,1.39,1.17,1.15,1.174953560371517,1.36,1.29,1.2793917385383569,1.1315768725361366,1.245492277992278,1.4280572730231045 -2020,3,31,0,0,0,0,4,1,3,0.0,0.0,0.0,0.0,25,22,25,17,7,11,3,24.645495589270695,9.0,19.64274680551912,8.821321721341205,1.8419044544867658,1.44,1.31,1.42,1.214182534471438,1.67,1.35,1.3913008595988536,1.1722346368715084,1.281097435897436,1.493050817341862 -2020,4,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,21,21,16,11,15,4,26.063513232187915,10.0,20.661031915544715,4.593656506173555,1.9138382804503582,1.57,1.45,1.56,1.306375968992248,1.74,1.47,1.5244549431321082,1.155835362883585,1.4618779840848806,1.5212032281731473 -2020,4,2,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,23,20,19,16,10,12,2,26.645495589270695,12.0,30.469568070558836,4.138326075838253,1.9270299727520437,1.49,1.36,1.38,1.345886818495514,1.78,1.47,1.4199964457081928,1.2780063795853271,1.4345668934240363,1.4394005482064116 -2020,4,3,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,22,20,15,28,7,7,5,27.0,13.0,31.89737162768176,7.276652151676506,1.866205378973105,1.45,1.28,1.33,1.3273460410557185,1.59,1.66,1.3557172653534184,1.2206645817044566,1.4059183673469386,1.3828832156436717 -2020,4,4,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,19,15,19,30,6,4,12,26.063513232187915,15.0,26.22025708185795,7.276652151676506,1.8047840717891197,1.41,1.27,1.32,1.2086636466591167,1.56,1.52,1.3164807302231238,1.1466616428033156,1.3281261261261261,1.3679199097574732 -2020,4,5,0,0,0,0,2,2,0,0.0,0.0,0.0,0.0,18,13,20,23,4,2,6,21.645495589270695,17.0,20.130890397798428,6.821321721341205,1.8047840717891197,1.41,1.27,1.32,1.2086636466591167,1.56,1.52,1.3164807302231238,1.1466616428033156,1.3281261261261261,1.3679199097574732 -2020,4,6,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,17,14,17,14,2,1,2,19.0,17.0,17.108741729555767,6.365991291005904,1.8047840717891197,1.41,1.27,1.32,1.2086636466591167,1.56,1.52,1.3164807302231238,1.1466616428033156,1.3281261261261261,1.3679199097574732 -2020,4,7,0,0,0,1,4,1,8,0.0,0.0,0.0,0.0,16,13,8,5,2,0,0,18.29099117854139,16.0,15.725534836761561,5.910660860670602,1.9628647925033467,1.59,1.38,1.43,1.4190368455074338,1.57,1.48,1.4744333776007081,1.4732934847579198,1.4869912102772145,1.5200494193229555 -2020,4,8,0,0,1,2,6,6,12,0.0,0.0,0.0,0.0,18,10,6,9,0,0,0,15.936486767812085,17.0,15.997600282310735,5.910660860670602,2.194204176334107,1.7,1.5,1.53,1.521413043478261,1.73,1.58,1.601546052631579,1.6284120171673817,1.640206561360875,1.6669908561928513 -2020,4,9,0,0,0,0,7,3,8,0.0,0.0,0.0,0.0,23,16,20,22,2,3,1,13.58198235708278,17.0,19.356025058708063,9.544669569664698,2.086185752930568,1.74,1.53,1.49,1.4929125475285172,1.88,1.52,1.6070432581684309,1.5618997107039538,1.6740878988561108,1.706282919488337 -2020,4,10,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,24,24,26,25,9,14,3,12.936486767812085,14.0,17.23829750729325,10.682995645502952,1.9987499999999996,1.65,1.38,1.34,1.4814856429463172,1.71,1.55,1.4475231011945007,1.4322399489470323,1.624857281083696,1.6037266953493137 -2020,4,11,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,23,22,19,18,10,12,3,16.29099117854139,11.0,17.632813770252632,12.455330430335302,1.9987499999999996,1.65,1.38,1.34,1.4814856429463172,1.71,1.55,1.4475231011945007,1.4322399489470323,1.624857281083696,1.6037266953493137 -2020,4,12,0,0,0,0,4,1,7,0.0,0.0,0.0,0.0,22,18,14,21,6,9,1,18.936486767812085,12.0,30.082059836654885,11.365991291005903,1.9987499999999996,1.65,1.38,1.34,1.4814856429463172,1.71,1.55,1.4475231011945007,1.4322399489470323,1.624857281083696,1.6037266953493137 -2020,4,13,0,0,0,0,7,0,0,0.0,0.0,0.0,0.0,15,11,20,33,1,9,12,18.29099117854139,11.0,33.85336100905836,11.414978227514759,1.9987499999999996,1.65,1.38,1.34,1.4814856429463172,1.71,1.55,1.4475231011945007,1.4322399489470323,1.624857281083696,1.6037266953493137 -2020,4,14,0,0,0,0,5,0,0,0.0,0.0,0.0,0.0,16,18,30,33,6,16,13,16.645495589270695,8.0,31.459755849104884,11.64264344268241,2.1109808917197452,1.78,1.49,1.51,1.5259367194004996,1.59,1.56,1.5629094727018198,1.5775425038639876,1.7795305514157973,1.6834241955880287 -2020,4,15,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,20,23,32,31,11,18,12,15.063513232187915,5.0,26.702841519217454,9.959647797179459,1.9203864734299516,1.67,1.5,1.58,1.377118855009334,1.94,1.46,1.5544517647058824,1.4232619339045285,1.6503409758965313,1.5791014881951437 -2020,4,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,25,30,28,11,15,6,14.0,7.0,27.697376811785265,7.0489869365088555,1.911348005502063,1.61,1.45,1.53,1.3350554938956718,1.84,1.45,1.4960047179927085,1.291184668989547,1.5665199034981905,1.505241448692153 -2020,4,17,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,26,27,28,26,9,9,6,12.936486767812085,10.0,25.708494803190987,6.276652151676506,1.9141111693759831,1.51,1.37,1.42,1.2570033670033671,1.65,1.39,1.4142239119035134,1.232427101200686,1.4776819407008086,1.4411341705221414 -2020,4,18,0,0,0,0,4,1,1,0.0,0.0,0.0,0.0,28,24,22,18,6,12,7,17.063513232187915,12.0,22.44677132569181,8.365991291005905,1.8465895953757225,1.68,1.51,1.53,1.3315042511445387,1.68,1.46,1.573228577888311,1.206412213740458,1.5584105960264902,1.6090954580446497 -2020,4,19,0,0,0,0,4,1,4,0.0,0.0,0.0,0.0,21,20,17,18,9,12,2,14.354504410729305,10.0,18.561761937942713,6.593656506173554,1.8465895953757225,1.68,1.51,1.53,1.3315042511445387,1.68,1.46,1.573228577888311,1.206412213740458,1.5584105960264902,1.6090954580446497 -2020,4,20,0,0,0,0,4,0,3,0.0,0.0,0.0,0.0,20,18,19,15,6,6,1,13.354504410729305,11.0,16.45573460243244,3.593656506173555,1.8465895953757225,1.68,1.51,1.53,1.3315042511445387,1.68,1.46,1.573228577888311,1.206412213740458,1.5584105960264902,1.6090954580446497 -2020,4,21,0,0,0,0,4,0,5,0.0,0.0,0.0,0.0,25,20,22,17,5,5,0,15.0,8.0,15.233036661228454,4.138326075838253,1.9208592425098925,1.71,1.6,1.66,1.3589084967320262,1.85,1.44,1.6468481989708403,1.2416332378223496,1.6035664335664335,1.6511080523055746 -2020,4,22,0,0,0,0,2,0,7,0.0,0.0,0.0,1.5446695696646986,27,25,22,12,8,9,1,17.0,3.0,13.5737757475283,3.593656506173555,2.0287541862022773,1.82,1.69,1.78,1.451285090455396,2.1,1.59,1.7548783185840708,1.3686264656616414,1.69,1.7651453880223378 -2020,4,23,0,0,0,0,4,1,8,0.0,1.0,0.3970043778926135,3.8616739241617464,25,23,19,9,7,7,0,13.645495589270695,2.0,13.995239286180793,2.593656506173555,2.021348703170029,1.83,1.67,1.76,1.4769944341372911,2.06,1.56,1.7433259472634612,1.365117599351176,1.711826923076923,1.774560011540681 -2020,4,24,0,0,0,0,4,1,6,0.0,4.0,0.19850218894630675,6.178678278658794,23,20,15,11,3,3,0,14.645495589270695,1.0,15.805913597298458,1.1383260758382534,1.9837229219143575,1.82,1.69,1.76,1.5219971870604783,1.99,1.58,1.7534165405950581,1.4477474892395983,1.7603269754768394,1.7694567737661477 -2020,4,25,0,0,0,0,4,1,4,0.0,4.0,0.5955065668389202,6.951013063491144,17,15,16,12,5,5,1,12.645495589270695,1.0,14.442200525836228,1.5936565061735548,1.9605882352941177,1.74,1.6,1.64,1.4299859649122806,1.89,1.59,1.6432150706436421,1.2710378006872853,1.648291571753986,1.6853684758106469 -2020,4,26,0,0,0,0,4,0,3,0.0,2.0,0.9925109447315338,7.723347848323493,20,19,14,11,4,9,1,13.645495589270695,0.0,10.160704533676835,0.9106608606706027,1.9605882352941177,1.74,1.6,1.64,1.4299859649122806,1.89,1.59,1.6432150706436421,1.2710378006872853,1.648291571753986,1.6853684758106469 -2020,4,27,0,0,0,0,2,0,5,0.0,1.0,0.794008755785227,8.178678278658793,24,21,15,6,6,9,0,14.0,1.0,8.504271885976218,0.45533043033530135,1.9605882352941177,1.74,1.6,1.64,1.4299859649122806,1.89,1.59,1.6432150706436421,1.2710378006872853,1.648291571753986,1.6853684758106469 -2020,4,28,0,0,0,0,1,0,9,0.0,3.0,1.3895153226241472,9.178678278658795,19,16,8,6,6,4,0,12.518469124894866,0.0,8.93497446510592,0.22766521516765068,2.0666990291262133,1.63,1.52,1.55,1.4429080459770114,1.82,1.48,1.551222956730769,1.409501661129568,1.542919020715631,1.5632205414012739 -2020,4,29,0,0,0,0,3,1,5,0.0,2.0,1.3895153226241472,9.268017417988192,19,15,9,11,2,2,1,9.29099117854139,0.0,8.48551205472834,0.682995645502952,2.0818637532133675,1.71,1.62,1.66,1.6020103388856979,1.8,1.62,1.6781568842567198,1.6111675126903553,1.6374722838137472,1.7113532540675847 -2020,4,30,0,0,0,0,3,0,2,0.0,2.0,1.7865197005167608,10.495682633155843,18,11,14,8,3,7,1,13.0,1.0,5.843525796678568,0.22766521516765068,2.0177752553916,1.65,1.54,1.56,1.5172869318181819,1.72,1.55,1.5991231028667792,1.5259505541346974,1.5939071207430342,1.646611711199545 -2020,5,1,0,0,0,1,1,0,5,0.0,1.0,0.9925109447315338,9.406343493826446,11,9,13,4,4,6,0,14.70900882145861,2.0,6.872991438523123,0.22766521516765068,2.034812030075188,1.64,1.43,1.43,1.5074121405750798,1.58,1.56,1.4906444493489295,1.5291768292682928,1.5838822115384614,1.6036273263206566 -2020,5,2,0,0,0,1,2,1,9,0.0,0.0,0.794008755785227,8.634008708994095,9,8,4,3,3,1,0,15.354504410729305,4.0,9.626946371340901,0.22766521516765068,2.0146828225231648,1.64,1.32,1.32,1.4541660993873384,1.37,1.5,1.4213249819320646,1.4828185907046476,1.5536521219366408,1.5634639634070961 -2020,5,3,0,0,0,1,4,4,11,0.0,0.0,0.794008755785227,6.861673924161746,4,2,3,6,0,0,0,18.354504410729305,4.0,9.250978626909305,0.22766521516765068,2.0146828225231648,1.64,1.32,1.32,1.4541660993873384,1.37,1.5,1.4213249819320646,1.4828185907046476,1.5536521219366408,1.5634639634070961 -2020,5,4,0,0,0,0,5,4,13,0.0,1.0,0.3970043778926135,6.089339139329397,6,8,16,12,0,0,0,16.29099117854139,2.0,12.872686888364152,0.22766521516765068,2.0146828225231648,1.64,1.32,1.32,1.4541660993873384,1.37,1.5,1.4213249819320646,1.4828185907046476,1.5536521219366408,1.5634639634070961 -2020,5,5,0,0,0,0,5,3,9,0.0,2.0,0.794008755785227,6.951013063491144,15,16,19,13,4,2,0,12.29099117854139,2.0,13.024849560691809,0.682995645502952,2.0612449098312973,1.78,1.59,1.63,1.6400000000000001,1.7,1.65,1.6579809380486583,1.7028603945371774,1.741775075987842,1.6927209504491452 -2020,5,6,0,0,0,0,4,1,5,0.0,4.0,0.9925109447315338,10.495682633155843,20,19,17,13,5,8,1,15.354504410729305,1.0,11.703313247161306,0.45533043033530135,2.518044444444444,1.97,1.59,1.64,1.8265660377358492,1.85,1.83,1.733192888455918,1.9269933854479857,1.9371240875912406,1.90187646782527 -2020,5,7,0,0,0,0,2,0,5,0.0,5.0,0.9925109447315338,11.178678278658795,15,14,14,15,8,10,1,13.29099117854139,0.0,13.689170261307478,0.22766521516765068,2.397070098576122,1.9,1.48,1.47,1.778349358974359,1.69,1.76,1.6289431887599266,1.890813953488372,1.8746031746031746,1.8212011481563262 -2020,5,8,0,0,0,0,1,0,6,0.0,5.0,1.1910131336778405,9.268017417988192,16,19,21,18,8,12,1,7.29099117854139,0.0,14.497377092007074,1.365991291005904,2.475758183032732,1.85,1.48,1.58,1.67,1.61,1.68,1.6294636439037877,1.733754266211604,1.7999999999999998,1.7674247579167757 -2020,5,9,0,0,0,0,2,0,1,0.7090088214586099,3.0,1.3895153226241472,9.268017417988192,26,27,24,18,11,14,4,2.29099117854139,0.0,13.156129594180864,1.1383260758382534,2.2375997340425533,1.68,1.38,1.42,1.607067901234568,1.53,1.63,1.5086588235294118,1.6363604240282683,1.6475260663507107,1.6564738124238731 -2020,5,10,0,0,0,0,2,0,2,1.0,1.0,1.588017511570454,10.040352202820541,20,18,19,20,9,10,2,1.0,1.0,11.699352311864967,0.9106608606706027,2.2375997340425533,1.68,1.38,1.42,1.607067901234568,1.53,1.63,1.5086588235294118,1.6363604240282683,1.6475260663507107,1.6564738124238731 -2020,5,11,0,0,0,0,3,0,3,0.0,0.0,1.1910131336778405,8.495682633155843,16,18,22,21,7,12,2,5.063513232187915,4.0,12.893462023926231,0.682995645502952,2.2375997340425533,1.68,1.38,1.42,1.607067901234568,1.53,1.63,1.5086588235294118,1.6363604240282683,1.6475260663507107,1.6564738124238731 -2020,5,12,0,0,0,0,2,0,5,0.0,0.0,0.3970043778926135,6.178678278658794,18,18,19,20,8,10,2,11.772522053646524,7.0,10.972757536103874,0.9106608606706027,2.2019968178202065,1.74,1.45,1.59,1.6145369583687341,1.68,1.6,1.57078486875965,1.6535964912280703,1.6945383104125737,1.6594244501570978 -2020,5,13,0,0,0,0,3,1,8,0.0,0.0,0.0,3.317004354497048,19,18,17,14,6,6,0,12.481530875105134,7.0,10.435419922255006,0.682995645502952,2.286943573667712,1.63,1.41,1.49,1.5455042735042734,1.6,1.54,1.5201516122143923,1.628008695652174,1.6111064129668784,1.5918366177818517 -2020,5,14,0,0,0,0,4,4,11,0.0,0.0,0.19850218894630675,3.317004354497048,14,13,7,4,2,0,0,13.772522053646526,6.0,10.933821288667504,1.4553304303353012,2.178972736124635,1.53,1.2,1.28,1.4545943396226415,1.3,1.47,1.3504040192589493,1.5098701298701298,1.52,1.513619087252046 -2020,5,15,0,1,1,1,6,6,11,0.0,0.0,0.5955065668389202,4.861673924161747,4,1,2,4,0,0,0,10.70900882145861,3.0,10.381659941024772,0.45533043033530135,2.13576354679803,1.51,1.07,1.1,1.4111655405405406,1.18,1.42,1.2368792014666938,1.4607396449704142,1.4824328593996838,1.5000774833410817 -2020,5,16,0,2,1,1,8,8,5,0.0,1.0,0.794008755785227,8.178678278658793,3,2,4,5,0,0,0,11.645495589270695,2.0,10.034365511267561,0.45533043033530135,2.171726618705036,1.54,1.23,1.19,1.4564331210191082,1.14,1.46,1.3577354709418838,1.458841463414634,1.5199999999999998,1.5530343698854339 -2020,5,17,0,0,1,0,8,8,9,0.0,0.0,1.3895153226241472,9.406343493826446,9,6,5,6,1,0,0,10.70900882145861,2.0,6.927099913787212,0.22766521516765068,2.171726618705036,1.54,1.23,1.19,1.4564331210191082,1.14,1.46,1.3577354709418838,1.458841463414634,1.5199999999999998,1.5530343698854339 -2020,5,18,0,0,1,0,6,6,10,0.0,0.0,1.0031542149149715,8.861673924161746,7,5,6,8,1,0,0,11.772522053646524,6.0,3.7995102741734774,0.0,2.171726618705036,1.54,1.23,1.19,1.4564331210191082,1.14,1.46,1.3577354709418838,1.458841463414634,1.5199999999999998,1.5530343698854339 -2020,5,19,0,0,0,0,6,1,11,0.0,0.0,0.0,5.772334784832349,11,6,6,6,2,2,0,12.772522053646526,10.0,5.315449704738557,0.0,2.1014414414414415,1.69,1.55,1.61,1.5865523809523812,1.59,1.55,1.6095698924731183,1.6191262135922329,1.6464672183322724,1.6738483745449981 -2020,5,20,0,0,0,0,4,1,11,0.0,0.0,0.368547279820011,1.2276652151676506,11,9,7,3,5,3,0,13.41801764291722,7.0,8.545150707429514,2.0,2.232932330827068,1.75,1.53,1.51,1.6686510500807754,1.53,1.63,1.5851661971830986,1.672814294830887,1.7237760416666665,1.7472884669086848 -2020,5,21,0,0,0,0,5,3,12,0.0,0.0,0.0,2.544669569664699,10,10,6,3,3,2,0,15.70900882145861,3.0,10.96335966080933,1.9106608606706028,2.2744,1.72,1.54,1.44,1.6635006605019815,1.49,1.63,1.6380408692831658,1.6895497026338147,1.7175134168157424,1.7700460450583786 -2020,5,22,0,0,0,1,7,6,14,0.0,0.0,0.794008755785227,4.089339139329397,2,5,2,2,1,0,0,16.70900882145861,4.0,9.857655280936056,0.682995645502952,2.1386206896551725,1.58,1.34,1.29,1.5032345679012344,1.31,1.51,1.440886153846154,1.5625367965367964,1.54,1.6057712579058325 -2020,5,23,0,1,2,3,10,9,14,0.0,0.0,0.0,5.089339139329398,1,0,0,1,0,0,0,13.70900882145861,4.0,11.561078133037467,0.45533043033530135,2.0839471947194723,1.53,1.35,1.31,1.4607072515666963,1.33,1.47,1.4450112648857418,1.4997364217252396,1.5099999999999998,1.5867284688995216 -2020,5,24,0,1,7,5,9,11,13,0.0,0.0,0.19850218894630675,5.089339139329398,11,4,0,1,1,0,0,9.354504410729305,1.0,13.2096669901318,1.2276652151676506,2.0839471947194723,1.53,1.35,1.31,1.4607072515666963,1.33,1.47,1.4450112648857418,1.4997364217252396,1.5099999999999998,1.5867284688995216 -2020,5,25,0,1,9,4,7,11,7,0.0,4.0,0.9925109447315338,6.951013063491144,8,2,0,1,0,0,0,9.936486767812085,0.0,11.763377200147218,1.365991291005904,2.0839471947194723,1.53,1.35,1.31,1.4607072515666963,1.33,1.47,1.4450112648857418,1.4997364217252396,1.5099999999999998,1.5867284688995216 -2020,5,26,2,4,10,4,8,8,7,0.0,8.0,1.588017511570454,8.495682633155843,1,0,0,1,0,0,0,6.58198235708278,0.0,6.733757882114125,0.9106608606706027,2.0839471947194723,1.53,1.35,1.31,1.4607072515666963,1.33,1.47,1.4450112648857418,1.4997364217252396,1.5099999999999998,1.5867284688995216 -2020,5,27,4,4,10,4,8,7,8,0.0,9.0,2.7896739154317323,13.040352202820541,0,0,0,0,0,0,0,4.227477946353475,0.0,3.135656015499323,0.22766521516765068,2.3642511627906977,1.7,1.53,1.54,1.6358541777541244,1.71,1.62,1.6403756285122746,1.7376774559909143,1.6858012170385397,1.704951417806861 -2020,5,28,4,4,7,3,11,8,9,1.0635132321879148,8.0,3.829881414587723,16.04035220282054,0,0,0,1,0,0,0,1.2909911785413901,0.0,2.649330999085649,0.0,2.3536409116175654,1.73,1.52,1.52,1.639993883792049,1.62,1.62,1.6133209302325582,1.7337191780821914,1.6948444444444446,1.7030252749372947 -2020,5,29,6,8,3,1,12,8,10,1.354504410729305,4.0,4.98069609263165,16.81268698765289,0,0,1,3,0,0,0,0.6454955892706951,0.0,0.3873194663022764,0.0,2.287659574468085,1.63,1.4,1.35,1.5751620947630924,1.51,1.57,1.5142784734645198,1.62938900203666,1.6066879562043799,1.6457717391304347 -2020,5,30,5,4,0,1,11,6,10,1.0,0.0,4.9583114648869016,16.26801741798819,0,1,4,5,0,0,0,9.0,2.0,0.10602733551027468,0.0,2.287659574468085,1.63,1.4,1.35,1.5751620947630924,1.51,1.57,1.5142784734645198,1.62938900203666,1.6066879562043799,1.6457717391304347 -2020,5,31,0,0,0,2,8,4,9,0.0,0.0,3.779085734308836,15.26801741798819,6,7,8,2,0,0,0,11.0,2.0,0.8078246463616668,0.0,2.287659574468085,1.63,1.4,1.35,1.5751620947630924,1.51,1.57,1.5142784734645198,1.62938900203666,1.6066879562043799,1.6457717391304347 -2020,6,1,0,0,0,7,7,4,10,0.0,1.0,4.367062104222516,13.495682633155843,14,10,5,0,1,1,0,9.645495589270695,1.0,1.073287492866285,0.0,2.052133403917417,1.52,1.33,1.27,1.4674074074074075,1.42,1.47,1.4238607448531113,1.564406623735051,1.5061417780360253,1.5231264712176331 -2020,6,2,0,0,8,11,7,8,13,0.0,5.0,4.311296180634036,16.04035220282054,10,6,0,0,0,0,0,9.227477946353476,0.0,0.7245599832936851,0.0,2.0235324107793153,1.53,1.34,1.34,1.4667999999999999,1.42,1.47,1.4272976680384089,1.5592790194664743,1.491204481792717,1.4939175257731958 -2020,6,3,0,3,9,10,11,11,14,0.0,10.0,4.308772464793473,17.812686987652892,2,0,0,0,0,0,0,8.227477946353474,0.0,0.5860850637507804,0.0,2.2046357615894037,1.64,1.44,1.54,1.5563309352517987,1.65,1.53,1.5331451817950672,1.721652733118971,1.6031207598371777,1.5650851703406814 -2020,6,4,5,6,8,9,12,12,16,0.0,8.0,4.8758219335597905,17.723347848323492,0,0,0,0,0,0,0,7.645495589270695,0.0,0.7245599832936851,0.0,2.2693130474873215,1.77,1.51,1.61,1.7148416886543534,1.78,1.67,1.6362376702677315,1.8728205128205127,1.7334886363636364,1.7141946352209405 -2020,6,5,6,7,9,9,12,13,17,0.0,1.0,6.554585712113996,17.951013063491143,0,0,0,0,0,0,0,9.0,1.0,0.46396503545092493,0.0,2.1767044649184975,1.7,1.45,1.51,1.616864728192162,1.72,1.58,1.5803445280833817,1.7068835098335855,1.6766350710900473,1.6557722258273848 -2020,6,6,8,9,8,10,13,13,17,0.0,0.0,2.882680489753849,10.22766521516765,0,0,0,1,0,0,0,13.063513232187915,4.0,2.326139020460459,0.0,2.1159535160905842,1.59,1.37,1.39,1.497925,1.42,1.52,1.4791095505617977,1.5582726130653266,1.5533181818181818,1.6053923798692067 -2020,6,7,0,2,4,12,12,13,17,0.0,0.0,1.5026462173526465,9.089339139329397,3,1,1,0,0,0,0,14.127026464375831,6.0,7.663527163396765,0.0,2.1159535160905842,1.59,1.37,1.39,1.497925,1.42,1.52,1.4791095505617977,1.5582726130653266,1.5533181818181818,1.6053923798692067 -2020,6,8,0,0,6,13,12,12,17,0.0,0.0,0.737094559640022,6.0,3,2,0,0,0,0,0,13.063513232187915,2.0,10.82998745306842,1.0,2.1159535160905842,1.59,1.37,1.39,1.497925,1.42,1.52,1.4791095505617977,1.5582726130653266,1.5533181818181818,1.6053923798692067 -2020,6,9,2,5,10,10,14,14,18,0.0,3.0,0.3970043778926135,4.861673924161747,1,0,0,0,0,0,0,12.0,1.0,12.68610406151582,1.9106608606706028,2.1008885651857248,1.62,1.48,1.57,1.477535934291581,1.69,1.48,1.5826591478696743,1.5869917012448131,1.5473487544483986,1.611023751023751 -2020,6,10,2,9,12,2,15,15,12,0.0,8.0,1.3895153226241472,8.723347848323494,1,0,0,1,0,0,0,5.29099117854139,0.0,7.08368875330399,0.45533043033530135,2.114557235421166,1.62,1.49,1.57,1.5179192334017797,1.7,1.5,1.5898585815298907,1.6380203784570595,1.5641007194244607,1.6044982646748152 -2020,6,11,3,8,4,3,14,7,10,0.0,7.0,2.429722821780138,13.495682633155843,1,0,0,1,0,0,0,4.29099117854139,0.0,2.6257246042456024,0.0,2.0045342381246143,1.6,1.49,1.58,1.5421363636363636,1.67,1.52,1.6091147072822465,1.6843639427127213,1.57,1.623344754446076 -2020,6,12,6,5,3,6,11,7,11,0.0,2.0,4.205074027278447,14.495682633155841,0,1,1,1,0,0,0,8.70900882145861,1.0,0.036789875738822315,0.0,2.1095117982099265,1.56,1.42,1.5,1.5150145985401462,1.58,1.51,1.5621517287680429,1.6050590086546026,1.5418462823725982,1.5980436390532544 -2020,6,13,0,0,1,6,9,8,12,0.0,0.0,3.915250161334523,13.723347848323492,3,4,5,2,0,0,0,12.41801764291722,3.0,1.5699126351186583,0.0,1.983358737071312,1.48,1.29,1.27,1.4274674827850038,1.42,1.44,1.3816726835138389,1.487883211678832,1.4568856447688563,1.5134088067787193 -2020,6,14,0,0,0,7,7,7,13,0.0,0.0,3.5126664398143737,12.178678278658793,6,6,5,1,0,0,0,11.645495589270695,1.0,4.184234122265999,0.0,1.983358737071312,1.48,1.29,1.27,1.4274674827850038,1.42,1.44,1.3816726835138389,1.487883211678832,1.4568856447688563,1.5134088067787193 -2020,6,15,0,0,0,9,6,6,14,0.0,2.0,3.299809188052845,13.178678278658793,4,4,3,0,1,0,0,13.354504410729305,1.0,3.287625016343619,0.0,1.983358737071312,1.48,1.29,1.27,1.4274674827850038,1.42,1.44,1.3816726835138389,1.487883211678832,1.4568856447688563,1.5134088067787193 -2020,6,16,0,0,2,11,4,5,15,0.0,0.0,4.479030778990523,13.951013063491143,3,2,0,0,1,0,0,11.418017642917219,1.0,3.6249280737482663,0.0,2.02355500310752,1.44,1.17,1.21,1.4391625344352617,1.37,1.41,1.2825706829056112,1.5059779338014043,1.4066250974279033,1.4186029411764705 -2020,6,17,0,0,5,11,5,5,15,0.0,1.0,3.2322517217242024,13.406343493826444,1,0,0,0,0,0,0,8.354504410729305,1.0,6.042823306073482,0.0,1.9141619318181817,1.37,1.23,1.32,1.2944579172610557,1.46,1.28,1.295136973361043,1.4035714285714285,1.3379304192685104,1.3439585452695828 -2020,6,18,4,4,7,10,8,7,15,0.0,2.0,1.588017511570454,11.406343493826444,0,0,0,0,0,0,0,4.0,0.0,7.081813942015867,0.0,1.9068495077355836,1.5,1.33,1.42,1.3652210884353742,1.55,1.37,1.3884888689003825,1.4520698924731184,1.4291511936339523,1.4357609441471113 -2020,6,19,9,6,9,5,10,10,16,0.6454955892706951,4.0,1.588017511570454,11.406343493826444,0,0,0,1,0,0,0,1.2909911785413901,0.0,5.859065815633027,0.0,1.8128466076696168,1.5,1.33,1.39,1.3737530463038181,1.62,1.37,1.3778816018572257,1.475036344755971,1.4413011828935396,1.415068759342302 -2020,6,20,10,8,11,6,11,12,14,0.6454955892706951,5.0,2.9074516520253955,13.723347848323492,0,0,0,1,0,0,0,3.0,0.0,3.1603601792833675,0.0,1.8333274179236911,1.51,1.36,1.44,1.3835334645669293,1.62,1.38,1.4223272381857042,1.422855029585799,1.461701073492981,1.4344548125107999 -2020,6,21,10,9,10,7,12,12,15,0.6454955892706951,6.0,4.407574153537478,15.951013063491143,0,0,0,0,0,0,0,3.936486767812085,0.0,1.2097441785033314,0.0,1.8333274179236911,1.51,1.36,1.44,1.3835334645669293,1.62,1.38,1.4223272381857042,1.422855029585799,1.461701073492981,1.4344548125107999 -2020,6,22,9,11,9,6,14,11,15,1.354504410729305,7.0,4.606076342483785,17.178678278658793,0,0,0,1,0,0,0,1.2909911785413901,0.0,0.7234191620896574,0.0,1.8333274179236911,1.51,1.36,1.44,1.3835334645669293,1.62,1.38,1.4223272381857042,1.422855029585799,1.461701073492981,1.4344548125107999 -2020,6,23,9,10,5,3,13,12,14,3.4180176429172198,8.0,5.7563016631100785,17.49568263315584,0,0,0,0,0,0,0,0.0,0.0,0.036789875738822315,0.0,2.1827480916030533,1.6,1.49,1.68,1.5570446320868516,1.84,1.55,1.581270738377393,1.6826241134751774,1.573961038961039,1.5536152251184834 -2020,6,24,10,9,3,4,14,9,13,2.0,8.0,7.315362708603644,16.49568263315584,0,0,0,0,0,0,0,0.6454955892706951,0.0,0.0,0.0,2.0213551401869156,1.53,1.44,1.56,1.494373687893632,1.76,1.47,1.5124816573154942,1.6373490427098674,1.5030272108843536,1.510556289204358 -2020,6,25,6,6,4,7,13,11,14,1.0,7.0,7.304659891285402,16.951013063491143,0,0,0,0,0,0,0,0.0,0.0,0.036789875738822315,0.0,2.055278810408922,1.58,1.43,1.5,1.5044596912521442,1.65,1.5,1.5207275502416686,1.611641791044776,1.5436617100371748,1.5322096980008506 -2020,6,26,6,7,7,11,13,9,14,2.70900882145861,8.0,5.755457940712326,17.723347848323492,0,0,0,0,0,0,0,0.0,0.0,0.07357975147764463,0.0,1.945624611559975,1.5,1.28,1.38,1.435754126351736,1.58,1.42,1.3877641277641277,1.565796178343949,1.4673067534580961,1.417385737439222 -2020,6,27,4,6,10,10,14,11,17,0.6454955892706951,8.0,6.3780099245649255,16.951013063491143,0,0,0,0,0,0,0,5.227477946353476,0.0,0.036789875738822315,0.0,1.6874125874125874,1.43,1.3,1.4,1.3315490318550909,1.5,1.31,1.3744623789421404,1.3683653846153847,1.3883870967741936,1.3735470941883767 -2020,6,28,6,9,10,12,15,14,18,0.0,2.0,5.939576280421023,15.178678278658793,0,0,0,0,0,0,0,8.063513232187915,1.0,1.7196632345226648,0.0,1.6874125874125874,1.43,1.3,1.4,1.3315490318550909,1.5,1.31,1.3744623789421404,1.3683653846153847,1.3883870967741936,1.3735470941883767 -2020,6,29,5,9,12,12,16,15,19,0.0,0.0,3.5126664398143737,13.089339139329397,0,0,0,0,0,0,0,5.709008821458609,1.0,5.350648366399189,0.0,1.6874125874125874,1.43,1.3,1.4,1.3315490318550909,1.5,1.31,1.3744623789421404,1.3683653846153847,1.3883870967741936,1.3735470941883767 -2020,6,30,3,6,11,13,15,14,19,0.0,2.0,2.1266098822641695,11.089339139329397,0,0,0,0,0,0,0,7.354504410729305,0.0,5.297549644955781,0.0,1.7964,1.63,1.52,1.63,1.4777033492822966,1.67,1.44,1.6071766375029557,1.5431226053639846,1.5608878504672898,1.5841469736240281 -2020,7,1,5,7,11,11,14,13,20,0.0,2.0,2.3535691692830785,12.178678278658793,0,0,0,0,0,0,0,9.645495589270695,0.0,2.874556795770587,0.0,1.711409193669932,1.64,1.48,1.59,1.426495195025438,1.73,1.38,1.5815059221658208,1.4786209193870752,1.5800478796169632,1.6101589443694706 -2020,7,2,8,10,12,13,14,13,20,0.0,3.0,4.7534232119316915,13.634008708994095,0,0,0,0,0,0,0,7.29099117854139,0.0,1.0778931930746745,0.0,1.589151670951157,1.54,1.37,1.44,1.2891338582677165,1.62,1.29,1.4758143697264126,1.3381124497991967,1.5118300248138958,1.516525355943049 -2020,7,3,7,13,13,13,16,15,19,0.0,4.0,6.049102185239737,16.406343493826444,0,0,0,0,0,0,0,7.29099117854139,0.0,0.32549011590802024,0.0,1.5907703851925963,1.53,1.37,1.45,1.2977129521586932,1.52,1.28,1.4625769136106328,1.2752482269503547,1.4493828715365238,1.5013579630554168 -2020,7,4,7,11,13,13,16,15,18,0.0,8.0,7.140733316278014,17.951013063491143,0,0,0,0,0,0,0,6.0,0.0,0.2562526561365679,0.0,1.5907703851925963,1.53,1.37,1.45,1.2977129521586932,1.52,1.28,1.4625769136106328,1.2752482269503547,1.4493828715365238,1.5013579630554168 -2020,7,5,8,12,13,13,16,15,18,0.0,9.0,6.23953500502202,19.495682633155845,0,0,0,0,0,0,0,5.0,0.0,0.32549011590802024,0.0,1.5907703851925963,1.53,1.37,1.45,1.2977129521586932,1.52,1.28,1.4625769136106328,1.2752482269503547,1.4493828715365238,1.5013579630554168 -2020,7,6,7,13,14,13,15,14,17,0.6454955892706951,8.0,7.271105176352821,18.951013063491146,0,0,0,0,0,0,0,6.70900882145861,0.0,0.06923745977145236,0.0,1.5907703851925963,1.53,1.37,1.45,1.2977129521586932,1.52,1.28,1.4625769136106328,1.2752482269503547,1.4493828715365238,1.5013579630554168 -2020,7,7,3,9,15,13,14,14,17,0.0,6.0,7.599181548514643,18.951013063491146,0,0,0,0,0,0,0,6.354504410729305,0.0,0.32549011590802024,0.0,1.8370365535248043,1.72,1.54,1.74,1.5287466185752931,1.91,1.52,1.636911421911422,1.63034819792303,1.679903647625602,1.6604448771719593 -2020,7,8,9,13,15,15,15,15,19,0.0,6.0,6.3058130677238164,19.723347848323492,0,0,0,0,0,0,0,4.645495589270695,0.0,0.6553225235222327,0.0,2.0277480689245393,1.82,1.43,1.75,1.6359778597785977,1.79,1.6,1.5992373607540702,1.728770207852194,1.7620238772029562,1.7403293413173655 -2020,7,9,12,14,15,11,16,15,20,0.0,7.0,6.057354017014687,20.406343493826444,0,0,0,0,0,0,0,4.645495589270695,0.0,0.4315174514182949,0.0,2.113251919050942,1.79,1.45,1.78,1.6431012658227848,1.76,1.63,1.6409728287239205,1.7315744680851064,1.7545878594249202,1.7541581425556099 -2020,7,10,10,11,13,10,17,16,20,0.6454955892706951,10.0,8.574985796256962,22.178678278658793,0,0,0,0,0,0,0,2.29099117854139,0.0,0.4315174514182949,0.0,2.204209459459459,1.69,1.4,1.74,1.6170201484623543,1.65,1.57,1.5753243135694388,1.7476823708206686,1.6477058029689609,1.7252213473315834 -2020,7,11,12,12,10,11,16,14,21,0.6454955892706951,13.0,10.05071772766605,23.723347848323492,0,0,0,0,0,0,0,4.58198235708278,0.0,0.0,0.0,2.204209459459459,1.69,1.4,1.74,1.6170201484623543,1.65,1.57,1.5753243135694388,1.7476823708206686,1.6477058029689609,1.7252213473315834 -2020,7,12,13,11,8,9,14,12,21,0.0,13.0,10.804255575793091,23.951013063491143,0,0,0,0,0,0,0,3.936486767812085,0.0,0.13847491954290472,0.0,2.204209459459459,1.69,1.4,1.74,1.6170201484623543,1.65,1.57,1.5753243135694388,1.7476823708206686,1.6477058029689609,1.7252213473315834 -2020,7,13,11,10,6,10,15,13,21,0.0,10.0,10.563480398197742,23.178678278658793,0,0,0,0,0,0,0,4.29099117854139,0.0,0.4315174514182949,0.0,2.204209459459459,1.69,1.4,1.74,1.6170201484623543,1.65,1.57,1.5753243135694388,1.7476823708206686,1.6477058029689609,1.7252213473315834 -2020,7,14,7,8,7,10,16,14,22,0.0,6.0,6.618381200632002,20.406343493826444,0,0,0,0,0,0,0,1.9364867678120852,0.0,0.7245599832936851,0.0,2.13540443379269,1.69,1.42,1.81,1.6312062466343564,1.69,1.61,1.7128571428571426,1.8118039482641253,1.6439479905437353,1.722807698045651 -2020,7,15,4,8,9,8,16,15,21,1.7090088214586099,6.0,5.638849875431852,19.951013063491146,0,0,0,0,0,0,0,0.6454955892706951,0.0,0.36227999164684255,0.0,2.216169001751313,1.65,1.34,1.89,1.566448553816975,1.83,1.59,1.5870863309352516,1.7943048576214404,1.6053209459459459,1.6746039944903581 -2020,7,16,2,7,9,8,15,16,21,2.70900882145861,7.0,8.086074523589485,18.951013063491146,1,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.043314465408805,1.66,1.4,1.64,1.5846693657219972,1.71,1.58,1.6235014523369424,1.7138176100628932,1.636302083333333,1.6836837165649927 -2020,7,17,2,10,11,12,17,17,20,1.0,7.0,9.773293167357956,18.178678278658793,1,0,0,0,0,0,0,2.29099117854139,0.0,0.0,0.0,2.14859375,1.69,1.38,1.62,1.6013339824732231,1.64,1.59,1.6210440735986307,1.7580855137204852,1.641126090404441,1.6981944702171088 -2020,7,18,10,12,14,15,17,18,19,1.354504410729305,9.0,11.577885646191815,20.723347848323492,0,0,0,0,0,0,0,0.6454955892706951,0.0,0.0,0.0,2.0185932475884245,1.65,1.43,1.78,1.5465207877461704,1.92,1.55,1.6017422731804587,1.6346510020732552,1.605409015025042,1.6723806451612904 -2020,7,19,12,15,16,13,18,18,19,5.063513232187915,9.0,10.377377514887261,22.26801741798819,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.0185932475884245,1.65,1.43,1.78,1.5465207877461704,1.92,1.55,1.6017422731804587,1.6346510020732552,1.605409015025042,1.6723806451612904 -2020,7,20,16,16,10,8,19,18,18,6.70900882145861,8.0,8.670683455264848,19.495682633155845,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.0185932475884245,1.65,1.43,1.78,1.5465207877461704,1.92,1.55,1.6017422731804587,1.6346510020732552,1.605409015025042,1.6723806451612904 -2020,7,21,12,13,9,8,18,17,18,5.709008821458609,8.0,8.366213477943072,19.268017417988194,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.0000544794188864,1.56,1.39,1.75,1.5100069979006299,1.73,1.52,1.5658017765310892,1.6486430481283423,1.5448091603053435,1.593795585412668 -2020,7,22,9,13,10,8,16,16,18,3.0635132321879146,5.0,7.883010896743548,17.26801741798819,0,0,0,1,0,0,0,0.6454955892706951,0.0,0.0,0.0,2.0512642802741814,1.61,1.32,1.75,1.5117069892473118,1.63,1.52,1.523984090909091,1.5751043115438108,1.5674297188755022,1.6167099056603773 -2020,7,23,11,13,9,10,16,15,19,1.645495589270695,4.0,8.031251673768061,13.178678278658793,0,0,0,0,0,0,0,2.29099117854139,0.0,0.0,0.0,2.027211997273347,1.58,1.33,1.8,1.484502784407319,1.68,1.49,1.5061806167400882,1.5250000000000001,1.528826530612245,1.6102376352395673 -2020,7,24,10,11,8,13,15,15,19,0.6454955892706951,5.0,7.278004874203653,13.178678278658793,0,0,0,0,0,0,0,3.645495589270695,0.0,0.0,0.0,1.9534186351706038,1.63,1.27,1.72,1.4766576576576578,1.68,1.48,1.4602008253094911,1.5099305555555556,1.5380514705882355,1.632910447761194 -2020,7,25,10,11,10,15,15,15,17,0.6454955892706951,6.0,6.670175043738485,13.723347848323492,0,0,0,0,0,0,0,2.645495589270695,0.0,0.06923745977145236,0.0,1.9569714285714284,1.65,1.41,1.8,1.5366618497109827,1.94,1.58,1.6023552,1.5484170212765958,1.6030512820512821,1.662783070721876 -2020,7,26,13,14,14,14,16,15,16,4.063513232187915,8.0,7.000515862879061,16.49568263315584,0,0,0,0,0,0,0,0.0,0.0,0.06923745977145236,0.0,1.9569714285714284,1.65,1.41,1.8,1.5366618497109827,1.94,1.58,1.6023552,1.5484170212765958,1.6030512820512821,1.662783070721876 -2020,7,27,16,15,14,10,17,15,17,8.354504410729305,8.0,7.9641114831904805,18.040352202820543,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1.9569714285714284,1.65,1.41,1.8,1.5366618497109827,1.94,1.58,1.6023552,1.5484170212765958,1.6030512820512821,1.662783070721876 -2020,7,28,17,15,10,9,17,15,16,6.063513232187915,9.0,7.423700536631136,19.040352202820543,0,0,0,0,0,0,0,0.0,0.0,0.036789875738822315,0.0,2.23889077532541,1.69,1.44,1.88,1.6227765843179378,1.92,1.63,1.6587229019102812,1.760156739811912,1.6449848024316112,1.6918303332739264 -2020,7,29,11,12,11,9,16,15,17,6.41801764291722,9.0,8.590510466698598,21.26801741798819,0,0,0,0,0,0,0,0.0,0.0,0.036789875738822315,0.0,2.3564072632944226,1.72,1.42,1.89,1.6993318729463305,2.01,1.71,1.6578478362028852,2.139712041884817,1.6898933901918975,1.7166487815783589 -2020,7,30,12,12,8,8,16,15,19,9.063513232187915,10.0,8.261712459687066,22.26801741798819,0,0,0,0,0,0,0,0.0,0.0,0.368547279820011,0.0,2.3951932203389834,1.76,1.44,1.83,1.7006766381766383,1.93,1.71,1.7036136662286465,2.04233918128655,1.716479704797048,1.7478853133317203 -2020,7,31,10,9,6,6,16,16,17,7.0,12.0,10.251658546921263,22.58502177248524,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.320377984084881,1.74,1.37,1.53,1.690689223057644,1.65,1.72,1.587336971350614,2.0618279569892475,1.6898557258791704,1.7524699716095218 -2020,8,1,10,10,6,6,16,13,15,3.354504410729305,11.0,10.22524853286368,21.58502177248524,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.1946260387811636,1.65,1.35,1.57,1.602021466905188,1.76,1.62,1.5394254937163376,1.8238374717832957,1.6345644080416974,1.692049328980776 -2020,8,2,10,13,6,4,17,11,16,2.70900882145861,11.0,10.175864533643717,19.268017417988194,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.1946260387811636,1.65,1.35,1.57,1.602021466905188,1.76,1.62,1.5394254937163376,1.8238374717832957,1.6345644080416974,1.692049328980776 -2020,8,3,14,13,4,2,15,12,15,2.0,10.0,8.965578253309946,19.812686987652892,0,0,1,1,0,0,0,0.0,0.0,0.0,0.0,2.1946260387811636,1.65,1.35,1.57,1.602021466905188,1.76,1.62,1.5394254937163376,1.8238374717832957,1.6345644080416974,1.692049328980776 -2020,8,4,9,8,2,1,14,11,16,3.354504410729305,7.0,8.974369257323676,18.951013063491146,0,0,1,1,0,0,0,0.0,0.0,0.0,0.0,2.3813570487483533,1.79,1.51,1.71,1.7284105202973126,1.8,1.72,1.7441746617466174,1.9322230267921794,1.7419405756731663,1.883422208281054 -2020,8,5,11,9,0,2,14,10,16,2.645495589270695,5.0,8.255924796617876,18.495682633155845,0,0,1,0,0,0,0,0.0,0.0,0.0,0.0,2.34595825426945,1.9,1.61,1.85,1.783529411764706,2.05,1.79,1.8669994514536479,1.9571502057613168,1.8189652247667514,1.9745129351644841 -2020,8,6,5,5,2,4,14,11,17,0.6454955892706951,3.0,8.541173723065828,16.951013063491143,0,0,0,0,0,0,0,4.354504410729305,0.0,0.0,0.0,2.3521638225255974,1.93,1.52,1.61,1.813854258121159,1.93,1.85,1.897733604178758,1.8830568356374806,1.8801075268817204,2.080054365206268 -2020,8,7,5,6,4,9,15,12,18,0.0,4.0,7.336925012707104,15.951013063491143,0,0,0,0,0,0,0,4.0,0.0,0.18701519636511552,0.0,2.325644504748982,1.91,1.42,1.4,1.7717244897959183,1.68,1.81,1.7448639053254436,1.829813780260708,1.825654704170708,2.070086507816057 -2020,8,8,8,8,6,12,15,13,19,0.0,6.0,7.102476670419728,17.723347848323492,0,0,0,0,0,0,0,3.645495589270695,0.0,0.2077123793143571,0.0,2.2959699833240688,1.87,1.3,1.4,1.7456562500000001,1.58,1.74,1.577768456375839,1.7867389340560074,1.8015299026425593,2.012778299230336 -2020,8,9,10,10,10,12,16,14,20,0.6454955892706951,9.0,7.275939384710601,18.723347848323495,0,0,0,0,0,0,0,1.2909911785413901,0.0,0.2077123793143571,0.0,2.2959699833240688,1.87,1.3,1.4,1.7456562500000001,1.58,1.74,1.577768456375839,1.7867389340560074,1.8015299026425593,2.012778299230336 -2020,8,10,13,13,12,11,16,16,20,2.0635132321879146,9.0,7.214495530366587,18.951013063491146,0,0,0,0,0,0,0,0.6454955892706951,0.0,0.06923745977145236,0.0,2.2959699833240688,1.87,1.3,1.4,1.7456562500000001,1.58,1.74,1.577768456375839,1.7867389340560074,1.8015299026425593,2.012778299230336 -2020,8,11,14,13,9,7,16,15,20,1.0,9.0,8.238331643404752,18.951013063491146,0,0,0,0,0,0,0,1.9364867678120852,0.0,0.0,0.0,2.4156656346749226,1.93,1.29,2.0,1.8721268163804492,2.0,1.82,1.642287128712871,2.0324781572676724,1.88414030261348,2.06253983900115 -2020,8,12,15,13,7,8,16,15,20,0.0,10.0,7.7508994960911295,19.723347848323492,0,0,0,0,0,0,0,4.645495589270695,0.0,0.2562526561365679,0.0,2.5384505431675244,1.96,1.46,1.99,1.9428039977790115,2.14,1.92,1.7978733955659278,2.2875034199726403,1.9045125786163521,2.05961663791451 -2020,8,13,10,10,8,11,15,15,21,0.0,12.0,8.035549703165493,21.495682633155845,0,0,0,0,0,0,0,4.936486767812085,0.0,0.3947275756794726,0.0,2.7315130434782606,1.91,1.27,1.74,1.8931341176470589,1.86,1.91,1.5372624113475177,2.4720491109229465,1.8737096774193547,1.9859862745098036 -2020,8,14,9,11,10,11,15,13,21,0.35450441072930494,16.0,7.627821109198172,23.26801741798819,0,0,0,0,0,0,0,1.9364867678120852,0.0,0.31373971482463175,0.0,3.166256306760848,2.03,1.12,1.48,2.065393716850265,1.65,2.12,1.343231441048035,3.541750943396226,1.9708304498269897,2.0581321473951717 -2020,8,15,3,7,9,8,13,14,21,4.481530875105134,18.0,8.377051565971824,20.723347848323492,0,0,0,0,0,0,0,0.0,0.0,0.06923745977145236,0.0,4.0116049382716055,2.1,1.24,1.32,2.2225488776249094,1.5,2.37,1.4259038322487345,4.816709511568123,2.0613217391304346,2.1682635829662265 -2020,8,16,1,4,7,6,12,13,20,10.0,17.0,10.382534678882045,21.812686987652892,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.0116049382716055,2.1,1.24,1.32,2.2225488776249094,1.5,2.37,1.4259038322487345,4.816709511568123,2.0613217391304346,2.1682635829662265 -2020,8,17,4,5,6,6,13,12,17,9.354504410729305,16.0,11.788520738993318,20.812686987652892,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.0116049382716055,2.1,1.24,1.32,2.2225488776249094,1.5,2.37,1.4259038322487345,4.816709511568123,2.0613217391304346,2.1682635829662265 -2020,8,18,7,5,3,4,13,12,17,6.063513232187915,18.0,12.659256009818462,20.812686987652892,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.29730322152109,2.15,1.51,1.56,2.429992679355783,1.73,2.42,1.7051556420233465,7.805404761904762,2.1171117166212534,2.2312470657276995 -2020,8,19,1,3,1,5,12,10,15,4.354504410729305,16.0,12.075236435560733,21.040352202820543,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.548910146908097,2.2,1.43,1.53,2.311667440780307,1.53,2.31,1.7514420995670996,4.268062330623306,2.16,2.291916403785489 -2020,8,20,1,2,3,6,11,10,15,3.354504410729305,14.0,10.638006153034098,21.495682633155845,1,1,0,0,0,0,0,0.0,0.0,0.0,0.0,3.8883389261744963,2.22,1.2,1.21,2.2897265625,1.51,2.31,1.460352644836272,3.8283517835178356,2.1593730407523513,2.2873965024982157 -2020,8,21,5,5,6,8,11,8,15,1.645495589270695,13.0,9.728170513952913,16.861673924161746,0,0,0,0,0,0,0,0.6454955892706951,0.0,0.0,0.0,3.2852542372881355,2.18,1.18,1.19,2.2382135922330098,1.55,2.21,1.4950057971014494,3.420421348314607,2.145861365953109,2.2652427893391747 -2020,8,22,8,10,7,9,13,10,15,1.0,13.0,10.026373203101521,18.951013063491146,0,0,0,0,0,0,0,1.2909911785413901,0.0,0.0,0.0,3.188775510204082,2.12,1.22,1.3,2.1590676156583632,1.6,2.11,1.576480411046885,2.7260832625318607,2.1,2.210674268715915 -2020,8,23,8,10,10,12,14,11,16,1.7090088214586099,12.0,9.941658264788849,19.723347848323492,0,0,0,0,0,0,0,1.9364867678120852,0.0,0.0,0.0,3.188775510204082,2.12,1.22,1.3,2.1590676156583632,1.6,2.11,1.576480411046885,2.7260832625318607,2.1,2.210674268715915 -2020,8,24,11,12,13,13,15,13,16,1.354504410729305,12.0,10.667002423345481,21.040352202820543,0,0,0,0,0,0,0,1.9364867678120852,0.0,0.0,0.0,3.188775510204082,2.12,1.22,1.3,2.1590676156583632,1.6,2.11,1.576480411046885,2.7260832625318607,2.1,2.210674268715915 -2020,8,25,11,12,13,13,16,13,17,1.0,11.0,10.922377666780221,19.812686987652892,0,0,0,0,0,0,0,2.5819823570827802,0.0,0.06923745977145236,0.0,3.3669192339716902,2.38,1.61,1.92,2.41872797593468,1.91,2.42,1.9239337539432175,3.1316034985422743,2.3266,2.4390996643805636 -2020,8,26,2,4,12,13,15,15,17,1.0,11.0,10.153327439759156,19.812686987652892,1,1,0,0,0,0,0,1.9364867678120852,0.0,0.0,0.0,3.6896794871794873,2.36,1.48,1.7,2.4039448966812773,1.64,2.44,1.8955855855855854,3.9525516403402183,2.33,2.397355416779799 -2020,8,27,1,9,14,12,16,15,17,1.0,10.0,8.796267152520336,20.268017417988194,3,0,0,0,0,0,0,1.2909911785413901,0.0,0.06923745977145236,0.0,3.570271739130434,2.31,1.51,2.05,2.3536521739130434,1.59,2.39,2.069614233455271,3.5146415094339623,2.29,2.3392036111558925 -2020,8,28,4,9,13,12,17,14,21,1.354504410729305,9.0,6.253595898622627,19.495682633155845,0,0,0,0,0,0,0,1.2909911785413901,0.0,0.10602733551027468,0.0,3.446883720930232,2.27,1.32,1.57,2.28191673212883,1.54,2.29,1.7760233430596082,3.1052169720347154,2.25,2.392250712250712 -2020,8,29,4,9,8,5,16,15,21,0.0,8.0,5.217191518934046,17.723347848323492,1,0,0,0,0,0,0,2.9364867678120854,0.0,0.47457461533028567,0.0,3.37788662969809,2.18,1.16,1.11,2.189604205318491,1.47,2.24,1.5509870503597123,2.8225806451612905,2.134013096351731,2.294088405397962 -2020,8,30,3,4,1,3,14,13,19,0.0,7.0,4.967189656095872,13.634008708994095,1,0,1,1,0,0,0,5.645495589270695,0.0,0.8630349028365898,0.0,3.37788662969809,2.18,1.16,1.11,2.189604205318491,1.47,2.24,1.5509870503597123,2.8225806451612905,2.134013096351731,2.294088405397962 -2020,8,31,0,1,3,3,12,14,20,0.0,7.0,2.5911717264854253,12.634008708994095,3,1,0,1,0,0,0,5.29099117854139,0.0,5.0366853657407304,0.0,3.37788662969809,2.18,1.16,1.11,2.189604205318491,1.47,2.24,1.5509870503597123,2.8225806451612905,2.134013096351731,2.294088405397962 -2020,9,1,1,3,5,3,14,14,19,2.0635132321879146,7.0,2.382026267355681,13.495682633155843,1,0,1,2,0,0,0,0.6454955892706951,0.0,4.086614460069571,0.0,2.9404325032765404,2.06,1.33,1.41,2.10820556745182,1.54,2.23,1.8230840136950224,2.360671586715867,2.037351046698873,2.1316269401330374 -2020,9,2,1,7,8,6,16,15,16,3.127026464375829,7.0,3.511554405032733,14.040352202820541,1,0,0,0,0,0,0,0.0,0.0,1.2565786050520045,0.0,2.848117073170732,2.07,1.44,1.49,2.110764163372859,1.51,2.2,1.8239547761882786,2.41089061566049,2.04,2.143249249249249 -2020,9,3,7,9,7,5,17,15,16,5.481530875105134,9.0,4.590862272444763,16.49568263315584,0,0,0,1,0,0,0,0.0,0.0,0.5481543668079303,0.0,3.0530056179775285,2.16,1.57,1.89,2.2500255754475704,1.71,2.35,1.8711678435632808,2.492518703241896,2.1251194968553455,2.2197261530398325 -2020,9,4,7,8,1,3,16,13,15,4.354504410729305,12.0,6.854848986873964,18.268017417988194,0,0,1,2,0,0,0,0.0,0.0,0.0,0.0,3.8586193485658726,2.19,1.54,1.82,2.311640091116173,1.64,2.44,2.0462735849056606,3.507688139674895,2.1716701902748414,2.2543079608001073 -2020,9,5,1,2,2,5,12,9,15,2.0,16.0,9.047623059885884,19.812686987652892,1,1,1,1,0,0,0,1.9364867678120852,0.0,0.0,0.0,5.260072202166065,1.98,1.33,1.4,2.1869573520050922,1.35,2.25,1.647215297450425,5.14814465408805,1.9596446700507615,1.9506608695652174 -2020,9,6,2,2,2,9,9,8,15,3.0635132321879146,18.0,9.632426809406562,19.268017417988194,1,1,1,0,0,0,0,0.6454955892706951,0.0,0.06923745977145236,0.0,5.260072202166065,1.98,1.33,1.4,2.1869573520050922,1.35,2.25,1.647215297450425,5.14814465408805,1.9596446700507615,1.9506608695652174 -2020,9,7,3,3,4,6,9,9,16,3.4180176429172198,16.0,5.800562188639336,19.268017417988194,0,0,0,5,0,0,0,0.0,0.0,1.3770788875983824,0.0,5.260072202166065,1.98,1.33,1.4,2.1869573520050922,1.35,2.25,1.647215297450425,5.14814465408805,1.9596446700507615,1.9506608695652174 -2020,9,8,5,6,4,2,10,10,15,1.354504410729305,9.0,1.7865197005167608,12.723347848323494,0,0,4,11,0,0,0,1.645495589270695,0.0,14.780437613485855,0.22766521516765068,5.260072202166065,1.98,1.33,1.4,2.1869573520050922,1.35,2.25,1.647215297450425,5.14814465408805,1.9596446700507615,1.9506608695652174 -2020,9,9,6,6,4,1,11,11,12,2.70900882145861,6.0,0.19850218894630675,4.634008708994096,0,0,4,14,0,0,1,1.0,0.0,17.076129769956363,4.41497822751476,3.008828828828829,1.97,1.72,1.79,1.9405737199259716,2.35,2.08,1.9391623036649213,2.1372707581227437,1.9537181996086104,2.107985767699916 -2020,9,10,7,8,3,1,14,12,7,3.29099117854139,3.0,0.3970043778926135,4.634008708994096,0,0,4,12,0,0,3,0.35450441072930494,0.0,14.426026950842152,4.41497822751476,3.0709624911535744,1.95,1.59,1.69,1.9281359223300971,2.4,1.98,1.9035714285714287,2.126426718547341,1.9025256673511295,2.0481976564909035 -2020,9,11,3,5,1,1,14,13,8,0.0,4.0,0.794008755785227,3.8616739241617464,1,1,3,9,0,0,1,1.7090088214586099,0.0,9.290765793349026,3.048986936508856,2.730407885791978,1.9,1.37,1.44,1.8084788732394366,2.08,1.86,1.6546881091617933,1.8695594020456334,1.8568464419475654,1.9939795647558385 -2020,9,12,0,1,3,1,12,13,12,0.0,6.0,1.3895153226241472,6.951013063491144,6,3,1,4,0,0,0,5.29099117854139,0.0,4.731692392621072,0.9106608606706027,2.437777777777778,1.77,1.19,1.21,1.6758342189160464,1.4,1.69,1.53883286908078,1.678917748917749,1.7139629915188896,1.841029678982435 -2020,9,13,0,1,3,1,11,12,13,0.0,6.0,2.429722821780138,9.268017417988192,4,1,0,2,0,0,0,5.58198235708278,0.0,3.165194387641148,0.682995645502952,2.437777777777778,1.77,1.19,1.21,1.6758342189160464,1.4,1.69,1.53883286908078,1.678917748917749,1.7139629915188896,1.841029678982435 -2020,9,14,2,2,0,1,11,11,12,0.0,7.0,2.477155967702398,10.81268698765289,1,1,3,2,0,0,0,4.227477946353475,0.0,1.8198845014857168,0.682995645502952,2.437777777777778,1.77,1.19,1.21,1.6758342189160464,1.4,1.69,1.53883286908078,1.678917748917749,1.7139629915188896,1.841029678982435 -2020,9,15,0,0,1,2,8,8,13,0.0,7.0,2.6388682809098825,11.81268698765289,11,10,3,1,1,0,0,0.0,0.0,1.4145473459268836,0.22766521516765068,2.9218469860896445,1.93,1.39,1.3,1.977977223427332,1.54,2.13,1.735573033707865,2.206554487179487,1.8720278969957083,2.035520972283978 -2020,9,16,0,0,1,2,7,6,14,0.0,9.0,2.7195927332625263,12.81268698765289,7,7,1,2,1,0,0,0.6454955892706951,0.0,2.7572833310629,0.22766521516765068,2.8522051773729626,1.91,1.25,1.36,1.9184105960264901,1.38,2.16,1.5358027859237537,2.183793103448276,1.870871518418688,2.0685213462137737 -2020,9,17,0,0,0,1,7,9,13,0.0,8.0,2.6388682809098825,13.357356557317589,2,4,4,7,1,0,0,1.645495589270695,0.0,1.9833988956840554,0.22766521516765068,2.8348802395209582,1.89,1.06,1.27,2.0146722454672243,1.28,2.34,1.4660351966873706,2.2941640178003815,1.8466233766233766,1.943580380002695 -2020,9,18,0,0,0,0,9,5,10,0.0,8.0,2.8003171856151696,12.58502177248524,5,4,9,8,0,0,0,5.354504410729305,0.0,2.716766377866247,0.22766521516765068,2.692705410821643,1.64,1.03,0.94,1.7935141651597348,1.22,2.04,1.3856993006993006,1.9842679558011052,1.6070411985018727,1.71387055348658 -2020,9,19,0,0,0,0,6,2,7,0.0,6.0,2.5911717264854253,11.58502177248524,14,14,13,7,3,2,0,5.0,0.0,3.056966291927313,0.22766521516765068,2.4073263157894735,1.45,0.74,0.98,1.5081163084702909,1.19,1.92,1.1336999321113375,1.644519906323185,1.401221098265896,1.5424744823563723 -2020,9,20,0,0,0,0,4,2,5,0.0,6.0,2.562714628412823,11.81268698765289,16,14,10,4,4,2,0,4.0,0.0,3.8108649893225937,0.22766521516765068,2.4073263157894735,1.45,0.74,0.98,1.5081163084702909,1.19,1.92,1.1336999321113375,1.644519906323185,1.401221098265896,1.5424744823563723 -2020,9,21,0,0,0,1,4,1,4,0.0,5.0,2.562714628412823,12.58502177248524,15,13,7,1,5,2,0,6.290991178541391,0.0,2.9854808800518815,0.0,2.4073263157894735,1.45,0.74,0.98,1.5081163084702909,1.19,1.92,1.1336999321113375,1.644519906323185,1.401221098265896,1.5424744823563723 -2020,9,22,0,0,0,1,4,1,5,0.0,6.0,2.194167348592812,12.040352202820541,14,11,5,1,5,4,0,4.645495589270695,0.0,2.8412305889873974,0.22766521516765068,2.624805447470817,1.45,0.69,0.81,1.73319719208679,1.31,2.17,0.9516227951153324,1.9517076808351974,1.4158523840627042,1.337900878293601 -2020,9,23,0,0,0,1,4,2,6,0.0,6.0,1.9956651596465051,12.495682633155843,5,4,2,1,2,3,0,5.936486767812085,0.0,1.375832473721085,0.22766521516765068,2.8,1.5,1.08,1.15,1.7902043199065965,1.45,2.18,1.2444822997072134,1.9154231119199274,1.4871263259402123,1.4196363636363636 -2020,9,24,0,0,0,2,4,1,6,0.0,6.0,2.0324550353853277,11.723347848323494,2,3,1,2,2,3,0,7.645495589270695,0.0,1.8055478441485258,0.0,3.0786366985998526,1.74,1.12,1.3,1.9271428571428573,1.57,2.42,1.3824204887847338,2.135302491103203,1.7214382632293077,1.7100660273541894 -2020,9,25,0,0,1,4,6,2,7,0.0,5.0,2.3642124394665163,12.723347848323494,1,1,0,1,1,0,0,10.354504410729305,0.0,3.3163915684568828,0.0,3.204220532319392,1.89,0.95,1.38,1.944193548387097,1.63,2.51,1.2225338714326894,2.270050251256281,1.8413568985176738,1.8877945113788486 -2020,9,26,0,1,2,5,8,5,9,0.0,5.0,1.956564791390465,13.178678278658793,1,1,0,1,0,0,0,10.936486767812085,0.0,4.476504834112827,0.0,3.2252860169491524,1.67,0.89,1.03,1.7310672210672209,1.3,2.59,1.2132654340332183,2.0660764430577223,1.6201112759643916,1.7433286358511837 -2020,9,27,3,3,3,1,8,6,12,0.0,6.0,1.588017511570454,11.951013063491144,0,0,0,4,0,0,0,8.29099117854139,0.0,10.826636637078428,0.22766521516765068,3.2252860169491524,1.67,0.89,1.03,1.7310672210672209,1.3,2.59,1.2132654340332183,2.0660764430577223,1.6201112759643916,1.7433286358511837 -2020,9,28,6,6,1,0,10,5,6,0.0,9.0,1.1910131336778405,10.040352202820541,0,0,5,10,0,0,1,4.872973535624171,0.0,13.342775789370513,1.8213217213412054,3.2252860169491524,1.67,0.89,1.03,1.7310672210672209,1.3,2.59,1.2132654340332183,2.0660764430577223,1.6201112759643916,1.7433286358511837 -2020,9,29,4,3,0,0,9,0,1,1.4180176429172198,11.0,1.3895153226241472,10.040352202820541,0,1,12,9,1,5,1,2.29099117854139,0.0,8.233036661228454,1.5936565061735548,3.0521064301552108,1.53,1.24,1.41,1.7683395383469842,1.79,2.53,1.5430734509643005,2.066307129798903,1.5071933471933472,1.6908495394063459 -2020,9,30,2,0,0,0,3,0,3,0.7090088214586099,12.0,1.3895153226241472,10.81268698765289,0,4,9,8,2,4,0,1.9364867678120852,0.0,7.491935120753629,0.682995645502952,4.1463744520976835,1.35,1.16,1.21,1.87288765088208,1.47,2.7,1.354703196347032,3.339014404852161,1.302204020848846,1.5683981403212173 -2020,10,1,0,0,0,0,3,0,3,0.7090088214586099,13.0,1.588017511570454,10.81268698765289,3,5,13,14,1,4,1,1.9364867678120852,0.0,8.897485499635808,0.682995645502952,3.60400479616307,1.43,1.01,1.01,1.8538950276243091,1.34,2.3,1.1804216867469879,2.2366579120157586,1.4403154263183833,1.487958133971292 -2020,10,2,0,0,0,0,2,0,2,0.7090088214586099,12.0,1.588017511570454,10.81268698765289,8,9,18,18,4,10,2,1.9364867678120852,0.0,7.265819556132474,0.682995645502952,3.2872380952380946,1.26,0.62,0.73,1.5753973699256718,0.9,2.04,0.9014128402243923,2.1620000000000004,1.29,1.2935043831515929 -2020,10,3,0,0,0,0,3,0,2,0.35450441072930494,11.0,1.3895153226241472,10.81268698765289,12,12,17,18,6,9,1,3.8729735356241703,0.0,8.093078476691309,0.9106608606706027,2.131749049429658,1.06,0.8,0.87,1.0374988268418581,0.96,1.3,0.933270649845275,1.6178796361091672,1.0373433874709976,1.1190611750454271 -2020,10,4,0,0,0,0,3,0,3,0.0,9.0,1.3895153226241472,10.040352202820541,13,13,15,17,5,6,1,6.227477946353475,0.0,5.895470195321607,0.9106608606706027,2.131749049429658,1.06,0.8,0.87,1.0374988268418581,0.96,1.3,0.933270649845275,1.6178796361091672,1.0373433874709976,1.1190611750454271 -2020,10,5,0,0,0,0,4,0,3,0.0,8.0,1.3895153226241472,10.268017417988192,10,10,17,11,4,7,1,4.936486767812085,0.0,5.8093221771935495,0.45533043033530135,2.131749049429658,1.06,0.8,0.87,1.0374988268418581,0.96,1.3,0.933270649845275,1.6178796361091672,1.0373433874709976,1.1190611750454271 -2020,10,6,0,0,0,0,5,1,5,0.0,6.0,1.3895153226241472,10.268017417988192,9,9,9,4,3,4,0,3.5819823570827802,0.0,4.751236399131898,0.22766521516765068,3.106929674099485,1.46,1.16,1.14,1.6250114311842707,1.36,3.66,1.399378673383711,2.3446129032258063,1.4132806539509537,1.60870875 -2020,10,7,0,0,0,2,7,2,7,0.0,5.0,1.1910131336778405,10.268017417988192,4,5,3,3,1,1,0,3.936486767812085,0.0,4.663981250103889,0.22766521516765068,3.116584269662921,1.52,1.16,1.17,1.677178166838311,1.4,3.27,1.5155807597704292,2.7883715724678235,1.48,1.770160755294718 -2020,10,8,0,0,0,2,7,2,7,0.0,1.0,0.9925109447315338,9.495682633155843,10,10,9,6,1,1,0,6.645495589270695,1.0,4.9434712999050365,0.22766521516765068,2.835871104815864,1.55,1.18,1.18,1.5962937853107344,1.43,1.97,1.4795085536547434,2.1991985203452526,1.5364726840855107,1.8040535108654692 -2020,10,9,0,0,0,2,6,3,9,0.0,0.0,0.794008755785227,7.951013063491144,16,11,4,2,3,1,0,6.290991178541391,1.0,5.027368372650682,0.22766521516765068,3.0033025099075297,1.17,0.62,0.66,1.1569555302166479,0.84,2.0,0.9112142727107226,1.6344817300521997,1.1562512462612162,1.3243169912693082 -2020,10,10,0,0,1,2,7,3,10,0.0,0.0,0.3970043778926135,6.406343493826445,5,5,2,4,1,1,0,11.354504410729305,2.0,6.370321720750431,0.45533043033530135,2.7443789664551224,1.24,0.52,0.6,1.2608613569321534,0.86,1.48,0.91012599160056,1.5305882352941176,1.207455621301775,1.5817542372881355 -2020,10,11,0,0,1,3,8,5,12,0.0,1.0,0.794008755785227,5.634008708994096,7,6,4,3,0,0,0,15.0,1.0,10.998258230385254,0.682995645502952,2.7443789664551224,1.24,0.52,0.6,1.2608613569321534,0.86,1.48,0.91012599160056,1.5305882352941176,1.207455621301775,1.5817542372881355 -2020,10,12,0,0,1,0,8,7,10,0.0,5.0,0.794008755785227,6.951013063491144,16,12,4,6,1,0,0,12.645495589270695,0.0,13.042083074685419,1.1383260758382534,2.7443789664551224,1.24,0.52,0.6,1.2608613569321534,0.86,1.48,0.91012599160056,1.5305882352941176,1.207455621301775,1.5817542372881355 -2020,10,13,0,0,0,0,7,2,5,0.0,7.0,0.794008755785227,8.495682633155843,14,10,10,9,1,3,0,12.936486767812085,0.0,11.207845420987734,0.9106608606706027,3.454016620498615,1.75,1.11,1.33,1.8391648822269806,1.61,1.82,1.5045040741781401,3.1692307692307695,1.7166859983429992,2.115773156899811 -2020,10,14,0,0,0,0,5,0,7,0.0,8.0,0.794008755785227,8.723347848323494,9,10,9,7,2,3,0,13.645495589270695,0.0,10.623393477213224,0.45533043033530135,4.1408490566037734,1.93,1.22,1.29,1.92989674344718,1.48,2.21,1.5814052953156823,3.380394996708361,1.874976265822785,2.0884214701216286 -2020,10,15,0,0,0,0,5,1,7,0.0,9.0,0.5955065668389202,7.723347848323493,9,6,11,18,1,3,1,15.936486767812085,0.0,18.086960725066294,0.9106608606706027,3.7893391030684502,2.05,1.18,1.27,2.084820378837361,1.58,2.51,1.5202034466251795,2.9336672524897485,2.0337115588547188,2.09824427480916 -2020,10,16,0,0,0,0,5,0,1,0.0,9.0,0.5955065668389202,8.495682633155843,7,10,21,22,3,9,4,12.936486767812085,0.0,16.988078090431017,2.276652151676507,3.8880727923627685,2.2,1.49,1.49,2.29562030075188,1.53,2.53,1.7725342465753424,3.3040694789081884,2.1942089985486213,2.2165511155930924 -2020,10,17,0,0,0,0,4,0,1,0.0,8.0,0.5955065668389202,6.951013063491144,16,17,19,17,8,12,2,11.581982357082781,0.0,13.884526387246037,1.1383260758382534,3.3406661115736886,2.14,1.24,1.3,2.0949601471489885,1.79,2.39,1.5496856993190153,2.7895085255767302,2.1379752066115705,2.161454352441613 -2020,10,18,0,0,0,0,4,0,7,0.0,5.0,0.794008755785227,5.406343493826445,19,17,16,25,7,8,1,12.581982357082781,0.0,15.837289969772346,0.9106608606706027,3.3406661115736886,2.14,1.24,1.3,2.0949601471489885,1.79,2.39,1.5496856993190153,2.7895085255767302,2.1379752066115705,2.161454352441613 -2020,10,19,0,0,0,0,4,2,7,0.0,4.0,0.794008755785227,5.406343493826445,16,13,21,28,4,3,3,11.936486767812086,0.0,13.645948976575815,0.682995645502952,3.3406661115736886,2.14,1.24,1.3,2.0949601471489885,1.79,2.39,1.5496856993190153,2.7895085255767302,2.1379752066115705,2.161454352441613 -2020,10,20,0,0,0,0,5,3,9,0.0,4.0,0.5955065668389202,6.178678278658794,11,6,17,25,1,1,1,13.936486767812085,0.0,12.809743274151124,0.682995645502952,3.134596848934198,2.4,1.17,1.33,2.3100361532899494,1.97,2.84,1.455244103126714,2.825487804878049,2.447855808741128,2.4077987137538077 -2020,10,21,0,0,0,0,6,5,10,0.0,2.0,0.19850218894630675,5.406343493826445,5,3,13,22,0,0,0,17.936486767812085,0.0,12.624976029889988,0.9106608606706027,3.872461669505963,2.69,1.46,1.54,2.643181818181818,2.19,3.3,1.9227466199298948,3.492447844228095,2.690096495683088,2.672678055520663 -2020,10,22,1,0,1,0,7,6,11,0.0,0.0,0.3970043778926135,4.634008708994096,2,2,7,17,0,0,0,23.645495589270695,1.0,20.095446287306203,0.9106608606706027,3.9314522363335174,2.7,1.0,0.88,2.688490136570562,1.85,3.77,1.6754009862444847,3.322689969604863,2.713078880407125,2.757482185273159 -2020,10,23,0,0,1,0,6,6,7,0.0,0.0,0.0,3.8616739241617464,5,1,6,26,0,0,3,24.872973535624173,3.0,27.800343169819445,3.048986936508856,3.883854024556616,2.91,0.77,0.84,2.95235046728972,1.54,3.53,1.5842941032542208,3.3697171863669326,2.9658306636155607,2.864932682154171 -2020,10,24,0,0,0,0,6,1,1,0.0,0.0,0.0,3.8616739241617464,5,5,23,32,0,8,9,23.581982357082783,5.0,24.243407160953744,3.048986936508856,3.7228779304769604,2.9,1.17,1.09,2.963937224669604,2.37,3.67,1.6577947771036665,3.125606326889279,3.109956236323851,2.8192398022249687 -2020,10,25,0,0,0,0,5,1,2,0.0,0.0,0.0,2.317004354497048,20,20,23,33,5,6,7,28.29099117854139,8.0,32.52923015999328,2.365991291005904,3.7228779304769604,2.9,1.17,1.09,2.963937224669604,2.37,3.67,1.6577947771036665,3.125606326889279,3.109956236323851,2.8192398022249687 -2020,10,26,0,0,0,0,5,2,4,0.0,0.0,0.0,0.0,19,16,24,37,3,6,10,27.936486767812085,10.0,42.577780499325975,12.64264344268241,3.7228779304769604,2.9,1.17,1.09,2.963937224669604,2.37,3.67,1.6577947771036665,3.125606326889279,3.109956236323851,2.8192398022249687 -2020,10,27,0,0,0,0,6,2,1,0.0,0.0,0.0,0.0,15,13,25,36,2,4,17,21.936486767812085,8.0,35.722275793414624,22.780969518520664,3.8679403794037936,3.04,1.87,2.01,3.3476686283386146,3.24,3.54,2.343157386546508,3.7386150712830957,4.528374471086036,2.9978666666666665 -2020,10,28,0,0,0,0,6,3,1,0.0,0.0,0.0,0.0,19,13,21,29,1,4,15,16.58198235708278,4.0,27.13249734251009,17.87030865785006,4.012009377093102,2.96,1.88,1.83,3.366872171945701,2.59,3.6,2.424184687317358,3.838393870601589,2.9988460054033195,2.982997911291313 -2020,10,29,0,0,0,0,9,2,0,0.0,0.0,0.0,0.0,21,16,21,28,1,3,14,13.936486767812085,2.0,20.422057799951812,11.414978227514759,3.918387096774193,2.97,2.13,2.37,3.0842528735632184,4.79,3.34,2.5005890873973926,3.308252974326863,2.9686640798226165,2.989928385416667 -2020,10,30,0,0,0,0,3,0,0,0.0,1.0,0.0,0.7723347848323493,28,24,26,24,6,14,11,16.645495589270695,2.0,17.718517955244373,5.41497822751476,3.757569634079738,2.89,1.89,2.42,2.9885831062670296,6.92,3.44,2.392825209562248,3.129214939024391,2.851330798479087,2.9025870332996973 -2020,10,31,0,0,0,0,3,0,0,0.0,1.0,0.0,0.7723347848323493,31,27,23,18,10,13,9,19.936486767812085,1.0,18.159860811279078,4.276652151676506,3.757569634079738,2.89,1.89,2.42,2.9885831062670296,6.92,3.44,2.392825209562248,3.129214939024391,2.851330798479087,2.9025870332996973 -2020,11,1,0,0,0,0,4,0,0,0.0,2.0,0.0,3.089339139329397,25,23,24,26,7,11,6,17.87297353562417,1.0,16.169300719845253,3.504317366844157,3.4992209237618255,2.93,1.2,2.48,2.855280082987552,4.02,3.1,1.965431574691732,2.835821744627054,2.8834363957597176,2.939646270146912 -2020,11,2,0,0,0,0,2,0,0,0.0,2.0,0.19850218894630675,5.406343493826445,27,26,27,21,14,21,9,15.16396471416556,1.0,13.461744532347055,2.731982582011808,3.4992209237618255,2.93,1.2,2.48,2.855280082987552,4.02,3.1,1.965431574691732,2.835821744627054,2.8834363957597176,2.939646270146912 -2020,11,3,0,0,0,0,1,0,0,0.0,1.0,0.19850218894630675,4.634008708994096,27,22,17,12,11,16,7,16.227477946353474,1.0,11.907289187061881,3.048986936508856,3.9454306808859725,2.84,1.61,1.8,2.9512515566625157,4.14,3.34,2.0656053811659194,3.463296763576522,2.764286759326993,2.86921853947723 -2020,11,4,0,0,0,0,2,0,0,0.0,2.0,0.0,3.8616739241617464,23,17,10,9,9,11,4,10.936486767812085,1.0,10.896645916878441,2.593656506173555,3.9771250000000005,2.64,1.04,1.21,2.9392238648363254,2.59,3.4,1.7023220605583957,4.074342001576044,2.602680265654649,2.68208115942029 -2020,11,5,0,0,0,0,3,0,1,0.0,3.0,0.0,4.634008708994096,14,13,7,9,7,9,2,11.29099117854139,1.0,10.404837787554548,2.365991291005904,3.9956745707277186,2.38,0.91,0.62,2.664252407501267,1.47,3.18,1.3975857812885708,3.682979482604817,2.3662585616438356,2.44388315629742 -2020,11,6,0,0,0,0,3,0,1,0.0,0.0,0.19850218894630675,3.8616739241617464,7,9,8,7,4,6,1,21.0,5.0,12.552522897465503,2.821321721341205,3.685329206527856,2.19,0.49,0.53,2.6559988419224085,1.32,3.02,0.9551195219123506,2.7412453669384735,2.1608450170519133,2.4176663669064746 -2020,11,7,0,0,0,0,4,0,1,0.0,0.0,0.0,0.7723347848323493,6,8,7,6,3,4,1,27.29099117854139,16.0,15.084253718686725,2.821321721341205,3.5992172897196264,1.96,0.3,0.27,2.4276596947427924,1.27,3.03,0.7144121017648407,2.6919984139571764,1.9695568321707018,2.197434081070445 -2020,11,8,0,0,0,0,4,2,2,0.0,0.0,0.0,0.0,9,8,5,4,2,1,0,28.354504410729305,18.0,25.86788025638003,14.544669569664698,3.5992172897196264,1.96,0.3,0.27,2.4276596947427924,1.27,3.03,0.7144121017648407,2.6919984139571764,1.9695568321707018,2.197434081070445 -2020,11,9,0,0,0,0,5,3,6,0.0,0.0,0.0,0.0,10,8,2,6,2,0,0,32.0,20.0,33.611888079154,17.5446695696647,3.5992172897196264,1.96,0.3,0.27,2.4276596947427924,1.27,3.03,0.7144121017648407,2.6919984139571764,1.9695568321707018,2.197434081070445 -2020,11,10,0,0,1,1,6,3,6,0.0,0.0,0.0,0.0,9,7,2,23,1,0,1,29.0,18.0,35.24580496803975,20.821321721341207,3.777861386138614,2.31,0.32,0.41,2.859628770301624,1.02,3.15,0.862838512763596,3.228410480349345,2.3629542302357835,2.4564339328706986 -2020,11,11,0,0,0,0,7,3,3,0.0,0.0,0.0,0.0,6,6,18,30,1,2,5,26.936486767812085,16.0,33.89273516676096,18.276652151676508,3.8412765957446813,2.52,1.14,1.07,2.9076771929824563,1.31,3.42,1.4813590216889707,3.017786259541985,2.5226209279368215,2.6062911931818182 -2020,11,12,0,0,0,0,6,1,2,0.0,0.0,0.0,0.0,7,10,24,30,1,8,3,28.0,14.0,33.84191929777433,16.048986936508854,3.746386768447837,2.56,1.48,1.44,2.883412698412698,1.9,3.25,1.842674364896074,3.4019399538106234,2.5599999999999996,2.6892087462639607 -2020,11,13,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,22,20,27,34,4,10,5,24.70900882145861,14.0,30.39145948881046,13.048986936508857,3.5971428571428574,2.66,1.83,1.8,2.7799338186631375,2.66,3.18,2.109015719467956,2.9909411764705878,2.6233678057553957,2.739850871313673 -2020,11,14,0,0,0,0,3,0,5,0.0,0.0,0.0,0.0,24,22,27,26,8,9,2,25.0,12.0,29.3771258247517,11.821321721341205,3.589156736938589,2.66,1.67,1.62,2.824884758364312,2.5,3.24,1.9606009473060981,2.808893188854489,2.636320564516129,2.701998991257566 -2020,11,15,0,0,0,0,4,0,2,0.0,0.0,0.0,0.0,24,20,21,25,5,7,4,22.645495589270695,8.0,27.32276120127779,9.959647797179459,3.589156736938589,2.66,1.67,1.62,2.824884758364312,2.5,3.24,1.9606009473060981,2.808893188854489,2.636320564516129,2.701998991257566 -2020,11,16,0,0,0,0,3,0,0,0.0,1.0,0.0,0.0,22,21,25,26,9,17,9,19.87297353562417,4.0,21.315305836313396,5.18731301234711,3.589156736938589,2.66,1.67,1.62,2.824884758364312,2.5,3.24,1.9606009473060981,2.808893188854489,2.636320564516129,2.701998991257566 -2020,11,17,0,0,0,0,2,0,0,0.0,0.0,0.0,2.317004354497048,26,27,29,29,12,18,9,17.29099117854139,6.0,17.7240606152894,3.959647797179459,3.420663900414937,2.44,1.62,2.24,2.4851205510907004,4.47,3.26,2.068408979990239,2.7609152542372883,2.41,2.479423701298701 -2020,11,18,0,0,0,0,1,0,0,0.0,0.0,0.0,2.317004354497048,35,33,28,21,16,19,7,22.0,10.0,16.92513670525512,3.276652151676507,3.3567791411042944,2.3,1.66,2.48,2.3977748167888078,4.71,3.44,2.2329598662207357,2.5504832977967307,2.277801740446462,2.3583784156776155 -2020,11,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7723347848323493,34,29,16,13,15,14,2,23.354504410729305,10.0,19.1493272734093,2.365991291005904,3.500343137254902,2.08,1.35,1.57,2.297984901277584,2.68,3.32,1.6778863409770688,2.4699999999999998,2.0871460014673513,2.1661790083708947 -2020,11,20,0,0,0,0,2,0,2,0.0,0.0,0.0,0.7723347848323493,20,19,12,19,10,9,1,24.063513232187915,11.0,25.899096902421736,4.048986936508856,3.383357363542739,2.05,1.41,1.48,2.3206640624999997,2.1,3.26,1.704889555494955,2.5592054574638845,1.98,2.0443708308065496 -2020,11,21,0,0,0,0,2,0,2,0.0,0.0,0.0,0.7723347848323493,16,17,23,27,7,8,2,24.70900882145861,9.0,27.71558027536506,4.276652151676506,3.3327397260273965,2.16,1.69,1.76,2.2444006309148268,2.28,3.18,1.8874439977024697,2.337671589921807,2.1071802618328297,2.1115861344537814 -2020,11,22,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,25,20,26,26,7,9,5,27.645495589270695,10.0,30.446347999697107,5.41497822751476,3.3327397260273965,2.16,1.69,1.76,2.2444006309148268,2.28,3.18,1.8874439977024697,2.337671589921807,2.1071802618328297,2.1115861344537814 -2020,11,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,20,19,27,33,8,17,9,26.0,14.0,28.976453916536062,7.504317366844157,3.3327397260273965,2.16,1.69,1.76,2.2444006309148268,2.28,3.18,1.8874439977024697,2.337671589921807,2.1071802618328297,2.1115861344537814 -2020,11,24,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,28,26,29,28,14,17,5,24.0,13.0,30.493436791225896,12.821321721341207,3.6734782608695653,2.22,1.83,2.19,2.603496042216359,3.69,3.18,1.9779357484620643,2.867871621621622,2.1970252893270468,2.1741451946586423 -2020,11,25,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,28,22,22,27,10,11,7,26.354504410729305,15.0,31.84262252714601,16.276652151676508,3.4937188872620792,2.23,1.66,1.64,2.6004844540853216,2.25,3.13,1.8889294489294488,2.9021069868995633,2.243917364016737,2.2278676592224977 -2020,11,26,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,20,14,20,26,4,10,7,25.0,16.0,33.988076179827765,16.821321721341207,3.440250817884406,2.35,1.38,1.35,2.4192109777015434,2.1,2.93,1.6483075335397321,2.6442750929368026,2.2112667261373775,2.2198593715666886 -2020,11,27,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,19,16,23,28,6,13,7,23.70900882145861,14.0,33.87199493155168,20.048986936508854,3.440250817884406,2.35,1.38,1.35,2.4192109777015434,2.1,2.93,1.6483075335397321,2.6442750929368026,2.2112667261373775,2.2198593715666886 -2020,11,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,19,26,25,8,15,10,24.354504410729305,13.0,32.30171030197912,18.73198258201181,3.440250817884406,2.35,1.38,1.35,2.4192109777015434,2.1,2.93,1.6483075335397321,2.6442750929368026,2.2112667261373775,2.2198593715666886 -2020,11,29,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,24,25,29,11,18,14,25.58198235708278,12.0,34.085403647099604,17.18731301234711,3.440250817884406,2.35,1.38,1.35,2.4192109777015434,2.1,2.93,1.6483075335397321,2.6442750929368026,2.2112667261373775,2.2198593715666886 -2020,11,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,19,31,37,9,25,21,25.0,11.0,31.717119775781796,17.64264344268241,3.440250817884406,2.35,1.38,1.35,2.4192109777015434,2.1,2.93,1.6483075335397321,2.6442750929368026,2.2112667261373775,2.2198593715666886 -2020,12,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,14,20,35,36,21,31,21,28.0,10.0,34.34198225215161,17.41497822751476,4.01504414361389,2.65,2.06,2.49,3.043052464228935,2.73,3.21,2.6739569842738202,3.590765864332604,2.6126666666666662,2.781086258672466 -2020,12,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,28,32,34,21,29,18,25.29099117854139,10.0,37.771973386315636,21.87030865785006,3.7466560509554143,2.53,2.14,2.53,2.853416751787538,3.02,3.06,2.543261291889267,3.330531022917831,2.4771370967741935,2.6475653482961543 -2020,12,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,27,32,33,19,25,20,25.936486767812085,11.0,36.129664172628864,23.09797387301771,3.8432727272727276,2.61,2.09,2.35,2.94526185770751,2.71,3.23,2.4089695009242145,3.2453569482288827,2.5159390444810543,2.6644048096192385 -2020,12,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,21,24,28,29,14,22,19,23.936486767812085,12.0,33.06680373334424,21.959647797179457,3.6158037443511946,2.29,1.88,1.94,2.886587762393926,2.45,3.25,2.087362053703157,3.3376363636363635,2.224556427278214,2.3981034233713707 -2020,12,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,24,32,30,13,22,20,24.29099117854139,12.0,31.169595908048272,19.276652151676508,3.465181818181818,2.34,2.03,2.45,2.782093023255814,3.49,2.98,2.2489730807577266,2.9503032004491856,2.2599999999999993,2.401997920637671 -2020,12,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,30,34,31,17,23,15,24.0,12.0,30.0664777844288,16.504317366844155,3.465181818181818,2.34,2.03,2.45,2.782093023255814,3.49,2.98,2.2489730807577266,2.9503032004491856,2.2599999999999993,2.401997920637671 -2020,12,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,34,33,30,19,27,15,22.29099117854139,12.0,28.429347133493277,14.731982582011808,3.465181818181818,2.34,2.03,2.45,2.782093023255814,3.49,2.98,2.2489730807577266,2.9503032004491856,2.2599999999999993,2.401997920637671 -2020,12,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,34,33,27,23,27,12,19.936486767812085,8.0,26.939235492486965,11.18731301234711,3.312001725625539,2.19,1.82,2.3,2.6745705361790737,3.19,2.92,2.3277391304347828,2.940702898550725,2.136980627922512,2.2874919433935825 -2020,12,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,33,25,22,22,19,9,22.645495589270695,8.0,26.546492460409276,11.18731301234711,3.610233372228705,2.21,1.84,2.09,2.704729950900164,2.76,2.9,2.1418617460754614,2.973929225137279,2.16,2.270325897800981 -2020,12,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,24,23,17,15,8,28.645495589270695,14.0,32.42962289722986,17.73198258201181,3.7102648171500627,2.26,1.91,2.27,2.8844964226747387,2.79,3.12,2.1494107330761136,3.1722867383512545,2.233476368159204,2.3331387886081028 -2020,12,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,25,24,29,13,14,7,28.70900882145861,17.0,37.579831722981375,18.821321721341207,3.5254180985108814,2.26,1.9,2.02,2.749428571428571,2.49,3.13,2.1850858995137763,3.004052924791086,2.24,2.3215182481751824 -2020,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,23,22,33,10,10,12,30.29099117854139,18.0,41.11728327247107,19.959647797179457,3.6190211345939933,2.4,1.95,2.13,2.942041994750656,2.93,3.23,2.1978856624319416,3.112626086956521,2.362242268041237,2.446624679262888 -2020,12,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,18,31,38,6,17,15,29.645495589270695,16.0,43.210143621957336,23.95964779717946,3.6190211345939933,2.4,1.95,2.13,2.942041994750656,2.93,3.23,2.1978856624319416,3.112626086956521,2.362242268041237,2.446624679262888 -2020,12,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,28,34,46,10,23,24,26.645495589270695,18.0,42.30086243994098,24.41497822751476,3.6190211345939933,2.4,1.95,2.13,2.942041994750656,2.93,3.23,2.1978856624319416,3.112626086956521,2.362242268041237,2.446624679262888 -2020,12,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,34,40,45,19,27,24,25.354504410729305,18.0,39.49590095993165,24.73198258201181,3.9356896551724145,2.57,2.28,2.74,3.1625588361146773,6.05,3.37,2.517197731374065,3.8925199709513443,2.58,2.604578191891211 -2020,12,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,40,38,42,21,27,23,24.0,15.0,37.04682404560432,23.187313012347108,3.8375744680851067,2.54,2.18,4.16,3.2623455497382197,7.56,3.48,2.79230959752322,3.658488888888889,2.556882701962574,2.5997522287831423 -2020,12,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,39,36,38,21,29,22,23.70900882145861,17.0,34.98110043996735,22.731982582011806,4.075148514851485,2.53,2.18,5.44,3.0836324089178904,9.43,3.33,3.09738397598707,3.8287626546681666,2.5346707317073167,2.592172317628064 -2020,12,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,40,36,33,23,29,18,23.354504410729305,17.0,34.47144179917178,21.048986936508854,3.8269477911646588,2.52,2.23,5.35,2.945513454146074,11.87,3.16,3.669476211261458,3.3245049504950495,2.5340236353404615,2.5759591391141607 -2020,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,44,32,35,23,26,12,21.354504410729305,15.0,34.22583241321865,20.731982582011806,3.698297872340426,2.56,2.28,2.76,2.9558059701492536,7.21,3.06,2.579364303178484,3.0952534562211977,2.512481586402266,2.595410654827969 -2020,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,39,29,33,19,21,14,19.29099117854139,11.0,31.25053657700269,18.73198258201181,3.698297872340426,2.56,2.28,2.76,2.9558059701492536,7.21,3.06,2.579364303178484,3.0952534562211977,2.512481586402266,2.595410654827969 -2020,12,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,31,28,27,14,17,12,19.227477946353474,9.0,25.384465343472016,15.504317366844157,3.698297872340426,2.56,2.28,2.76,2.9558059701492536,7.21,3.06,2.579364303178484,3.0952534562211977,2.512481586402266,2.595410654827969 -2020,12,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,29,28,27,15,19,11,28.0,14.0,26.602774947431346,16.276652151676508,3.6247655068078672,2.48,2.39,2.9,2.9416974674880225,4.45,3.24,2.605035279025016,3.149566395663957,2.4336441893830707,2.5135325339099666 -2020,12,23,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,32,29,23,27,17,17,7,31.58198235708278,16.0,39.201810844291124,19.731982582011806,3.746938775510204,2.6,2.43,2.69,3.144030487804878,3.92,3.24,2.5894639258363563,3.2643548387096772,2.626252427184466,2.6298402804830543 -2020,12,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,21,38,52,11,23,22,31.58198235708278,16.0,38.67437015530721,25.41497822751476,3.6763084112149533,2.56,2.17,2.22,2.9642876526458615,2.85,3.07,2.4009775641025635,3.1254666666666666,2.5824612403100775,2.5952381646030585 -2020,12,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,15,20,49,47,25,39,20,28.936486767812085,13.0,33.91771923392197,20.64264344268241,3.745224171539961,2.47,2.29,3.12,2.9700341588385992,4.56,3.02,2.69338017565872,3.0332282793867122,2.452370321733421,2.492595169873107 -2020,12,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,40,42,39,30,33,16,26.29099117854139,15.0,31.54890854559976,17.73198258201181,3.745224171539961,2.47,2.29,3.12,2.9700341588385992,4.56,3.02,2.69338017565872,3.0332282793867122,2.452370321733421,2.492595169873107 -2020,12,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,36,34,35,24,24,10,25.645495589270695,17.0,32.646816326767166,17.276652151676508,3.745224171539961,2.47,2.29,3.12,2.9700341588385992,4.56,3.02,2.69338017565872,3.0332282793867122,2.452370321733421,2.492595169873107 -2020,12,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,30,34,41,18,20,10,29.29099117854139,21.0,39.55004643721213,16.048986936508854,3.745224171539961,2.47,2.29,3.12,2.9700341588385992,4.56,3.02,2.69338017565872,3.0332282793867122,2.452370321733421,2.492595169873107 -2020,12,29,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,31,32,39,42,17,21,7,31.0,20.0,38.936212727076,22.910660860670603,3.772331606217616,2.15,2.01,2.32,3.021234487263227,4.09,3.32,2.120358294518094,3.309524517087667,2.1299999999999994,2.121678451804987 -2020,12,30,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,34,33,33,39,17,14,8,28.0,18.0,41.976284637087595,24.73198258201181,3.750124269005848,2.27,2.05,2.3,2.8499237126509858,3.4,3.12,2.1935516542876434,3.2769828722002634,2.293165699548678,2.276692807957154 -2020,12,31,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,29,37,44,12,16,20,24.0,20.0,38.42096716392664,25.959647797179457,3.639528214616096,2.29,2.05,2.28,2.8832811626607047,2.82,3.02,2.2154274465691786,3.2320104438642296,2.315259467040673,2.3375637192083154 -2021,1,1,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,34,33,36,42,12,9,23,22.0,17.0,36.2103502109994,24.15633943762124,3.3906720977596745,2.3,2.06,2.29,2.640796561604585,2.61,2.76,2.2276542026206454,2.8901493598862023,2.278829431438127,2.2939618613917747 -2021,1,2,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,27,34,41,9,18,20,22.70917385080282,17.0,35.76977417454911,23.70543380367535,3.3906720977596745,2.3,2.06,2.29,2.640796561604585,2.61,2.76,2.2276542026206454,2.8901493598862023,2.278829431438127,2.2939618613917747 -2021,1,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,32,33,39,13,22,17,22.93623922379577,16.0,33.36641791528401,22.029075352756514,3.3906720977596745,2.3,2.06,2.29,2.640796561604585,2.61,2.76,2.2276542026206454,2.8901493598862023,2.278829431438127,2.2939618613917747 -2021,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,30,34,34,17,23,13,22.93623922379577,15.0,30.672791084387367,19.029075352756514,3.3906720977596745,2.3,2.06,2.29,2.640796561604585,2.61,2.76,2.2276542026206454,2.8901493598862023,2.278829431438127,2.2939618613917747 -2021,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,30,34,35,19,23,13,25.29082614919718,15.0,30.552940995858282,17.254528169729458,3.283762466001813,2.47,2.32,2.62,2.540718050065876,3.52,2.55,2.48888622754491,2.671996073298429,2.4431003494757864,2.47656975078774 -2021,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,30,33,35,20,26,13,24.35458692540141,15.0,33.73313192371769,17.930886620648295,3.3006088682991397,2.57,2.39,2.7,2.560256709451575,3.58,2.55,2.5648726573762612,2.7460609993510707,2.5186398838334942,2.593159985554352 -2021,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,32,33,35,20,27,18,24.93623922379577,14.0,34.212381337021014,17.930886620648295,3.30742883379247,2.57,2.4,2.73,2.611028240405503,3.15,2.64,2.5706060606060603,2.8007969639468686,2.548611500701262,2.6087915097569327 -2021,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,36,35,38,21,28,22,25.64541307459859,14.0,34.1672775921096,17.705433803675348,3.2969209809264304,2.62,2.44,2.77,2.6749873577749685,3.42,2.72,2.6169020323084937,2.891847328244275,2.6096096096096097,2.6535793357933577 -2021,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,37,36,40,23,31,26,28.645413074598586,15.0,37.91238014786663,21.930886620648298,3.3176401179941006,2.6,2.4,2.78,2.6484482758620693,3.91,2.69,2.557457954232148,2.8197332576617478,2.591851851851852,2.62345400074897 -2021,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,34,39,38,23,31,27,25.64541307459859,15.0,37.81349057267977,23.832697888540082,3.3176401179941006,2.6,2.4,2.78,2.6484482758620693,3.91,2.69,2.557457954232148,2.8197332576617478,2.591851851851852,2.62345400074897 -2021,1,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,38,34,22,32,27,23.64541307459859,14.0,38.579590134347384,23.832697888540082,3.3176401179941006,2.6,2.4,2.78,2.6484482758620693,3.91,2.69,2.557457954232148,2.8197332576617478,2.591851851851852,2.62345400074897 -2021,1,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,35,36,31,18,30,26,18.645413074598586,14.0,35.75220054906215,22.607245071567135,3.1614436619718305,2.55,2.36,2.79,2.6008338637810313,4.08,2.55,2.557809789343247,2.7922879684418143,2.5242693409742123,2.5933480419194703 -2021,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,31,29,20,29,20,19.936239223795766,10.0,28.263191890445285,21.25452816972946,3.48554054054054,2.72,2.53,2.82,2.690135746606335,4.56,2.68,2.663727915194346,2.917022222222222,2.6630331412103745,2.7565020374898124 -2021,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,29,30,30,19,23,15,23.227065372992946,6.0,31.53324507584697,16.479980986702405,3.4128233555062826,2.63,2.49,2.74,2.6332953620829946,4.64,2.61,2.628366066557556,2.8082306590257877,2.61,2.6555839956890748 -2021,1,15,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,29,29,29,33,18,24,19,22.93623922379577,5.0,31.78819216256659,11.83269788854008,3.2313775874375446,2.63,2.45,2.63,2.6165372424722664,3.27,2.57,2.595822643614055,2.736122215876642,2.6053374709076804,2.670353071564281 -2021,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,28,34,35,21,28,20,25.517891522190126,4.0,30.86706896157943,12.83269788854008,3.3291119221411187,2.64,2.53,2.82,2.6421453775582218,5.11,2.58,2.6577713534822602,2.7477102062400847,2.6256674856674858,2.671309261705563 -2021,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,29,34,36,22,25,18,23.58165229839436,4.0,29.35527270739057,12.381792254594188,3.3291119221411187,2.64,2.53,2.82,2.6421453775582218,5.11,2.58,2.6577713534822602,2.7477102062400847,2.6256674856674858,2.671309261705563 -2021,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,29,36,37,20,24,14,25.64541307459859,7.0,31.490665295385003,15.479980986702405,3.3291119221411187,2.64,2.53,2.82,2.6421453775582218,5.11,2.58,2.6577713534822602,2.7477102062400847,2.6256674856674858,2.671309261705563 -2021,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,37,39,19,22,12,27.581652298394356,14.0,35.36660339820055,17.607245071567135,3.3291119221411187,2.64,2.53,2.82,2.6421453775582218,5.11,2.58,2.6577713534822602,2.7477102062400847,2.6256674856674858,2.671309261705563 -2021,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,33,40,36,18,23,15,27.936239223795766,11.0,32.877880136635724,14.832697888540078,3.231596638655462,2.43,2.35,2.65,2.4470580296896087,4.36,2.46,2.4844022591779105,2.6036945812807883,2.4,2.475267008046818 -2021,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,36,33,33,17,21,11,26.290826149197176,12.0,32.32128887724762,14.705433803675351,3.1325986597170514,2.35,2.21,2.4,2.4013968775677896,3.25,2.4,2.319602977667494,2.5650804050029783,2.34,2.37511227154047 -2021,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,40,44,14,20,9,27.290826149197176,18.0,32.23084909335158,17.254528169729458,3.1592264678471573,2.41,2.23,2.44,2.435209003215434,3.78,2.48,2.3475710594315244,2.6152522255192876,2.404874851013111,2.3960569264917093 -2021,1,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,33,45,46,16,24,11,31.29082614919718,19.0,32.06964877224215,17.029075352756514,3.076901865369019,2.37,2.21,2.51,2.4177540500736376,5.3,2.47,2.3655158871831485,2.66235687732342,2.356617473435655,2.3469370560052867 -2021,1,24,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,39,39,44,44,18,23,8,34.29082614919718,21.0,35.48133068514734,21.901811267891784,3.076901865369019,2.37,2.21,2.51,2.4177540500736376,5.3,2.47,2.3655158871831485,2.66235687732342,2.356617473435655,2.3469370560052867 -2021,1,25,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,40,39,38,42,16,12,5,31.354586925401406,24.0,40.291749023996815,25.57816971881062,3.076901865369019,2.37,2.21,2.51,2.4177540500736376,5.3,2.47,2.3655158871831485,2.66235687732342,2.356617473435655,2.3469370560052867 -2021,1,26,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,39,37,35,45,12,10,12,33.06376077620423,25.0,43.10843017968122,29.029075352756514,3.427730167921251,2.47,2.28,2.47,2.624134337000579,5.11,2.66,2.3859822948586995,2.894650112866817,2.52,2.4743994237349183 -2021,1,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,36,34,42,49,12,19,15,30.063760776204226,24.0,42.30151166689432,27.70543380367535,3.4076347951114303,2.56,2.4,2.72,2.7581144465290803,4.96,2.75,2.508622771707878,3.158695652173913,2.6025787687833253,2.559646853654992 -2021,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,39,47,48,20,29,22,27.354586925401406,20.0,34.085894886176845,20.38179225459419,3.3221209386281587,2.6,2.48,4.5,2.645018106570098,9.76,2.67,3.05524505588994,2.8981427668982946,2.5852682403433476,2.6244319673326526 -2021,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,47,44,41,26,29,17,27.999999999999996,21.0,29.500143673758455,17.479980986702405,3.238036951501155,2.57,2.39,4.18,2.5925127551020406,11.13,2.6,2.8180716893461666,2.7407202216066486,2.534008922880816,2.5489158878504674 -2021,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,45,40,34,24,25,7,26.0,20.0,31.262371877266432,22.12726408486473,3.238036951501155,2.57,2.39,4.18,2.5925127551020406,11.13,2.6,2.8180716893461666,2.7407202216066486,2.534008922880816,2.5489158878504674 -2021,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,45,35,34,21,16,11,23.64541307459859,17.0,32.631187165538535,18.70543380367535,3.238036951501155,2.57,2.39,4.18,2.5925127551020406,11.13,2.6,2.8180716893461666,2.7407202216066486,2.534008922880816,2.5489158878504674 -2021,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,40,37,37,21,28,17,21.64541307459859,12.0,30.885628263922058,15.930886620648296,3.1387658495350808,2.6,2.42,2.81,2.6110635619886717,5.51,2.6,2.5892140238313472,2.785673222390318,2.593622704507512,2.6153230164578725 -2021,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,37,40,38,24,30,16,24.0,11.0,25.001401000034793,8.705433803675351,3.2719715142428787,2.76,2.67,4.74,2.667452887537994,8.11,2.64,3.028836885082653,2.8265363511659807,2.721967721911856,2.75858934169279 -2021,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,35,41,33,24,29,12,26.70917385080282,15.0,25.833335483039228,6.4799809867024045,3.342781954887218,2.95,2.97,5.2,2.832476948868399,11.89,2.77,3.3204350359293064,2.926758620689655,2.9058376690946934,2.985394923091441 -2021,2,4,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,32,33,39,35,24,26,7,27.354586925401406,16.0,35.41462120053377,11.254528169729458,3.2870416362308252,2.84,2.74,3.12,2.8057803468208093,12.04,2.75,2.882930693069307,2.88928,2.853191850594227,2.8168134388258226 -2021,2,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,31,44,45,18,24,15,23.41834770160564,14.0,34.186333067545796,17.254528169729458,3.3556920999324777,2.95,2.77,3.0,2.8422369668246446,7.83,2.78,2.880791234140715,2.862417582417583,3.0398344103392567,2.8654097302877792 -2021,2,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,51,55,18,27,14,24.06376077620423,11.0,33.27148734333914,16.25452816972946,3.627140495867769,3.49,3.24,3.92,3.503954509177973,11.52,3.33,3.4222919389978212,3.4488327868852453,3.684997889404812,3.2969966083541595 -2021,2,7,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,39,38,59,65,18,29,17,26.645413074598586,11.0,31.671786972492846,14.029075352756514,3.627140495867769,3.49,3.24,3.92,3.503954509177973,11.52,3.33,3.4222919389978212,3.4488327868852453,3.684997889404812,3.2969966083541595 -2021,2,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,44,45,56,64,20,26,14,30.29082614919718,13.0,35.27998337952265,12.803622535783568,3.627140495867769,3.49,3.24,3.92,3.503954509177973,11.52,3.33,3.4222919389978212,3.4488327868852453,3.684997889404812,3.2969966083541595 -2021,2,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,46,43,53,63,15,21,17,31.227065372992946,15.0,36.18421863779911,12.57816971881062,3.5810614525139663,3.23,3.07,3.83,3.3872185911401598,11.52,3.41,3.2791444162931205,3.414686985172982,3.768822447102116,3.239023708558211 -2021,2,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,44,41,54,61,14,17,21,33.16330459678872,14.0,35.28992672355187,12.479980986702405,3.576706827309237,3.28,3.0,3.41,3.413773656320969,10.38,3.36,3.1322527472527475,3.3923793787177794,3.7433008016730565,3.2611328814188876 -2021,2,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,43,40,52,62,14,24,29,35.16330459678871,14.0,37.00778455693649,12.930886620648296,4.246855636123929,4.02,3.42,4.09,4.949118412491868,11.52,4.23,3.6028888515217754,4.441216730038022,6.347895812053116,4.166130547076778 -2021,2,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,48,45,50,66,19,31,35,37.517891522190126,15.0,40.61653219050354,14.607245071567133,9.078543388429752,7.93,4.78,5.86,12.367913365029054,12.52,8.43,5.342375236891978,10.557014503006721,15.582803398058251,9.634965387509405 -2021,2,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,44,44,51,67,21,33,37,37.16330459678871,16.0,42.70748815548753,17.15633943762124,17.2453515625,89.8,4.84,5.71,121.03356822810589,9.86,10.45,5.330082435003171,75.93922608165752,155.33202333065165,69.98634878138849 -2021,2,14,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,38,38,56,71,20,36,40,35.16330459678871,17.0,49.340536945359354,22.410867607350703,17.2453515625,89.8,4.84,5.71,121.03356822810589,9.86,10.45,5.330082435003171,75.93922608165752,155.33202333065165,69.98634878138849 -2021,2,15,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,35,35,56,72,17,36,49,30.872478447591536,16.0,45.95143858423432,25.636320424323646,17.2453515625,89.8,4.84,5.71,121.03356822810589,9.86,10.45,5.330082435003171,75.93922608165752,155.33202333065165,69.98634878138849 -2021,2,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,29,53,69,17,45,48,28.581652298394356,15.0,39.522076965720956,21.95996197340481,17.2453515625,89.8,4.84,5.71,121.03356822810589,9.86,10.45,5.330082435003171,75.93922608165752,155.33202333065165,69.98634878138849 -2021,2,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,42,57,63,22,41,40,28.290826149197176,17.0,39.40507273126174,22.832697888540082,32.48880473372781,16.0,9.77,15.34,117.5795061728395,10.88,13.56,13.97518137974418,143.91542921686747,106.91557465091299,94.74366153846154 -2021,2,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,41,42,50,55,22,35,37,30.645413074598586,16.0,42.30807982585746,24.058150705513025,17.47690217391304,16.91,7.93,13.81,19.16400930232558,10.68,6.68,13.026908809891808,26.9795652173913,18.741374941342094,39.07517439004421 -2021,2,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,39,38,49,52,19,36,35,27.290826149197176,15.0,37.64182235832971,20.607245071567135,5.221273100616016,6.03,4.83,5.77,5.493398230088496,8.51,3.7,5.631123829344433,6.533593650793651,5.895937859608745,16.09899686520376 -2021,2,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,39,49,48,23,35,27,26.645413074598586,17.0,32.9882348588716,15.705433803675351,3.8639240506329116,3.92,3.85,5.65,3.6960366492146597,6.69,3.31,4.810734208367514,3.888067061143984,3.7944712990936558,4.489964701268139 -2021,2,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,41,44,40,22,26,16,24.70917385080282,14.0,34.88955605972625,18.25452816972946,3.8639240506329116,3.92,3.85,5.65,3.6960366492146597,6.69,3.31,4.810734208367514,3.888067061143984,3.7944712990936558,4.489964701268139 -2021,2,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,38,35,29,16,19,11,21.70917385080282,10.0,28.585831118559508,14.705433803675351,3.8639240506329116,3.92,3.85,5.65,3.6960366492146597,6.69,3.31,4.810734208367514,3.888067061143984,3.7944712990936558,4.489964701268139 -2021,2,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,30,26,24,12,15,8,26.0,8.0,26.756133378324055,12.479980986702405,3.597807262569832,2.71,2.55,2.67,2.737982404692082,4.64,2.87,2.6984936886395516,2.9561456953642384,2.6852339967724586,2.702746095598675 -2021,2,24,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,25,24,24,28,11,12,6,28.290826149197176,10.0,33.46296422715315,11.705433803675351,3.47299815498155,2.72,2.39,2.56,2.733890186915888,3.35,2.7,2.508606811145511,2.951671368124118,2.69,2.682437888198758 -2021,2,25,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,25,26,33,33,10,13,10,28.354586925401406,13.0,37.33872804649556,15.705433803675351,3.2823630136986304,2.68,2.48,2.68,2.680227629513344,3.61,2.69,2.582131616595136,2.949944095038435,2.6300000000000003,2.6373635627530367 -2021,2,26,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,34,32,34,31,13,13,9,26.06376077620423,14.0,35.98560814896669,17.254528169729458,3.2853881278538815,2.52,2.16,2.22,2.513526192337764,2.84,2.6,2.286110962208523,2.6436714542190307,2.4839079422382673,2.5194615745813116 -2021,2,27,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,31,27,26,27,10,8,5,26.999999999999996,15.0,36.22839333225407,16.803622535783568,3.2853881278538815,2.52,2.16,2.22,2.513526192337764,2.84,2.6,2.286110962208523,2.6436714542190307,2.4839079422382673,2.5194615745813116 -2021,2,28,0,0,0,0,3,3,4,0.0,0.0,0.0,0.0,29,27,21,29,7,3,3,23.93623922379577,15.0,39.14488008950998,21.803622535783568,3.2853881278538815,2.52,2.16,2.22,2.513526192337764,2.84,2.6,2.286110962208523,2.6436714542190307,2.4839079422382673,2.5194615745813116 -2021,3,1,0,0,0,0,4,1,1,0.0,0.0,0.0,0.0,26,25,31,36,6,12,10,20.645413074598586,13.0,33.49385638173542,20.479980986702405,3.172620115310698,2.59,2.24,2.41,2.5119734564339296,3.52,2.54,2.399695507989147,2.650508744038156,2.515122549019608,2.5403232675183895 -2021,3,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,45,39,36,29,16,22,14,22.58165229839436,12.0,28.113285767577448,15.930886620648296,3.2712898443291327,2.64,2.45,2.81,2.5905304829770386,6.37,2.6,2.6470056083881977,2.7589770200148256,2.5582446808510637,2.6238970954356846 -2021,3,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,35,31,26,23,13,18,13,21.29082614919718,17.0,24.52324334370834,11.705433803675351,3.4968883610451305,2.75,2.51,2.71,2.690620408163265,4.26,2.66,2.69031454248366,2.9474701670644388,2.6437069547602974,2.7354103343465046 -2021,3,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,31,22,12,15,9,21.936239223795766,15.0,26.902552699201134,14.57816971881062,3.431675977653631,2.73,2.54,2.86,2.6460659509202458,8.1,2.62,2.7071801166001843,3.084252239834597,2.6683143219264895,2.7125390790029575 -2021,3,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,38,33,25,16,20,8,21.70917385080282,12.0,22.810504977240278,10.479980986702405,3.288697204045211,2.62,2.5,2.81,2.539710365853659,7.34,2.54,2.6319769357495884,2.6917287630402384,2.5400073475385745,2.6185838569357176 -2021,3,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,38,32,23,17,19,10,23.70917385080282,14.0,21.82532530136098,9.381792254594188,3.13490967056323,2.6,2.4,2.68,2.4923792093704247,5.4,2.54,2.5513415492957745,2.553120780195049,2.4867816091954027,2.5485500933416305 -2021,3,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,36,31,18,19,20,12,25.0,15.0,21.338002536485174,6.156339437621242,3.13490967056323,2.6,2.4,2.68,2.4923792093704247,5.4,2.54,2.5513415492957745,2.553120780195049,2.4867816091954027,2.5485500933416305 -2021,3,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7745471830270542,37,35,21,16,17,17,9,26.0,16.0,20.855526991382156,5.4799809867024045,3.13490967056323,2.6,2.4,2.68,2.4923792093704247,5.4,2.54,2.5513415492957745,2.553120780195049,2.4867816091954027,2.5485500933416305 -2021,3,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,23,17,11,12,14,4,25.0,19.0,23.56797517901335,6.578169718810621,3.2991738908720043,2.43,2.21,2.33,2.433296488946684,2.95,2.57,2.326825127334465,2.6461355311355312,2.354844333748443,2.421046999276934 -2021,3,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,27,21,11,12,9,9,1,26.0,21.0,29.68109968718948,14.450905633945892,3.351779359430605,2.42,2.15,2.25,2.4627983816587995,2.82,2.54,2.262766921551968,2.5927597955706987,2.365371287128713,2.422976735988721 -2021,3,11,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,17,14,10,21,5,4,1,23.64541307459859,22.0,32.615160069932344,17.450905633945894,3.459702315325248,2.48,2.1,2.1,2.5364660936007644,2.49,2.61,2.213998224326724,2.6843112244897958,2.428723404255319,2.481255230125523 -2021,3,12,0,0,0,0,1,1,6,0.0,0.0,0.0,0.0,14,13,21,26,3,4,1,22.29082614919718,20.0,31.601086270507956,18.54909436605411,3.3019685039370077,2.5,2.07,2.09,2.560097799511002,2.42,2.61,2.226928398478035,2.7915164835164834,2.4567748478701827,2.4738075904677843 -2021,3,13,0,0,0,0,1,1,5,0.0,0.0,0.0,0.0,29,27,24,21,6,6,1,20.29082614919718,18.0,30.539131075454236,22.225452816972947,3.2915970515970514,2.46,2.19,2.34,2.4852990158970476,4.56,2.56,2.3258985555928784,2.626397306397306,2.4063330529857025,2.4473100225030295 -2021,3,14,0,0,0,0,1,1,2,0.0,0.0,0.0,0.0,29,25,25,22,6,7,2,24.35458692540141,18.0,28.670280144009737,20.254528169729458,3.2915970515970514,2.46,2.19,2.34,2.4852990158970476,4.56,2.56,2.3258985555928784,2.626397306397306,2.4063330529857025,2.4473100225030295 -2021,3,15,0,0,0,0,1,1,1,0.0,0.0,0.0,0.0,44,37,31,25,11,6,3,27.70917385080282,21.0,28.721917002435,15.57816971881062,3.2915970515970514,2.46,2.19,2.34,2.4852990158970476,4.56,2.56,2.3258985555928784,2.626397306397306,2.4063330529857025,2.4473100225030295 -2021,3,16,0,0,0,0,2,2,3,0.0,0.0,0.0,0.0,40,35,27,26,13,5,1,25.70917385080282,21.0,29.93457989849655,19.450905633945894,3.0898090277777777,2.45,2.13,2.34,2.4583333333333335,4.63,2.58,2.2410676484123333,2.6945795246800732,2.3999999999999995,2.385314316860465 -2021,3,17,0,0,0,0,3,2,4,0.0,0.0,0.0,0.0,30,27,23,26,11,6,3,22.35458692540141,19.0,28.255936475750342,17.57816971881062,3.273254769921437,2.38,2.09,2.26,2.3362447844228096,2.8,2.36,2.2240414507772024,2.5428893905191874,2.3385641025641024,2.3713636363636366 -2021,3,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,27,25,24,25,6,7,12,22.0,15.0,25.29258206124749,12.479980986702405,3.05726723095526,2.41,2.11,2.26,2.347154882154882,2.87,2.36,2.2637699956766104,2.6014039855072464,2.3275751072961377,2.4007981530343008 -2021,3,19,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,29,27,25,11,17,12,21.70917385080282,12.0,21.188264279431902,7.7054338036753505,2.8878698224852073,2.34,2.12,2.36,2.2425175808720113,3.53,2.26,2.216855845629966,2.4240203932993447,2.25,2.3474862431215606 -2021,3,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,26,24,21,15,14,11,23.06376077620423,14.0,21.59089219736666,6.029075352756513,2.9852342487883683,2.29,1.97,2.02,2.2338826815642463,2.34,2.28,2.082151561309977,2.31111821086262,2.2118160741885626,2.2997858576845864 -2021,3,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,21,21,19,16,13,14,9,25.35458692540141,16.0,26.730992767110028,7.352716901837676,2.9852342487883683,2.29,1.97,2.02,2.2338826815642463,2.34,2.28,2.082151561309977,2.31111821086262,2.2118160741885626,2.2997858576845864 -2021,3,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,21,20,14,17,9,10,7,24.06376077620423,15.0,29.816014537129206,13.57816971881062,2.9852342487883683,2.29,1.97,2.02,2.2338826815642463,2.34,2.28,2.082151561309977,2.31111821086262,2.2118160741885626,2.2997858576845864 -2021,3,23,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,18,17,12,17,7,7,4,23.35458692540141,15.0,30.417812286884185,16.57816971881062,3.0918233618233617,2.36,1.92,1.93,2.3417008014247553,2.12,2.39,2.0575199612872006,2.4759744094488187,2.29700288184438,2.3637186555219634 -2021,3,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,18,17,9,20,4,1,5,25.06376077620423,13.0,29.79593833938806,17.705433803675348,3.051604743083004,2.37,1.94,2.02,2.3280675105485233,2.25,2.38,2.1228534482758623,2.4442268907563025,2.288628808864266,2.3715615141955837 -2021,3,25,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,11,9,15,23,3,3,5,22.41834770160564,17.0,29.300396567257344,17.930886620648295,3.084824120603015,2.33,1.87,1.81,2.2750383631713555,2.07,2.29,1.997689393939394,2.5153598645215918,2.3,2.366253937484856 -2021,3,26,0,0,0,0,6,1,1,0.0,0.0,0.0,0.0,8,3,19,21,0,3,3,22.0,14.0,27.204975107349497,17.352716901837674,3.1986634615384615,2.36,1.84,1.79,2.2823255813953485,1.97,2.33,1.9595904350038158,2.5307375271149675,2.3,2.3816253564378154 -2021,3,27,0,0,0,0,5,3,4,0.0,0.0,0.0,0.0,14,12,15,18,3,5,1,18.290826149197176,10.0,25.47946069269061,14.029075352756514,3.2301381692573408,2.3,1.77,1.66,2.1956562235393737,1.94,2.26,1.8775447042640991,2.277542717656631,2.253491941673062,2.32535690897184 -2021,3,28,0,0,0,0,5,2,2,0.0,0.0,0.0,0.0,19,14,20,22,2,5,3,21.29082614919718,5.0,19.20564222925047,9.479980986702405,3.2301381692573408,2.3,1.77,1.66,2.1956562235393737,1.94,2.26,1.8775447042640991,2.277542717656631,2.253491941673062,2.32535690897184 -2021,3,29,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,21,20,22,12,9,14,6,25.70917385080282,6.0,19.020101050438583,5.2545281697294595,3.2301381692573408,2.3,1.77,1.66,2.1956562235393737,1.94,2.26,1.8775447042640991,2.277542717656631,2.253491941673062,2.32535690897184 -2021,3,30,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,24,19,13,20,7,7,2,25.64541307459859,7.0,31.46654540647593,5.029075352756513,3.1572422680412373,2.33,1.85,1.91,2.253754674644727,2.06,2.44,2.0056178531907043,2.3042942686056462,2.31,2.342787618228719 -2021,3,31,0,0,0,0,4,1,3,0.0,0.0,0.0,0.0,16,15,23,30,4,9,4,19.581652298394356,4.0,27.77248557237996,6.83269788854008,3.2602465078060803,2.4,1.9,1.88,2.3033333333333332,1.97,2.38,2.0625219941348973,2.4533870967741933,2.3645951859956233,2.409519156595526 -2021,4,1,0,0,0,0,2,0,0,0.0,2.0,0.0,2.3236415490811626,20,24,33,30,13,22,11,17.872478447591536,2.0,20.31685987489215,5.607245071567133,2.9625628140703517,2.54,2.21,2.4,2.370629370629371,2.59,2.47,2.340867495777675,2.4875342465753425,2.4747654041831546,2.4429224199288253 -2021,4,2,0,0,0,0,0,0,0,0.0,0.0,0.0,3.8727359151352707,34,33,31,20,19,23,11,17.936239223795766,4.0,14.42024665578643,3.2545281697294586,3.2329754601226997,2.39,2.03,2.12,2.2788025889967636,2.37,2.39,2.1838208955223877,2.4180821917808224,2.3177690100430417,2.3613281878115453 -2021,4,3,0,0,0,0,0,0,0,0.0,0.0,0.19809625820933358,4.647283098162325,29,28,19,12,16,17,7,16.29082614919718,6.0,10.585625124302812,1.3527169018376752,3.2329754601226997,2.39,2.03,2.12,2.2788025889967636,2.37,2.39,2.1838208955223877,2.4180821917808224,2.3177690100430417,2.3613281878115453 -2021,4,4,0,0,0,0,0,0,0,0.0,0.0,0.19809625820933358,5.421830281189379,24,19,12,6,9,11,3,19.29082614919718,6.0,10.04279892462693,1.1272640848647293,3.2329754601226997,2.39,2.03,2.12,2.2788025889967636,2.37,2.39,2.1838208955223877,2.4180821917808224,2.3177690100430417,2.3613281878115453 -2021,4,5,0,0,0,0,0,0,1,0.0,0.0,0.39619251641866715,4.647283098162325,18,14,7,3,6,7,1,22.0,8.0,12.0249463197465,0.9018112678917835,3.2329754601226997,2.39,2.03,2.12,2.2788025889967636,2.37,2.39,2.1838208955223877,2.4180821917808224,2.3177690100430417,2.3613281878115453 -2021,4,6,0,0,1,1,0,0,5,0.0,0.0,0.0,3.8727359151352707,15,12,3,4,3,3,0,19.645413074598586,8.0,19.834759825734142,2.1272640848647293,2.9912295081967213,2.22,1.78,1.78,2.1713203613620573,2.1,2.23,1.950201121002308,2.3302057245080503,2.1872622950819673,2.262417548703789 -2021,4,7,0,0,1,0,1,1,6,0.0,0.0,0.0,1.5490943660541083,16,10,1,9,1,1,1,22.64541307459859,6.0,18.93271003187626,4.029075352756513,3.0894126394052046,2.27,1.86,1.87,2.1836492220650636,2.27,2.3,1.9702250000000001,2.307540983606557,2.193977086743044,2.313269654665687 -2021,4,8,0,0,0,0,2,2,4,0.0,0.0,0.0,3.0981887321082167,12,9,4,14,1,1,1,21.64541307459859,6.0,17.2397138303122,2.578169718810621,3.270860927152318,2.32,1.85,1.89,2.3219555555555558,2.32,2.5,1.97080370942813,2.416811301715439,2.267657935285054,2.3153040606178354 -2021,4,9,0,0,0,0,2,2,7,0.0,0.0,0.0,3.0981887321082167,13,12,5,13,2,0,0,23.93623922379577,6.0,20.891497590200665,2.578169718810621,3.181111111111111,2.35,1.84,1.77,2.384598249801114,1.94,2.59,1.9327297857636492,2.5278758486905915,2.268742393509128,2.339686623012161 -2021,4,10,0,0,0,0,3,1,4,0.0,0.0,0.0,3.0981887321082167,8,6,8,17,1,2,3,25.35458692540141,6.0,19.13317245563589,3.4799809867024045,3.19272504592774,2.35,1.75,1.65,2.3928581510232885,1.94,2.57,1.8447650171179582,2.587619047619048,2.2943576826196472,2.349350324837581 -2021,4,11,0,0,0,0,3,0,2,0.0,0.0,0.0,3.0981887321082167,14,8,13,14,1,4,1,24.29082614919718,6.0,21.043155859696647,2.8036225357835667,3.19272504592774,2.35,1.75,1.65,2.3928581510232885,1.94,2.57,1.8447650171179582,2.587619047619048,2.2943576826196472,2.349350324837581 -2021,4,12,0,0,0,0,3,0,3,0.0,0.0,0.0,3.0981887321082167,18,16,11,18,3,3,1,21.64541307459859,6.0,24.720287672174926,2.8036225357835667,3.19272504592774,2.35,1.75,1.65,2.3928581510232885,1.94,2.57,1.8447650171179582,2.587619047619048,2.2943576826196472,2.349350324837581 -2021,4,13,0,0,0,0,3,1,4,0.0,0.0,0.0,2.3236415490811626,15,12,15,22,3,3,2,18.35458692540141,10.0,24.220842831101006,3.4799809867024045,3.2851338766006983,2.43,1.85,1.83,2.481034946236559,2.1,2.51,1.9398657371546606,2.7448281505728316,2.44,2.429332810047096 -2021,4,14,0,0,0,0,3,0,4,0.0,0.0,0.0,0.7745471830270542,14,12,19,23,3,7,3,15.35458692540141,13.0,24.753058564846697,2.8036225357835667,3.3229435483870966,2.53,1.95,2.0,2.5732194480946124,2.31,2.63,2.1103989202159568,2.784915254237288,2.4964161849710984,2.5162571312143442 -2021,4,15,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,18,15,22,22,4,8,5,12.35458692540141,12.0,26.108981406218472,3.8036225357835667,3.526664434025452,2.52,2.1,2.22,2.5232317073170734,2.53,2.61,2.2427372861495196,3.0112203389830503,2.4777861163227017,2.5326567524115755 -2021,4,16,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,26,22,19,21,8,11,5,9.0,10.0,26.713492504269162,7.4799809867024045,3.5053990147783254,2.53,2.12,2.19,2.5758402860548273,3.13,2.59,2.291316165951359,2.9873857598299676,2.49,2.539129282218597 -2021,4,17,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,19,19,18,7,10,9,6.645413074598589,7.0,24.721149085543423,8.83269788854008,3.433518518518518,2.6,2.22,2.26,2.559906976744186,2.77,2.54,2.3219682080924855,2.900774647887324,2.542613981762918,2.5859952153110046 -2021,4,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,18,15,17,17,6,11,9,5.290826149197179,3.0,20.395877862393696,8.83269788854008,3.433518518518518,2.6,2.22,2.26,2.559906976744186,2.77,2.54,2.3219682080924855,2.900774647887324,2.542613981762918,2.5859952153110046 -2021,4,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.7745471830270542,15,14,16,24,5,9,7,9.64541307459859,2.0,22.11372393007093,6.156339437621242,3.433518518518518,2.6,2.22,2.26,2.559906976744186,2.77,2.54,2.3219682080924855,2.900774647887324,2.542613981762918,2.5859952153110046 -2021,4,20,0,0,0,0,2,0,0,0.0,0.0,0.0,1.5490943660541083,12,12,25,29,4,7,7,11.64541307459859,6.0,27.26464574178601,5.156339437621242,3.4000677637947723,2.71,2.2,2.3,2.6419042515183992,2.59,2.6,2.3330331125827817,2.7741907514450865,2.6699999999999995,2.6614263837234744 -2021,4,21,0,0,0,0,3,0,0,0.0,0.0,0.0,2.3236415490811626,13,15,28,28,5,18,13,10.64541307459859,11.0,24.533479194548615,5.381792254594188,3.3692202729044833,2.76,2.35,2.49,2.677518315018315,2.68,2.66,2.404093065281229,2.810986367281475,2.688127696289905,2.677838660578387 -2021,4,22,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,27,24,22,14,18,10,13.999999999999998,10.0,20.756792132101587,5.4799809867024045,3.6664177598385477,2.66,2.35,2.53,2.6726565008025682,4.06,2.65,2.434353600332019,2.8270731707317074,2.5855196770938447,2.6273412246756203 -2021,4,23,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,19,19,18,19,11,13,3,15.70917385080282,9.0,18.935152643065496,5.4799809867024045,3.4546699266503667,2.62,2.2,2.21,2.640811267605634,2.54,2.61,2.3433440947000266,2.7646020761245675,2.5699999999999994,2.6338538812785384 -2021,4,24,0,0,0,0,3,1,5,0.0,0.0,0.0,0.7745471830270542,12,14,16,17,9,9,2,19.70917385080282,10.0,16.947941841164585,4.029075352756513,3.6344882729211085,2.59,2.22,2.23,2.67228,2.27,2.74,2.451744944553164,2.8189743589743586,2.557546251217137,2.6399712584684867 -2021,4,25,0,0,0,0,4,0,3,0.0,0.0,0.0,2.3236415490811626,15,12,19,16,4,6,1,18.06376077620423,12.0,13.525076843596691,1.6763584509188376,3.6344882729211085,2.59,2.22,2.23,2.67228,2.27,2.74,2.451744944553164,2.8189743589743586,2.557546251217137,2.6399712584684867 -2021,4,26,0,0,0,1,3,0,5,0.0,0.0,0.0,0.0,18,17,13,9,5,4,0,18.06376077620423,14.0,15.351933763219984,3.450905633945892,3.6344882729211085,2.59,2.22,2.23,2.67228,2.27,2.74,2.451744944553164,2.8189743589743586,2.557546251217137,2.6399712584684867 -2021,4,27,0,0,1,2,3,2,7,0.0,0.0,0.0,0.0,14,11,4,7,1,0,0,16.0,13.0,18.895141687744797,9.0,3.583776223776224,2.57,2.26,2.36,2.6482773109243696,2.71,2.77,2.413466015771686,2.8743342776203966,2.5273170731707317,2.629980343980344 -2021,4,28,0,1,1,1,6,6,10,0.0,0.0,0.0,0.0,9,3,4,7,0,0,0,12.29082614919718,6.0,15.830549464197865,9.57816971881062,3.865877094972067,2.73,2.31,2.39,2.845222611305653,2.74,2.89,2.538831252001281,3.0335211267605637,2.6766856330014224,2.7837390180878554 -2021,4,29,0,1,0,0,8,5,7,0.0,1.0,0.19809625820933358,1.5490943660541083,12,4,7,6,0,0,0,6.645413074598589,1.0,10.676926321567354,4.4799809867024045,3.7988081048867697,2.78,2.32,2.37,2.8057931844888366,2.66,2.83,2.644594594594594,2.98278,2.7366900584795326,2.848022641509434 -2021,4,30,0,0,0,0,7,2,4,0.0,3.0,1.1885775492560016,4.647283098162325,10,7,13,7,1,1,1,9.0,0.0,5.940250214441028,3.0290753527565126,3.5149436936936937,2.7,2.25,2.33,2.660435458786936,2.59,2.63,2.5218784735087065,2.8478473091364207,2.66,2.763247984826932 -2021,5,1,0,0,0,2,4,1,3,0.0,0.0,1.386673807465335,6.970924647243487,15,14,9,1,4,3,0,13.35458692540141,2.0,4.5476004343118985,1.1272640848647293,3.606232142857143,2.65,2.06,1.92,2.68809880239521,2.04,2.73,2.2312041884816756,2.735630630630631,2.612944738834216,2.7644969615124917 -2021,5,2,0,0,1,2,5,1,7,0.0,0.0,0.5942887746280008,5.098188732108217,7,5,1,2,1,2,0,14.290826149197178,6.0,10.346943719084738,0.4509056339458917,3.606232142857143,2.65,2.06,1.92,2.68809880239521,2.04,2.73,2.2312041884816756,2.735630630630631,2.612944738834216,2.7644969615124917 -2021,5,3,0,0,0,1,7,6,10,0.0,0.0,0.19809625820933358,3.0981887321082167,8,6,3,6,0,0,0,15.936239223795768,2.0,17.18932149430524,2.578169718810621,3.606232142857143,2.65,2.06,1.92,2.68809880239521,2.04,2.73,2.2312041884816756,2.735630630630631,2.612944738834216,2.7644969615124917 -2021,5,4,0,1,0,0,10,7,7,0.0,1.0,0.19809625820933358,3.8727359151352707,12,4,7,12,0,0,1,12.29082614919718,0.0,15.148978834121584,3.0290753527565126,3.548067456700091,2.75,2.38,2.37,2.714286596664608,2.99,2.8,2.626259499536608,2.8131125827814567,2.72,2.8335814163283715 -2021,5,5,0,0,0,0,8,1,3,0.0,3.0,1.1885775492560016,6.196377464216433,15,8,14,15,0,3,2,9.227065372992948,0.0,13.170078585487648,0.9018112678917835,3.597362030905077,2.77,2.4,2.42,2.7518631178707227,2.57,2.74,2.651359671626475,2.886558966074314,2.7264285714285714,2.879217240525142 -2021,5,6,0,0,0,0,5,1,4,0.0,1.0,1.386673807465335,8.74547183027054,11,12,16,14,4,7,1,10.35458692540141,1.0,8.722763441266817,0.6763584509188376,3.5331538461538465,2.75,2.41,2.4,2.754102141680395,2.89,2.76,2.611667074065021,2.913944124897289,2.7,2.8332343972352105 -2021,5,7,0,0,0,0,3,0,5,0.0,0.0,0.9904812910466678,7.647283098162325,15,15,17,13,6,7,1,18.0,4.0,6.7349649202602775,0.22545281697294586,3.578928571428571,2.75,2.36,2.4,2.7183251231527095,2.44,2.69,2.5514145314145313,2.8448545067423705,2.7179558011049725,2.7869457910974 -2021,5,8,0,0,0,0,2,0,8,0.0,0.0,0.5942887746280008,4.872735915135271,17,17,20,13,6,6,0,18.35458692540141,3.0,12.397224941512794,0.6763584509188376,3.444773801485483,2.74,2.36,2.4,2.6801180327868854,2.58,2.7,2.4645492085340672,2.7396948818897635,2.71571144278607,2.7858638642499036 -2021,5,9,0,0,0,0,3,2,10,0.0,0.0,0.39619251641866715,4.647283098162325,13,17,19,16,3,2,0,15.70917385080282,3.0,18.516575773955466,1.1272640848647293,3.444773801485483,2.74,2.36,2.4,2.6801180327868854,2.58,2.7,2.4645492085340672,2.7396948818897635,2.71571144278607,2.7858638642499036 -2021,5,10,0,0,0,0,6,1,6,0.0,0.0,0.39619251641866715,4.647283098162325,12,14,19,16,2,7,3,13.290826149197178,3.0,19.196060602075786,1.1272640848647293,3.444773801485483,2.74,2.36,2.4,2.6801180327868854,2.58,2.7,2.4645492085340672,2.7396948818897635,2.71571144278607,2.7858638642499036 -2021,5,11,0,0,0,0,5,1,6,0.0,1.0,0.5942887746280008,4.647283098162325,12,14,19,16,3,6,4,10.29082614919718,1.0,18.99016997168743,1.3527169018376752,3.5224999999999995,2.78,2.39,2.46,2.77227207977208,2.69,2.77,2.5464291796764122,2.8573104056437395,2.7305694760820045,2.8178679471788715 -2021,5,12,0,0,0,0,5,1,2,0.0,1.0,0.9904812910466678,6.970924647243487,12,12,16,13,5,6,3,7.936239223795769,0.0,13.922413087443053,1.803622535783567,3.4480220791168352,2.78,2.38,2.45,2.7691887831747626,2.41,2.78,2.5184568936598457,2.9052410714285712,2.7301734104046242,2.811348999129678 -2021,5,13,0,0,0,0,3,0,2,0.0,1.0,1.386673807465335,8.520019013297595,12,12,13,11,6,7,2,5.936239223795768,0.0,9.016281159383999,0.9018112678917835,3.4816526138279933,2.78,2.26,2.23,2.7745558912386707,2.38,2.76,2.4528547745358087,2.868709677419355,2.7244490216271884,2.808414277355179 -2021,5,14,0,0,0,0,3,0,3,0.0,1.0,1.386673807465335,8.970924647243487,8,9,10,9,5,6,1,6.290826149197178,1.0,6.971520696288272,0.4509056339458917,3.577964458804524,2.76,2.15,2.16,2.789710344827586,2.21,2.71,2.380011600928074,2.903285223367698,2.7,2.7864147088866194 -2021,5,15,0,0,0,0,3,0,5,0.0,0.0,1.1885775492560016,8.970924647243487,5,7,10,6,4,4,0,5.64541307459859,6.0,7.256324618257849,0.4509056339458917,3.4943261868300155,2.69,2.23,2.21,2.6225970475669764,2.1,2.63,2.4482091421415153,2.703995117982099,2.6766092572658775,2.7448240498692944 -2021,5,16,0,0,0,0,3,1,7,0.0,0.0,0.19809625820933358,4.098188732108216,3,6,5,4,3,2,0,4.290826149197179,8.0,6.669438738635632,0.22545281697294586,3.4943261868300155,2.69,2.23,2.21,2.6225970475669764,2.1,2.63,2.4482091421415153,2.703995117982099,2.6766092572658775,2.7448240498692944 -2021,5,17,0,0,0,0,3,2,8,0.0,0.0,0.19809625820933358,2.3236415490811626,5,6,4,3,2,0,0,9.0,5.0,7.18580518366867,1.6763584509188376,3.4943261868300155,2.69,2.23,2.21,2.6225970475669764,2.1,2.63,2.4482091421415153,2.703995117982099,2.6766092572658775,2.7448240498692944 -2021,5,18,0,0,0,1,4,4,6,0.0,0.0,1.386673807465335,5.421830281189379,2,2,1,2,1,0,0,14.645413074598588,2.0,7.508678152975211,1.803622535783567,3.59612202688728,2.88,2.45,2.62,2.8362566844919788,2.92,2.82,2.680044345898005,2.9079890185312287,2.83,2.9129688132847305 -2021,5,19,1,3,3,2,6,7,5,0.0,0.0,1.386673807465335,8.520019013297595,1,0,0,0,0,0,0,18.70917385080282,4.0,8.54074002021059,0.9018112678917835,3.526083769633508,2.86,2.41,2.5,2.828650190114068,2.75,2.83,2.6313870581186336,2.9027283950617284,2.7968895348837206,2.8653570718122143 -2021,5,20,0,2,7,4,7,8,6,0.0,0.0,0.7923850328373343,8.970924647243487,4,1,0,0,0,0,0,18.77293462700705,9.0,8.622265047160038,0.22545281697294586,3.5020672023374724,2.78,2.37,2.45,2.7429123711340204,2.51,2.76,2.4920378574305273,2.876763285024155,2.7113787085514836,2.7932347348404813 -2021,5,21,1,3,7,6,6,7,9,0.0,0.0,0.0,4.323641549081162,2,1,0,0,0,0,0,15.77293462700705,11.0,12.124443307442275,1.225452816972946,3.572188153310104,2.76,2.38,2.41,2.6612823752368917,2.48,2.68,2.4947986289631534,2.811764705882353,2.6775075528700905,2.756843145869947 -2021,5,22,4,7,8,6,7,7,9,0.0,0.0,0.0,0.4509056339458917,0,0,0,1,0,0,0,12.70917385080282,11.0,13.128934095491111,2.0,3.494343891402715,2.73,2.4,2.46,2.5672628205128207,2.5,2.63,2.5489959016393438,2.629937388193202,2.64,2.7201334428248822 -2021,5,23,7,10,8,6,10,8,8,0.0,0.0,0.0,0.4509056339458917,0,0,0,2,0,0,0,12.70917385080282,7.0,12.888410948097688,2.225452816972946,3.494343891402715,2.73,2.4,2.46,2.5672628205128207,2.5,2.63,2.5489959016393438,2.629937388193202,2.64,2.7201334428248822 -2021,5,24,0,0,7,5,8,9,9,0.0,0.0,0.0,3.3236415490811626,7,3,0,0,0,0,0,12.35458692540141,2.0,11.425513728850277,1.450905633945892,3.494343891402715,2.73,2.4,2.46,2.5672628205128207,2.5,2.63,2.5489959016393438,2.629937388193202,2.64,2.7201334428248822 -2021,5,25,0,1,9,6,9,10,11,0.0,2.0,0.7923850328373343,5.872735915135271,4,1,0,0,0,0,0,12.06376077620423,1.0,9.711409407796713,0.4509056339458917,3.6203305785123967,2.71,2.29,2.47,2.7129695767195767,2.41,2.71,2.585050038491147,2.8937444933920706,2.6466933333333333,2.7581134376905876 -2021,5,26,5,7,7,5,12,9,13,0.0,1.0,1.386673807465335,8.42183028118938,0,0,0,4,0,0,0,9.0,1.0,7.760482474538411,0.4509056339458917,3.53968275862069,2.75,2.3,2.44,2.670625283189851,2.63,2.73,2.620604575163399,2.753819095477387,2.6761443494776826,2.75761378136963 -2021,5,27,4,4,1,3,11,10,14,0.0,0.0,1.1885775492560016,8.872735915135271,0,1,7,7,0,0,0,12.41834770160564,2.0,7.308705170059458,0.22545281697294586,3.496776649746193,2.8,2.28,2.37,2.67754316724223,2.41,2.68,2.6278785879247772,2.7875026567481402,2.7219130434782612,2.7856543809313616 -2021,5,28,0,0,0,0,10,8,10,0.0,0.0,1.5847700656746686,9.42183028118938,10,8,13,13,0,0,0,11.64541307459859,1.0,5.981575153896396,0.22545281697294586,3.403628147191737,2.72,2.28,2.29,2.675677553856845,2.17,2.71,2.5207464892830744,2.768622540250447,2.657777777777778,2.7477251908396947 -2021,5,29,0,0,0,0,8,2,8,0.0,1.0,1.5847700656746686,9.196377464216432,19,17,14,12,2,5,1,8.581652298394358,2.0,6.855790870402495,0.22545281697294586,3.403628147191737,2.72,2.28,2.29,2.675677553856845,2.17,2.71,2.5207464892830744,2.768622540250447,2.657777777777778,2.7477251908396947 -2021,5,30,0,0,0,0,4,0,6,0.0,2.0,1.5847700656746686,8.42183028118938,17,16,11,10,4,4,1,5.581652298394358,0.0,7.033799731427281,0.22545281697294586,3.403628147191737,2.72,2.28,2.29,2.675677553856845,2.17,2.71,2.5207464892830744,2.768622540250447,2.657777777777778,2.7477251908396947 -2021,5,31,0,0,0,0,4,1,7,1.063760776204231,5.0,2.2989089288317524,10.520019013297595,11,8,6,5,2,2,1,1.2908261491971793,0.0,6.724522320144647,0.6763584509188376,3.403628147191737,2.72,2.28,2.29,2.675677553856845,2.17,2.71,2.5207464892830744,2.768622540250447,2.657777777777778,2.7477251908396947 -2021,6,1,0,0,0,0,5,3,7,4.418347701605641,7.0,2.748748037502028,10.843660562378759,5,4,3,3,0,1,0,0.0,0.0,5.028394867458678,0.6763584509188376,3.5392454466608845,2.76,2.28,2.37,2.774812734082397,2.23,2.74,2.5180693677102512,2.9184002509410285,2.69,2.7602094662638472 -2021,6,2,0,0,0,1,7,5,8,4.70917385080282,7.0,4.567996067862838,12.843660562378759,2,2,2,0,0,0,0,0.0,0.0,2.916831989536448,0.4509056339458917,4.05100607111882,2.92,2.13,2.17,2.974033018867925,2.16,2.9,2.509005291005291,3.346283141570785,2.8276562499999995,2.9475862884160757 -2021,6,3,0,1,3,5,10,7,8,2.35458692540141,7.0,6.149231765371409,14.618207745405812,2,1,0,0,0,0,0,1.2908261491971793,0.0,1.4997900733544667,0.22545281697294586,3.790150375939849,2.94,2.12,2.11,2.987043259134817,2.37,2.91,2.4315769944341374,3.204400675295442,2.86,2.94575042158516 -2021,6,4,3,5,8,9,11,8,8,1.0,6.0,7.501502392748499,14.843660562378759,0,0,0,0,0,0,0,4.581652298394359,0.0,0.0,0.0,3.6211823035850497,2.85,2.03,2.07,2.790315430520034,2.02,2.74,2.314674499841219,2.956650276582667,2.7765868263473052,2.9027226411249236 -2021,6,5,7,8,11,12,12,9,10,0.0,4.0,6.855210009382994,15.520019013297595,0,0,0,0,0,0,0,10.0,0.0,0.25907754211478334,0.0,3.39851619139681,2.88,2.1,2.67,2.650049382716049,2.94,2.61,2.3086353122590593,2.7611870773854243,2.7595814781834376,2.8094242604725035 -2021,6,6,11,11,11,11,14,8,12,0.0,2.0,5.000582433975034,13.647283098162324,0,0,0,0,0,0,0,16.29082614919718,0.0,1.4654741608392334,0.0,3.39851619139681,2.88,2.1,2.67,2.650049382716049,2.94,2.61,2.3086353122590593,2.7611870773854243,2.7595814781834376,2.8094242604725035 -2021,6,7,11,12,10,11,14,11,13,0.0,0.0,4.4731277849570965,11.323641549081163,0,0,0,0,0,0,0,13.999999999999998,4.0,1.3820953743341602,0.0,3.39851619139681,2.88,2.1,2.67,2.650049382716049,2.94,2.61,2.3086353122590593,2.7611870773854243,2.7595814781834376,2.8094242604725035 -2021,6,8,12,12,11,11,14,11,15,0.0,0.0,3.2604648888955445,10.323641549081163,0,0,0,0,0,0,0,12.70917385080282,5.0,0.9753288845536836,0.0,3.5104487608841257,2.99,2.06,2.66,2.678155016642891,3.73,2.65,2.3940791268758526,2.7829125575279425,2.82808764940239,2.8898978027593256 -2021,6,9,12,12,11,13,14,10,17,0.0,0.0,3.491703571873718,11.872735915135271,0,0,0,0,0,0,0,11.70917385080282,6.0,1.2098964447870273,0.0,3.5618971428571427,3.06,2.28,2.77,2.784612403100775,3.09,2.74,2.615442516906792,2.9107730673316707,2.974638386648122,3.0184454803404943 -2021,6,10,3,8,11,15,13,10,18,0.0,0.0,3.605163119578534,12.323641549081163,0,0,0,0,0,0,0,11.70917385080282,5.0,3.2807163768013723,0.0,3.539081902245707,3.06,2.23,2.26,2.8457510288065846,2.64,2.8,2.5831453599781002,2.940247452692868,2.988363522798251,2.9956883421206797 -2021,6,11,0,1,12,13,12,13,18,0.0,0.0,1.1885775492560016,13.323641549081163,5,1,0,0,0,0,0,12.70917385080282,2.0,5.500429070810494,0.0,3.480808926080892,3.05,2.13,2.06,2.8912810601877412,2.53,2.85,2.5055674653215636,2.9883244070390207,2.9566722972972976,3.030787521400038 -2021,6,12,0,2,12,10,12,15,17,0.0,4.0,2.1911015137054446,15.872735915135273,2,0,0,0,0,0,0,4.645413074598589,0.0,1.340066820409438,0.0,4.025079872204473,3.15,2.15,2.08,3.158687459389214,2.42,3.15,2.5565329218106996,3.5145288135593225,3.0625798525798524,3.171274124039723 -2021,6,13,1,2,10,9,12,15,18,0.6454130745985897,5.0,7.283608916191482,19.196377464216432,0,0,0,0,0,0,0,5.64541307459859,0.0,0.0,0.0,4.025079872204473,3.15,2.15,2.08,3.158687459389214,2.42,3.15,2.5565329218106996,3.5145288135593225,3.0625798525798524,3.171274124039723 -2021,6,14,0,4,6,9,13,14,18,0.6454130745985897,7.0,10.289221221535875,20.196377464216432,3,0,0,0,0,0,0,5.0,0.0,0.0,0.0,4.025079872204473,3.15,2.15,2.08,3.158687459389214,2.42,3.15,2.5565329218106996,3.5145288135593225,3.0625798525798524,3.171274124039723 -2021,6,15,3,3,3,8,12,11,17,0.0,9.0,11.266570032667769,23.069113379351705,0,0,0,0,0,0,0,7.70917385080282,0.0,0.0,0.0,5.742581943645773,3.19,2.14,2.3,3.3491181506849315,2.42,3.3,2.5594763636363638,5.7991132332878585,3.1492329279700653,3.2427341176470588 -2021,6,16,0,1,2,11,9,8,17,0.0,11.0,10.8848992934095,23.069113379351705,1,2,2,0,0,0,0,5.0,0.0,0.32869126890763334,0.0,5.043646563814867,3.18,2.13,2.27,3.2672893772893774,2.48,3.29,2.555801937567277,4.132565217391305,3.1335519125683065,3.237438316400581 -2021,6,17,0,0,4,14,8,9,17,0.0,13.0,10.604170773391406,23.069113379351705,4,3,0,0,0,0,0,3.290826149197179,0.0,0.32869126890763334,0.0,4.773643926788686,3.09,2.29,2.31,3.239191506737444,2.44,3.24,2.488093471810089,4.209678233438486,3.037142857142857,3.141551299070738 -2021,6,18,0,1,9,14,9,11,16,0.6454130745985897,12.0,9.777493170698959,22.84366056237876,1,1,0,0,0,0,0,3.290826149197179,0.0,0.1392274535857,0.0,4.657824483775811,3.1,2.33,2.48,3.2399005235602094,2.52,3.25,2.6244052863436123,4.429144316730524,3.0104928457869633,3.138901204819277 -2021,6,19,8,8,9,11,13,10,16,1.0,11.0,9.835694853421622,23.069113379351705,0,0,0,0,0,0,0,2.2908261491971795,0.0,0.1392274535857,0.0,4.54093271152565,3.05,2.41,2.69,3.057419841569219,2.95,3.12,2.610742393509128,3.6479356193142056,2.9956686046511627,3.0905214344600163 -2021,6,20,8,8,8,9,14,13,17,2.7091738508028205,10.0,7.1720427036035215,23.520019013297595,0,0,0,1,0,0,0,0.0,0.0,0.45748254003627986,0.0,4.54093271152565,3.05,2.41,2.69,3.057419841569219,2.95,3.12,2.610742393509128,3.6479356193142056,2.9956686046511627,3.0905214344600163 -2021,6,21,8,11,6,3,15,14,16,6.06376077620423,7.0,6.073752046965684,20.29456619632465,0,0,0,3,0,0,0,0.0,0.0,1.8545164618290566,0.0,4.54093271152565,3.05,2.41,2.69,3.057419841569219,2.95,3.12,2.610742393509128,3.6479356193142056,2.9956686046511627,3.0905214344600163 -2021,6,22,7,4,0,2,11,6,12,3.35458692540141,6.0,7.500737307176887,16.97092464724349,0,1,5,2,0,0,0,0.0,0.0,0.0,0.0,4.60693359375,2.98,2.46,2.56,3.194577751892836,2.64,3.23,2.6653571428571428,4.092865921787709,2.9286872586872588,3.043825068527286 -2021,6,23,0,0,1,6,7,5,15,2.35458692540141,5.0,7.540964071996818,14.872735915135271,3,4,2,0,0,0,0,0.6454130745985897,0.0,0.0,0.0,4.562451737451738,3.05,2.5,2.55,3.1427872340425536,2.56,3.15,2.730783439490446,3.8373109243697483,3.0,3.1063005780346824 -2021,6,24,0,0,3,8,7,9,17,2.7091738508028205,3.0,5.198130800312855,13.098188732108216,3,2,0,0,0,0,0,0.0,0.0,0.03647130202400997,0.0,4.230931297709924,3.14,2.52,2.48,3.261649625085208,2.71,3.29,2.658269670257917,3.5439749328558636,3.0544292237442927,3.1670306150094825 -2021,6,25,0,2,7,10,8,11,19,7.35458692540141,5.0,4.002213274272418,15.970924647243487,2,0,0,0,0,0,0,0.0,0.0,1.263382280983087,0.0,4.217311669128508,3.17,2.53,2.64,3.2718305084745762,2.78,3.35,2.7843603603603606,3.625784248841827,3.0837547892720307,3.1790579881656806 -2021,6,26,5,7,10,7,12,13,18,11.70917385080282,8.0,4.819738918323781,16.294566196324652,0,0,0,0,0,0,0,0.0,0.0,2.3277289347120895,0.22545281697294586,4.72920763022744,3.32,2.78,3.1,3.3343702401874635,3.89,3.43,2.966180533247671,4.079289340101523,3.246810477657935,3.3199611824425204 -2021,6,27,11,13,12,7,14,14,15,13.06376077620423,12.0,6.270804240209941,17.716396477514028,0,0,0,0,0,0,0,0.0,0.0,2.377334667115735,0.22545281697294586,4.72920763022744,3.32,2.78,3.1,3.3343702401874635,3.89,3.43,2.966180533247671,4.079289340101523,3.246810477657935,3.3199611824425204 -2021,6,28,15,15,12,7,14,15,13,13.35458692540141,12.0,6.988353333882399,16.265490843568138,0,0,0,0,0,0,0,0.0,0.0,1.9385623702351007,0.4509056339458917,4.72920763022744,3.32,2.78,3.1,3.3343702401874635,3.89,3.43,2.966180533247671,4.079289340101523,3.246810477657935,3.3199611824425204 -2021,6,29,16,16,13,8,15,15,14,10.29082614919718,10.0,7.1189483445807,14.71639647751403,0,0,0,0,0,0,0,0.0,0.0,1.9385623702351007,0.6763584509188376,5.417900900900901,3.57,3.12,3.8,3.650823429541596,4.86,3.64,3.4581766666666667,4.6673122734334545,3.512516469038208,3.5267773039124792 -2021,6,30,16,16,11,9,15,14,15,4.290826149197179,10.0,5.913024556289693,14.16730211145992,0,0,0,0,0,0,0,0.0,0.0,0.4023009948566242,0.22545281697294586,5.457233333333334,3.69,3.14,3.89,3.7627356210729817,6.06,3.49,3.483840181783753,4.736252653927814,3.635267857142857,3.6967635628789055 -2021,7,1,9,9,7,9,14,12,16,2.6454130745985895,9.0,6.821184275704626,15.069113379351704,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.8439849219170705,3.54,2.85,3.1,3.5166811384466956,4.31,3.5,3.256040122110772,4.141679447852761,3.575780487804878,3.5785907990314776 -2021,7,2,2,5,1,8,11,11,16,3.7091738508028205,9.0,8.295198326727654,16.294566196324652,1,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.4854534388314065,3.46,2.75,2.87,3.3859486905398186,2.87,3.37,3.0838538205980064,3.7346927374301675,3.4205954825462013,3.5563580476900145 -2021,7,3,0,1,3,9,9,7,14,4.70917385080282,10.0,10.429158707249506,16.294566196324652,6,1,0,0,0,0,0,0.0,0.0,0.0,0.0,4.14941605839416,3.42,2.78,3.07,3.325476992143659,2.92,3.23,3.0875134111707156,3.6957191489361705,3.3705627705627705,3.477410411165598 -2021,7,4,0,3,9,12,10,8,14,3.7091738508028205,9.0,11.202798954827674,15.42183028118938,3,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.14941605839416,3.42,2.78,3.07,3.325476992143659,2.92,3.23,3.0875134111707156,3.6957191489361705,3.3705627705627705,3.477410411165598 -2021,7,5,0,6,13,13,12,11,14,3.7091738508028205,8.0,9.89756045292814,18.520019013297595,1,0,0,0,0,0,0,0.6454130745985897,0.0,0.0,0.0,4.14941605839416,3.42,2.78,3.07,3.325476992143659,2.92,3.23,3.0875134111707156,3.6957191489361705,3.3705627705627705,3.477410411165598 -2021,7,6,8,12,14,10,13,13,14,5.06376077620423,9.0,9.809876927554765,19.61820774540581,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.14941605839416,3.42,2.78,3.07,3.325476992143659,2.92,3.23,3.0875134111707156,3.6957191489361705,3.3705627705627705,3.477410411165598 -2021,7,7,11,13,11,7,14,11,14,2.0,9.0,10.77223251529369,19.392754928432865,0,0,0,1,0,0,0,2.2908261491971795,0.0,0.0,0.0,4.336447249774571,3.45,2.96,3.72,3.484012311135982,3.72,3.43,3.343783584836217,3.802049180327869,3.4046882793017463,3.5377820267686424 -2021,7,8,3,9,6,6,14,13,15,1.6454130745985895,12.0,12.95302097750126,20.61820774540581,1,0,1,1,0,0,0,1.6454130745985895,0.0,0.0,0.0,4.624839241549876,3.39,2.84,3.25,3.4463890299644486,3.08,3.43,3.206812589413448,4.044426229508196,3.3460131950989633,3.450854351283799 -2021,7,9,5,10,3,8,14,14,14,3.063760776204231,14.0,13.581119298799074,22.84366056237876,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.881921397379913,3.43,2.83,3.13,3.5769636737491433,3.03,3.6,3.3116869492236676,4.580661157024793,3.3955884917175236,3.4866014019821128 -2021,7,10,5,7,2,7,13,13,16,3.063760776204231,16.0,10.622306447349686,22.294566196324652,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.173406593406593,3.47,2.88,3.16,3.592874074074074,3.04,3.67,3.2448826979472143,5.456614173228346,3.4261333333333335,3.555262569832402 -2021,7,11,3,6,3,5,14,12,15,3.7091738508028205,14.0,10.277115378238864,19.29456619632465,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.173406593406593,3.47,2.88,3.16,3.592874074074074,3.04,3.67,3.2448826979472143,5.456614173228346,3.4261333333333335,3.555262569832402 -2021,7,12,3,10,6,5,15,12,14,4.0,12.0,11.136031082104692,19.392754928432865,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.173406593406593,3.47,2.88,3.16,3.592874074074074,3.04,3.67,3.2448826979472143,5.456614173228346,3.4261333333333335,3.555262569832402 -2021,7,13,1,8,9,8,14,12,15,4.0,11.0,10.669594209560588,18.069113379351705,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.231566787003611,3.54,3.09,3.51,3.527001733102253,3.39,3.48,3.4160491591203104,6.333216237314598,3.49400449943757,3.589494474007368 -2021,7,14,7,12,9,8,15,13,15,3.0,9.0,7.82191960095754,14.97092464724349,0,0,0,0,0,0,0,1.2908261491971793,0.0,0.0,0.0,5.261693175987687,3.52,3.15,3.62,3.357258382642998,3.51,3.3,3.399877825290165,4.795323047251688,3.4499999999999997,3.530874781849913 -2021,7,15,10,12,10,8,15,15,16,1.6454130745985895,9.0,8.040198137029217,14.97092464724349,0,0,0,0,0,0,0,2.2908261491971795,0.0,0.0,0.0,5.235977941176471,3.56,3.16,3.64,3.372223587223587,3.61,3.3,3.452700449005773,4.823904639175258,3.4675,3.546957189901207 -2021,7,16,13,13,7,8,16,14,17,1.0,8.0,9.062273750008416,14.97092464724349,0,0,0,0,0,0,0,3.290826149197179,0.0,0.0,0.0,5.465237209302326,3.47,3.08,3.64,3.403230403800475,3.94,3.44,3.375850123718628,4.686592105263157,3.4372283272283273,3.513227861105403 -2021,7,17,11,12,7,8,16,13,17,1.0,9.0,10.070906192895816,14.647283098162326,0,0,0,0,0,0,0,1.6454130745985895,0.0,0.0,0.0,5.049115128449096,3.45,2.98,3.32,3.488808664259928,3.28,3.61,3.260136752136752,3.9771698113207554,3.3776490924805533,3.4871248279027074 -2021,7,18,6,8,7,9,14,12,17,2.35458692540141,11.0,11.01266801760477,15.745471830270542,0,0,0,0,0,0,0,0.6454130745985897,0.0,0.0,0.0,5.049115128449096,3.45,2.98,3.32,3.488808664259928,3.28,3.61,3.260136752136752,3.9771698113207554,3.3776490924805533,3.4871248279027074 -2021,7,19,5,8,7,8,12,11,16,2.7091738508028205,12.0,9.63121642251146,16.520019013297595,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.049115128449096,3.45,2.98,3.32,3.488808664259928,3.28,3.61,3.260136752136752,3.9771698113207554,3.3776490924805533,3.4871248279027074 -2021,7,20,8,9,8,8,12,11,14,1.6454130745985895,12.0,10.323624904969892,17.29456619632465,0,0,0,0,0,0,0,1.2908261491971793,0.0,0.0,0.0,5.5578388507183005,3.63,3.01,3.41,3.5989766081871344,3.84,3.64,3.328548249359522,5.466210847975553,3.599807692307692,3.573598464070214 -2021,7,21,7,7,5,8,14,12,14,0.6454130745985897,10.0,10.323624904969892,18.069113379351705,0,0,0,0,0,0,0,3.6454130745985895,0.0,0.0,0.0,5.592128487994808,3.67,3.05,3.26,3.6678045222465356,3.42,3.65,3.4299073645206115,5.220662576687117,3.6531101190476196,3.6695605920444034 -2021,7,22,3,3,5,11,13,13,15,0.6454130745985897,10.0,10.58434543059878,16.745471830270542,0,0,0,0,0,0,0,2.6454130745985895,0.0,0.0,0.0,5.94970479704797,3.75,3.03,3.28,3.74892749244713,3.36,3.72,3.596724376731302,5.295725752508361,3.7071441441441446,3.7733441488211112 -2021,7,23,4,4,8,14,13,13,17,1.3545869254014102,10.0,10.290518972769434,10.098188732108216,0,0,0,0,0,0,0,1.2908261491971793,0.0,0.0,0.0,5.488631743549648,3.74,3.0,3.14,3.725878030859662,3.2,3.69,3.5651100628930816,4.824684466019417,3.69850144092219,3.7871630558722917 -2021,7,24,3,5,12,15,13,14,19,3.7091738508028205,9.0,9.239937378752655,6.323641549081163,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.150215053763441,3.86,3.04,3.46,3.762857142857143,3.53,3.72,3.5489620758483036,4.289562226391495,3.795449101796407,3.9047570396212308 -2021,7,25,3,9,12,12,15,16,19,5.06376077620423,9.0,10.043872246564932,8.323641549081163,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.150215053763441,3.86,3.04,3.46,3.762857142857143,3.53,3.72,3.5489620758483036,4.289562226391495,3.795449101796407,3.9047570396212308 -2021,7,26,10,11,11,12,16,17,19,5.06376077620423,7.0,9.417496311576569,11.647283098162324,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.150215053763441,3.86,3.04,3.46,3.762857142857143,3.53,3.72,3.5489620758483036,4.289562226391495,3.795449101796407,3.9047570396212308 -2021,7,27,9,10,10,13,16,16,19,4.35458692540141,10.0,9.959024760018893,14.97092464724349,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.415114698385726,3.95,3.14,3.92,3.863202614379085,4.1,3.82,3.641877802690583,4.532620481927711,3.8858846918489065,3.941708129720124 -2021,7,28,4,7,11,15,16,16,19,6.418347701605641,11.0,11.65551059489367,15.970924647243487,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.4414655172413795,3.89,3.01,3.48,3.861212121212121,3.35,3.72,3.5419477503628443,4.730409188801149,3.8437044967880087,3.9205953166226917 -2021,7,29,3,4,12,14,15,16,19,8.77293462700705,12.0,11.35094903013764,16.520019013297595,1,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.255015673981191,3.84,2.96,3.08,3.8886743515850144,3.13,3.56,3.468648159324079,5.772434709351305,3.808409090909091,3.8995646867371843 -2021,7,30,6,7,5,10,17,16,19,9.70917385080282,12.0,10.25813622260517,13.970924647243487,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.923054587688734,3.8,2.84,2.88,3.8235165876777253,2.97,3.6,3.4079087994299964,5.662265861027191,3.7586853448275868,3.87360024325968 -2021,7,31,0,1,3,9,15,15,20,6.70917385080282,11.0,7.36025696304945,13.42183028118938,2,2,0,0,0,0,0,0.0,0.0,0.0,0.0,5.923054587688734,3.8,2.84,2.88,3.8235165876777253,2.97,3.6,3.4079087994299964,5.662265861027191,3.7586853448275868,3.87360024325968 -2021,8,1,0,1,3,5,15,13,18,7.063760776204231,11.0,5.996629345045854,15.29456619632465,0,1,0,0,0,0,0,0.0,0.0,0.0,0.0,5.369218865143699,3.67,2.88,2.92,3.7531008403361343,3.13,3.48,3.33085082563672,5.117899224806202,3.596163982430454,3.7379332679097157 -2021,8,2,3,3,1,4,12,10,15,7.418347701605641,11.0,6.849779852289409,17.39275492843287,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.369218865143699,3.67,2.88,2.92,3.7531008403361343,3.13,3.48,3.33085082563672,5.117899224806202,3.596163982430454,3.7379332679097157 -2021,8,3,0,2,3,5,10,9,14,6.70917385080282,12.0,8.103416037867206,18.392754928432865,1,1,0,0,0,0,0,0.0,0.0,0.0,0.0,6.109689349112426,3.83,3.2,3.17,3.8086987270155586,3.3,3.77,3.3475873362445414,6.521860465116279,3.7581376518218623,3.7968152703048936 -2021,8,4,1,2,4,6,9,9,14,8.35458692540141,12.0,8.63213194555032,19.167302111459918,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.518275862068965,3.81,3.49,3.61,3.8092811839323466,3.73,3.78,3.617828614762386,6.166397515527951,3.7483594470046087,3.8369847178683387 -2021,8,5,2,5,6,7,11,9,14,4.290826149197179,10.0,9.445023096335284,18.61820774540581,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.113042715038033,3.99,3.68,3.75,3.8938531553398055,3.85,3.78,3.781371512481645,6.159258496395469,3.8575048355899417,4.008326359832636 -2021,8,6,8,8,8,9,12,10,15,2.35458692540141,9.0,7.888813561796106,19.29456619632465,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.859902029391184,4.06,3.78,3.94,3.934256837098692,4.03,3.92,3.8711186617877678,5.521314152410575,3.7859062103929024,4.023472308649658 -2021,8,7,9,9,10,11,12,12,17,1.7091738508028205,9.0,5.5518779925085795,17.970924647243486,0,0,0,0,0,0,0,1.2908261491971793,0.0,0.03647130202400997,0.0,5.210950570342206,4.03,3.71,3.87,3.9266996699669967,4.06,3.89,3.777898571844943,4.666157760814249,3.875549199084668,3.982930088284419 -2021,8,8,9,8,12,10,13,13,19,0.0,9.0,6.305818985409704,17.520019013297595,0,0,0,0,0,0,0,3.290826149197179,0.0,0.06961372679285,0.0,5.210950570342206,4.03,3.71,3.87,3.9266996699669967,4.06,3.89,3.777898571844943,4.666157760814249,3.875549199084668,3.982930088284419 -2021,8,9,7,10,11,13,15,14,20,0.3545869254014103,10.0,7.004198155401338,15.42183028118938,0,0,0,0,0,0,0,1.2908261491971793,0.0,0.5740037513101932,0.0,5.210950570342206,4.03,3.71,3.87,3.9266996699669967,4.06,3.89,3.777898571844943,4.666157760814249,3.875549199084668,3.982930088284419 -2021,8,10,7,11,14,14,16,16,20,3.7091738508028205,11.0,7.045802074250171,12.647283098162326,0,0,0,0,0,0,0,0.0,0.0,0.17569875560970996,0.0,5.527128177393186,3.97,3.75,3.9,3.857865497076023,4.11,3.8,3.8728074866310163,4.916703136396791,3.862255639097744,3.967689084015167 -2021,8,11,12,14,14,15,17,17,20,9.41834770160564,12.0,7.74811740816944,11.098188732108218,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.740998363338789,3.96,3.79,4.03,3.837492424242424,4.56,3.79,3.948154174884944,5.086253731343284,3.8505773672055432,3.9731326255743937 -2021,8,12,15,15,13,12,17,16,19,12.06376077620423,13.0,8.218286400849346,11.872735915135271,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.139050445103858,3.9,3.73,3.99,3.8129866117404734,5.16,3.8,3.910982197667281,5.185200281096275,3.8242857142857143,3.921741226378712 -2021,8,13,15,15,10,6,17,15,18,11.35458692540141,12.0,8.920669938120557,12.520019013297595,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,5.616942970822281,3.85,3.62,3.82,3.742363966142684,4.41,3.65,3.822656888675162,4.341008100810081,3.79,3.893638700630989 -2021,8,14,13,12,5,6,16,15,16,10.06376077620423,12.0,10.381517847980392,9.196377464216432,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.7362401574803155,3.74,3.51,3.6,3.6419810762862213,3.71,3.53,3.627272727272727,4.110347361389445,3.664928457869634,3.7761356226907195 -2021,8,15,5,6,3,7,13,12,15,9.06376077620423,13.0,10.67032758434864,12.520019013297595,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.7362401574803155,3.74,3.51,3.6,3.6419810762862213,3.71,3.53,3.627272727272727,4.110347361389445,3.664928457869634,3.7761356226907195 -2021,8,16,3,5,3,8,14,12,16,4.063760776204231,13.0,9.684401383773025,13.29456619632465,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,4.7362401574803155,3.74,3.51,3.6,3.6419810762862213,3.71,3.53,3.627272727272727,4.110347361389445,3.664928457869634,3.7761356226907195 -2021,8,17,4,8,7,10,14,12,15,0.0,9.0,8.31915941004604,10.196377464216434,0,0,0,0,0,0,0,5.35458692540141,0.0,0.1392274535857,0.0,5.861113924050633,3.75,3.57,3.71,3.595635359116022,3.83,3.49,3.725987283645355,5.448656126482213,3.6859012629161882,3.810304683947249 -2021,8,18,8,10,10,11,16,14,16,0.0,4.0,5.08978235140116,11.970924647243487,0,0,0,0,0,0,0,3.0,0.0,2.075695527904955,0.0,5.066492537313432,3.7,3.57,3.76,3.6487933333333338,3.88,3.57,3.719309336332959,4.279041825095057,3.669558823529412,3.748886090662534 -2021,8,19,9,12,11,12,17,13,18,0.0,4.0,2.6822591441725114,10.42183028118938,0,0,0,0,0,0,0,2.0,0.0,4.393423233824182,0.0,4.8972689726381,3.7,3.59,3.79,3.5648290598290595,3.92,3.51,3.7445228473733287,3.988845265588915,3.6336468129571577,3.7213771099217787 -2021,8,20,10,11,11,13,15,13,19,0.0,4.0,2.1486960167166163,11.42183028118938,0,0,0,0,0,0,0,4.645413074598589,0.0,3.9072057533428293,0.0,4.5810344827586205,3.64,3.52,3.69,3.527641117052882,4.16,3.45,3.6579093089165036,3.8678892733564014,3.5624729392173187,3.662287467134093 -2021,8,21,11,10,11,7,15,13,19,0.0,3.0,2.7550274647473922,12.196377464216434,0,0,0,0,0,0,0,4.645413074598589,0.0,3.40707522949264,0.0,4.507164764621969,3.76,3.58,3.7,3.5495443288756805,3.94,3.43,3.729756862745098,3.7927876447876447,3.663760683760684,3.7918123193239937 -2021,8,22,6,8,10,6,14,15,18,0.0,3.0,3.852516543245235,13.970924647243487,0,0,0,1,0,0,0,5.35458692540141,0.0,1.1332567660524988,0.0,4.507164764621969,3.76,3.58,3.7,3.5495443288756805,3.94,3.43,3.729756862745098,3.7927876447876447,3.663760683760684,3.7918123193239937 -2021,8,23,8,11,10,11,16,16,19,0.0,4.0,4.513470445140753,14.196377464216434,0,0,0,0,0,0,0,6.999999999999999,0.0,0.74409020157551,0.0,4.507164764621969,3.76,3.58,3.7,3.5495443288756805,3.94,3.43,3.729756862745098,3.7927876447876447,3.663760683760684,3.7918123193239937 -2021,8,24,12,12,14,13,16,16,19,0.0,5.0,5.4856315860041445,14.42183028118938,0,0,0,0,0,0,0,4.0,0.0,0.9391663222418367,0.0,4.867135348226019,3.89,3.72,3.95,3.735806451612903,4.34,3.71,3.8532255100165416,4.118428428428428,3.775338809034908,3.8254157303370784 -2021,8,25,12,12,13,12,16,17,19,0.0,7.0,5.07785274204215,15.970924647243487,0,0,0,0,0,0,0,3.6454130745985895,0.0,0.6436174781030433,0.0,4.995752625437573,3.88,3.67,3.92,3.8134270006108735,4.6,3.77,3.8483279548204927,4.426431254695718,3.78,3.850653824782367 -2021,8,26,13,14,13,11,15,16,19,0.0,10.0,5.2700148052866655,17.29456619632465,0,0,0,1,0,0,0,3.290826149197179,0.0,0.6938538398392766,0.0,5.645897435897436,3.93,3.77,3.97,3.853825180433039,4.54,3.86,3.8877004387714402,4.927907159716759,3.8453071798667655,3.910245640352522 -2021,8,27,13,14,13,12,16,15,17,0.0,11.0,5.107759219768754,17.84366056237876,0,0,0,0,0,0,0,4.290826149197179,0.0,1.0100778002682456,0.0,5.75741883767535,4.01,3.76,3.93,4.025340246273493,4.11,4.04,3.9009608455440787,5.212053231939163,3.881921331316187,3.9900890427900073 -2021,8,28,3,8,15,13,16,15,16,0.3545869254014103,11.0,5.142624030847042,16.294566196324652,1,0,0,0,0,0,0,2.5816522983943586,0.0,1.1194917063402754,0.0,6.056423841059603,4.19,3.8,3.84,4.190512971698113,4.07,4.23,4.071580213903743,4.924835868694957,4.129563609467455,4.2581082352941175 -2021,8,29,1,7,14,9,15,15,16,1.3545869254014102,12.0,4.603583054285778,16.84366056237876,1,0,0,0,0,0,0,1.2908261491971793,0.0,0.5441902037965232,0.0,6.056423841059603,4.19,3.8,3.84,4.190512971698113,4.07,4.23,4.071580213903743,4.924835868694957,4.129563609467455,4.2581082352941175 -2021,8,30,8,11,10,8,15,12,17,0.0,11.0,5.819199835003257,16.069113379351705,0,0,0,0,0,0,0,6.290826149197178,0.0,0.3320201461628033,0.0,6.056423841059603,4.19,3.8,3.84,4.190512971698113,4.07,4.23,4.071580213903743,4.924835868694957,4.129563609467455,4.2581082352941175 -2021,8,31,8,9,6,7,14,10,18,0.0,8.0,5.915597156524239,12.647283098162326,0,0,0,0,0,0,0,8.936239223795768,0.0,0.5546263862535766,0.0,5.976154923005133,4.11,3.85,3.97,4.161548242333583,4.22,4.25,4.046204819277108,5.152616179001721,4.046111111111111,4.144202630971614 -2021,9,1,1,4,5,6,13,12,19,0.0,4.0,3.9010305186720204,8.872735915135271,0,0,0,0,0,0,0,7.936239223795769,0.0,1.6852213969518763,0.0,5.7278621058257615,4.17,3.74,3.83,4.196711409395973,3.98,4.32,3.9017108433734937,4.733638814016172,4.091184210526316,4.197850318471337 -2021,9,2,1,1,1,4,10,9,19,0.0,3.0,3.5352008258394063,9.647283098162324,1,2,1,1,0,0,0,4.645413074598589,0.0,1.6149405482580557,0.0,5.443310144927536,4.4,3.86,3.88,4.355706866705136,4.02,4.15,4.176172724448587,4.802417218543046,4.286693548387096,4.4386404531822725 -2021,9,3,0,0,1,5,7,7,18,0.0,5.0,2.5569312065380587,12.196377464216434,3,3,1,2,0,0,0,3.290826149197179,0.0,1.6965155951934758,0.0,5.5041957364341085,4.49,3.82,3.87,4.519063545150502,3.98,4.57,4.088251504592968,4.876861598440546,4.365937161430119,4.6029623287671235 -2021,9,4,0,1,2,5,7,8,19,0.7091738508028206,8.0,2.5569312065380587,13.745471830270542,1,1,0,0,0,0,0,1.936239223795769,0.0,1.6258466039921486,0.0,5.815289575289576,4.49,3.57,3.43,4.6043069306930695,3.63,4.61,3.980050962627407,5.045536971830986,4.390454813939752,4.577707879843273 -2021,9,5,0,1,4,4,9,8,17,1.7091738508028205,11.0,3.6010590898363355,15.069113379351704,2,1,0,1,0,0,0,0.6454130745985897,0.0,0.9444600726315364,0.0,5.815289575289576,4.49,3.57,3.43,4.6043069306930695,3.63,4.61,3.980050962627407,5.045536971830986,4.390454813939752,4.577707879843273 -2021,9,6,6,5,3,6,12,8,16,1.7091738508028205,11.0,5.573220230699725,13.745471830270542,0,0,0,1,0,0,0,0.6454130745985897,0.0,0.10608502881685997,0.0,5.815289575289576,4.49,3.57,3.43,4.6043069306930695,3.63,4.61,3.980050962627407,5.045536971830986,4.390454813939752,4.577707879843273 -2021,9,7,1,2,5,6,11,8,15,2.063760776204231,12.0,5.251518421165388,14.745471830270542,0,0,0,0,0,0,0,0.6454130745985897,0.0,0.10608502881685997,0.0,5.815289575289576,4.49,3.57,3.43,4.6043069306930695,3.63,4.61,3.980050962627407,5.045536971830986,4.390454813939752,4.577707879843273 -2021,9,8,3,5,3,3,12,9,14,3.418347701605641,13.0,5.371368509694471,15.520019013297595,0,0,0,1,0,0,0,0.0,0.0,0.10608502881685997,0.0,8.628411967779057,4.44,3.94,4.03,4.769084394904459,4.3,5.01,4.265815140345903,7.127433290978398,4.352615384615384,4.563366371681416 -2021,9,9,3,2,0,2,11,6,13,2.35458692540141,13.0,6.779777982989052,17.29456619632465,0,0,1,2,0,0,0,0.0,0.0,0.06961372679285,0.0,14.951265950302217,4.74,4.22,4.3,4.912103055721989,4.5,4.91,4.468562367864694,9.869783737024221,4.684396632366698,4.768663375066126 -2021,9,10,2,1,0,4,7,3,12,0.0,10.0,6.417703752952359,16.745471830270542,0,1,1,0,0,0,0,5.0,0.0,0.18946381532193335,0.0,8.060257352941177,4.72,4.13,4.21,4.857692716640085,4.47,4.78,4.438858447488585,6.209810080350622,4.605906976744185,4.8271048109965635 -2021,9,11,0,0,4,7,7,5,12,0.0,10.0,5.299921283013269,15.520019013297595,3,2,0,1,0,0,0,3.9362392237957686,0.0,0.8343790446585355,0.0,6.73544719555331,4.79,4.21,4.33,4.880654970760234,4.51,4.88,4.522332918223329,5.589078860172301,4.644041095890411,4.870965711805556 -2021,9,12,1,2,6,6,9,7,11,0.0,10.0,3.9737988392469017,13.745471830270542,0,0,0,1,0,0,0,5.936239223795768,0.0,0.9404640734753955,0.0,6.73544719555331,4.79,4.21,4.33,4.880654970760234,4.51,4.88,4.522332918223329,5.589078860172301,4.644041095890411,4.870965711805556 -2021,9,13,6,7,8,7,12,10,12,0.0,9.0,3.9252848638201163,16.069113379351705,0,0,0,2,0,0,0,5.64541307459859,0.0,1.2724842196381987,0.0,6.73544719555331,4.79,4.21,4.33,4.880654970760234,4.51,4.88,4.522332918223329,5.589078860172301,4.644041095890411,4.870965711805556 -2021,9,14,1,6,10,5,12,11,11,0.0,8.0,2.587294030124112,15.29456619632465,1,0,0,1,0,0,0,5.872478447591538,0.0,2.0406149073274373,0.0,7.374753424657534,5.09,4.7,4.94,5.29142774566474,5.05,5.55,4.9994972599475815,6.252315789473684,4.964969387755102,5.08572872133696 -2021,9,15,7,9,3,4,12,8,12,0.0,6.0,2.965166396359501,14.29456619632465,0,0,0,1,0,0,0,6.581652298394358,0.0,1.0967854640284889,0.0,7.395123825789923,5.11,5.02,5.14,5.350193291642979,5.52,5.56,5.147302675215565,6.5695595432300165,4.980953271028038,5.188548485464525 -2021,9,16,3,5,2,6,11,9,13,0.0,2.0,3.090494333993954,12.74547183027054,0,0,0,0,0,0,0,10.581652298394358,0.0,2.783729247289813,0.0,7.447174556213017,5.47,5.08,5.22,5.433495400788437,5.54,5.53,5.307181818181818,6.220609670637702,5.267554502369669,5.445084488323524 -2021,9,17,1,5,6,5,12,10,14,0.0,2.0,1.386673807465335,11.970924647243487,1,0,0,1,0,0,0,9.581652298394358,0.0,4.962967656196215,0.0,7.2819279819955,5.23,4.98,5.09,5.239453904873753,5.26,5.41,5.129754242246928,5.936486314449396,5.133803245436105,5.247602996254682 -2021,9,18,5,8,6,5,12,10,15,0.0,2.0,1.5847700656746686,12.74547183027054,0,0,1,2,0,0,0,10.0,1.0,3.262451280061776,0.0,7.091859872611464,5.03,4.78,4.91,5.150237239396118,5.32,5.66,4.935329650092081,5.5660993425858285,4.906776859504133,5.0357191859135595 -2021,9,19,1,3,7,8,12,9,15,0.0,2.0,1.7525035002979492,11.42183028118938,1,1,0,0,0,0,0,11.0,1.0,4.037825113392792,0.0,7.091859872611464,5.03,4.78,4.91,5.150237239396118,5.32,5.66,4.935329650092081,5.5660993425858285,4.906776859504133,5.0357191859135595 -2021,9,20,0,0,7,8,10,10,18,0.0,4.0,0.7923850328373343,10.42183028118938,4,2,0,1,0,0,0,9.0,0.0,10.832198865370549,0.22545281697294586,7.091859872611464,5.03,4.78,4.91,5.150237239396118,5.32,5.66,4.935329650092081,5.5660993425858285,4.906776859504133,5.0357191859135595 -2021,9,21,0,1,3,0,10,10,14,0.0,8.0,1.386673807465335,9.520019013297595,4,1,0,4,0,0,0,4.581652298394359,0.0,11.684720693746376,0.6763584509188376,7.864853801169591,4.95,4.31,4.35,5.2065663322185065,4.71,5.93,4.576350490196078,5.79357034795764,4.678787878787879,4.98241889038203 -2021,9,22,2,5,1,0,11,3,6,0.0,9.0,1.386673807465335,10.069113379351704,0,0,6,7,0,1,0,7.581652298394358,0.0,7.734152142676883,0.6763584509188376,6.986289517470882,4.62,3.83,3.8,5.2107903402854,4.51,5.26,4.00449620518189,5.487986425339367,4.573896396396396,4.694615207902596 -2021,9,23,7,6,0,0,6,0,3,0.0,7.0,1.386673807465335,8.520019013297595,0,1,9,5,1,4,0,5.581652298394358,0.0,6.339816468806688,0.4509056339458917,6.099691516709512,4.62,4.03,4.18,4.793102766798419,4.66,4.86,4.28131799729364,5.250264608599779,4.538688147295742,4.670946196660482 -2021,9,24,5,0,0,0,4,0,4,0.7091738508028206,6.0,1.5847700656746686,7.970924647243487,0,3,4,6,2,4,0,3.5816522983943586,0.0,5.715679101215724,0.22545281697294586,6.19,4.63,4.16,4.25,4.790548033526757,4.63,4.91,4.406970896391153,5.500989867498052,4.58377358490566,4.737115219260533 -2021,9,25,1,0,0,0,5,1,6,0.7091738508028206,4.0,1.386673807465335,6.970924647243487,1,4,6,6,2,3,0,1.936239223795769,0.0,3.428417467683786,0.4509056339458917,6.193497409326425,4.46,3.97,3.96,4.877415730337079,4.32,5.11,4.318586659376709,4.973756449948401,4.418713858424726,4.727458282458282 -2021,9,26,0,0,0,2,4,2,7,0.0,1.0,1.1885775492560016,0.7745471830270542,2,4,3,1,1,2,0,7.227065372992948,0.0,1.7098925123981927,0.6763584509188376,6.193497409326425,4.46,3.97,3.96,4.877415730337079,4.32,5.11,4.318586659376709,4.973756449948401,4.418713858424726,4.727458282458282 -2021,9,27,0,0,4,6,5,3,10,0.0,0.0,1.492758836282195,3.0981887321082167,4,2,0,1,0,0,0,9.35458692540141,1.0,1.6613785369714074,1.9018112678917833,6.193497409326425,4.46,3.97,3.96,4.877415730337079,4.32,5.11,4.318586659376709,4.973756449948401,4.418713858424726,4.727458282458282 -2021,9,28,0,1,2,6,7,6,13,0.0,0.0,0.9904812910466678,4.647283098162325,3,2,2,1,0,0,0,13.06376077620423,3.0,5.9868553768685056,1.3527169018376752,6.926405555555555,5.05,4.44,4.4,5.185411622276028,4.62,5.27,4.8274391498114495,5.594299802761342,4.928428571428571,5.195457429931253 -2021,9,29,0,0,2,5,7,7,11,0.0,0.0,0.19809625820933358,3.8727359151352707,9,8,2,0,0,0,0,12.64541307459859,2.0,11.522539729238986,0.9018112678917835,7.053051754907793,5.42,4.83,4.71,5.488089171974523,4.95,5.38,5.255466155810984,5.906754863813229,5.322749706227967,5.609648825381448 -2021,9,30,0,0,2,5,7,7,12,0.0,2.0,0.0,3.0981887321082167,11,8,3,0,1,0,0,10.0,1.0,13.17696529940548,3.0290753527565126,6.867537260468418,5.28,4.69,4.7,5.255802075019952,4.96,5.13,4.973895596590909,5.791841620626151,5.058892005610097,5.360719360568384 -2021,10,1,0,0,2,3,7,8,9,0.0,4.0,0.19809625820933358,3.0981887321082167,11,10,2,1,1,0,0,11.29082614919718,0.0,11.563894743604159,3.2545281697294586,6.570492359932089,5.39,4.61,4.62,5.308963440860215,4.79,5.14,4.97099787685775,5.711455180442374,5.078311688311688,5.367233208040529 -2021,10,2,0,0,2,2,7,6,10,0.0,6.0,0.19809625820933358,3.0981887321082167,8,6,1,1,0,0,0,11.58165229839436,0.0,9.186022377368769,2.8036225357835667,6.484882591093117,5.27,3.78,3.31,5.366029173419773,3.35,5.06,4.342266760431317,5.636621253405994,5.05038961038961,5.369837858956827 -2021,10,3,0,0,3,2,8,6,11,0.0,6.0,0.5942887746280008,5.421830281189379,6,3,0,2,0,0,0,10.227065372992948,0.0,7.722109469274107,1.3527169018376752,6.484882591093117,5.27,3.78,3.31,5.366029173419773,3.35,5.06,4.342266760431317,5.636621253405994,5.05038961038961,5.369837858956827 -2021,10,4,0,1,2,0,9,7,9,0.0,6.0,0.7923850328373343,6.970924647243487,7,2,0,2,0,0,0,9.581652298394358,0.0,6.258827190512033,0.9018112678917835,6.484882591093117,5.27,3.78,3.31,5.366029173419773,3.35,5.06,4.342266760431317,5.636621253405994,5.05038961038961,5.369837858956827 -2021,10,5,0,0,2,0,9,4,7,0.0,2.0,0.19809625820933358,3.8727359151352707,9,3,0,3,0,0,0,12.64541307459859,0.0,5.840730009921574,1.450905633945892,6.941502797761791,5.74,4.56,4.68,5.889442477876106,4.99,5.85,5.142248312298209,6.429264367816091,5.487696577243293,5.713962489343563 -2021,10,6,0,1,2,0,9,6,6,0.0,0.0,0.19809625820933358,3.8727359151352707,4,1,1,2,0,0,0,16.0,2.0,7.142042100217779,1.450905633945892,7.00856753069577,6.03,5.18,5.3,6.036943164362519,5.65,6.22,5.563494967978041,6.32521613832853,5.838528464017186,6.0124584103512015 -2021,10,7,0,1,3,1,9,7,9,0.0,0.0,0.0,3.8727359151352707,5,1,1,1,0,0,0,17.64541307459859,4.0,8.658899433213788,0.6763584509188376,6.894229549778059,5.72,5.08,5.17,5.865667405764967,5.51,5.97,5.418082045817794,6.076181818181818,5.593648648648648,5.754138795986622 -2021,10,8,0,1,3,4,8,6,10,0.0,0.0,0.19809625820933358,4.872735915135271,4,1,0,1,0,0,0,18.645413074598586,6.0,10.585495701521495,1.450905633945892,6.741179820992677,5.39,4.71,4.76,5.68704833141542,5.35,6.02,5.105213208528341,5.707531545741325,5.251769911504425,5.450342968075928 -2021,10,9,0,0,4,4,7,6,11,0.0,0.0,0.0,3.3236415490811626,7,2,0,1,0,0,0,17.936239223795766,7.0,13.246193966683668,1.225452816972946,6.3468805891635975,5.13,4.35,4.3,5.063921134249004,4.95,5.91,4.734987491471458,5.225955056179775,4.914693295292439,5.3592757161458335 -2021,10,10,0,0,6,3,6,7,12,0.0,0.0,0.0,0.7745471830270542,7,3,0,2,0,0,0,17.0,4.0,15.122424198800942,3.5781697188106207,6.3468805891635975,5.13,4.35,4.3,5.063921134249004,4.95,5.91,4.734987491471458,5.225955056179775,4.914693295292439,5.3592757161458335 -2021,10,11,0,0,6,1,5,7,8,0.0,0.0,0.0,0.0,2,1,0,5,0,0,0,21.35458692540141,9.0,18.319610848284224,4.029075352756513,6.3468805891635975,5.13,4.35,4.3,5.063921134249004,4.95,5.91,4.734987491471458,5.225955056179775,4.914693295292439,5.3592757161458335 -2021,10,12,0,0,2,0,6,6,9,0.0,0.0,0.0,0.0,3,2,1,6,0,0,0,23.64541307459859,10.0,23.268407370567623,10.225452816972947,6.231533066132264,5.08,4.53,4.62,5.076942974720752,5.27,5.17,4.896356471658079,5.464788732394366,4.909920634920635,5.132570342205323 -2021,10,13,0,0,0,0,7,6,11,0.0,0.0,0.0,0.0,4,2,2,6,0,0,0,22.70917385080282,10.0,24.67853923017165,12.352716901837676,6.390736677115988,5.1,4.56,4.71,5.172260500235961,5.06,6.05,4.872033014769765,5.420356234096691,4.973474576271187,5.149919005462422 -2021,10,14,0,1,3,0,7,8,10,0.0,0.0,0.0,0.0,1,1,1,10,0,0,0,18.35458692540141,7.0,25.540405484027673,9.803622535783568,6.2082474226804125,5.16,4.76,4.9,5.162966589861751,5.48,6.19,5.095535714285715,5.424163385826772,5.056945244956772,5.225246296296296 -2021,10,15,0,2,2,0,8,8,9,0.0,0.0,0.0,0.0,2,0,6,14,0,0,1,14.290826149197178,2.0,23.63405969693425,8.705433803675351,6.395,5.6,5.03,5.19,5.44816,5.85,5.98,5.288358348968106,5.5324145785877,5.4422555410691,5.5930775379696245 -2021,10,16,2,2,0,0,7,1,1,0.0,2.0,0.0,1.5490943660541083,0,0,12,14,0,4,4,10.0,1.0,18.14807117586039,5.156339437621242,6.1461349693251535,4.98,4.59,4.63,5.1306935483870975,5.4,5.38,4.969440124416796,5.30693661971831,4.988822197055493,5.184291522667208 -2021,10,17,0,0,0,0,3,0,0,0.0,0.0,0.0,2.3236415490811626,8,11,12,11,6,10,5,13.35458692540141,4.0,13.84746911769212,3.4799809867024045,6.1461349693251535,4.98,4.59,4.63,5.1306935483870975,5.4,5.38,4.969440124416796,5.30693661971831,4.988822197055493,5.184291522667208 -2021,10,18,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,13,14,10,9,6,9,4,17.35458692540141,12.0,15.184618546014015,3.3527169018376752,6.1461349693251535,4.98,4.59,4.63,5.1306935483870975,5.4,5.38,4.969440124416796,5.30693661971831,4.988822197055493,5.184291522667208 -2021,10,19,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,14,12,8,7,5,7,1,16.35458692540141,12.0,19.98405337679892,4.901811267891784,6.540581395348838,4.77,4.42,4.49,5.219943082311734,5.16,5.39,4.6072873940388295,5.429921104536489,4.692602739726027,4.853280352355419 -2021,10,20,0,0,0,0,3,1,5,0.0,0.0,0.0,0.0,8,5,7,10,3,4,0,16.35458692540141,10.0,19.79691086633546,4.029075352756513,6.121944444444444,4.6,3.95,3.97,4.789474929044466,4.54,4.84,4.252922824302135,5.087609635577517,4.563123123123123,4.619484669375693 -2021,10,21,0,0,0,0,3,2,7,0.0,0.0,0.0,1.5490943660541083,5,4,9,18,2,2,1,11.0,4.0,15.280237632055123,3.8036225357835667,6.055040404040404,4.82,4.08,4.11,4.924912280701754,4.85,5.0,4.301637487126674,5.245015160703456,4.825034347399411,4.753573141486811 -2021,10,22,0,0,0,0,4,1,6,0.0,0.0,0.0,1.5490943660541083,4,7,17,19,2,8,1,15.70917385080282,6.0,13.387699814900886,2.3527169018376752,6.009102564102564,4.88,4.43,4.54,5.036910112359551,4.9,4.93,4.586423493044822,5.378378995433789,4.877000759301443,4.889378974934531 -2021,10,23,0,0,0,0,3,1,8,0.0,0.0,0.0,0.0,14,14,18,19,3,7,0,17.35458692540141,9.0,17.031043598741057,3.3527169018376752,6.02860487804878,4.95,4.45,4.48,4.996795192789184,4.86,4.89,4.72091344509066,5.2520098441345375,4.886550218340611,4.951161538461538 -2021,10,24,0,0,0,0,4,1,10,0.0,0.0,0.0,0.7745471830270542,18,16,18,16,3,2,0,16.35458692540141,8.0,16.455074974296334,3.1272640848647293,6.02860487804878,4.95,4.45,4.48,4.996795192789184,4.86,4.89,4.72091344509066,5.2520098441345375,4.886550218340611,4.951161538461538 -2021,10,25,0,0,0,0,5,2,9,0.0,0.0,0.0,2.3236415490811626,15,8,15,18,1,2,1,17.06376077620423,10.0,13.70846867304905,1.9018112678917833,6.02860487804878,4.95,4.45,4.48,4.996795192789184,4.86,4.89,4.72091344509066,5.2520098441345375,4.886550218340611,4.951161538461538 -2021,10,26,0,0,0,0,4,0,8,0.0,0.0,0.0,0.0,11,9,18,17,3,8,1,17.35458692540141,11.0,18.44288972820398,5.901811267891784,6.717876200640341,5.57,5.23,5.38,5.624308125502816,5.74,5.59,5.366033106710021,5.870621118012423,5.491790499390987,5.501267293857222 -2021,10,27,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,14,11,19,16,6,9,1,16.64541307459859,6.0,21.146773424626833,9.029075352756513,6.691622306717364,5.55,5.31,5.49,5.596983655274889,5.79,5.49,5.3894120436225705,5.958083333333333,5.484984076433121,5.464165277005744 -2021,10,28,0,0,0,0,3,0,1,0.0,2.0,0.0,0.0,17,14,15,17,7,9,3,12.872478447591536,2.0,17.736185219163357,5.7054338036753505,6.825751765893037,5.79,5.31,5.47,5.891362630414164,5.88,6.0,5.508079686479425,6.305796610169491,5.775212418300654,5.7073508220949565 -2021,10,29,0,0,0,0,3,0,0,0.0,2.0,0.0,2.3236415490811626,20,16,12,16,5,11,5,14.872478447591538,1.0,14.230152211131909,3.7054338036753505,6.478675799086758,5.41,4.73,4.64,5.665105949470252,5.23,5.63,4.948028410482489,5.911299435028248,5.38,5.409186259796565 -2021,10,30,0,0,0,0,1,0,0,0.0,0.0,0.0,1.5490943660541083,14,11,12,17,7,11,5,20.872478447591536,4.0,15.888898753067814,3.2545281697294586,6.478675799086758,5.41,4.73,4.64,5.665105949470252,5.23,5.63,4.948028410482489,5.911299435028248,5.38,5.409186259796565 -2021,10,31,0,0,0,0,1,0,0,0.0,0.0,0.0,0.7745471830270542,7,10,15,21,5,8,4,20.227065372992946,7.0,20.28090613815696,4.029075352756513,6.478675799086758,5.41,4.73,4.64,5.665105949470252,5.23,5.63,4.948028410482489,5.911299435028248,5.38,5.409186259796565 -2021,11,1,0,0,0,0,1,0,1,0.0,0.0,0.0,0.7745471830270542,12,14,23,26,7,11,5,21.29082614919718,9.0,21.937473947923973,4.4799809867024045,6.192858431018935,5.16,4.33,4.41,5.145299435028249,5.0,5.17,4.757883061049011,5.267788339670469,5.115673289183222,5.10164914992272 -2021,11,2,0,0,0,0,2,0,1,0.0,0.0,0.0,0.7745471830270542,19,20,25,28,9,15,7,20.227065372992946,6.0,20.74092774301581,4.7054338036753505,6.462334661354581,5.08,4.77,4.95,5.0708556611927404,5.26,5.26,4.92926779661017,5.2120625,4.953413715146948,4.9438792986271585 -2021,11,3,0,0,0,0,2,0,1,0.0,0.0,0.0,0.7745471830270542,23,24,28,27,12,19,10,15.581652298394358,4.0,19.01446917752735,5.156339437621242,6.1769779286927,5.33,5.01,5.25,5.238883910386965,5.73,5.17,5.183509334339053,5.413205317577548,5.244225232853514,5.259357650096837 -2021,11,4,0,0,0,0,2,0,0,0.0,0.0,0.0,1.5490943660541083,26,26,27,24,14,20,13,15.35458692540141,4.0,16.566674344786946,5.381792254594188,5.909958620689656,5.52,5.21,5.56,5.34389534883721,6.05,5.25,5.469077256541261,5.349690098261527,5.372972292191435,5.470707157114343 -2021,11,5,0,0,0,0,1,0,0,0.0,0.0,0.0,2.3236415490811626,26,25,25,20,15,19,13,19.0,5.0,15.870510399532595,4.7054338036753505,5.795471698113208,5.54,5.17,5.38,5.347532402791625,5.86,5.27,5.476884600974148,5.334409534127844,5.412924369747899,5.54942607003891 -2021,11,6,0,0,0,0,0,0,0,0.0,0.0,0.0,2.3236415490811626,26,25,21,15,15,18,10,23.64541307459859,8.0,15.589114757613528,3.2545281697294586,5.989192546583851,5.1,4.72,4.88,5.101613938560294,5.26,5.13,4.957291561394643,5.191818181818181,4.9947186796699174,5.129629048366386 -2021,11,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7745471830270542,24,23,17,13,12,16,7,25.35458692540141,10.0,16.465899299260894,3.8036225357835667,5.989192546583851,5.1,4.72,4.88,5.101613938560294,5.26,5.13,4.957291561394643,5.191818181818181,4.9947186796699174,5.129629048366386 -2021,11,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.7745471830270542,19,17,13,13,9,12,4,22.35458692540141,11.0,20.91688855301744,4.029075352756513,5.989192546583851,5.1,4.72,4.88,5.101613938560294,5.26,5.13,4.957291561394643,5.191818181818181,4.9947186796699174,5.129629048366386 -2021,11,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,15,13,15,16,6,10,3,22.35458692540141,12.0,22.934234792052447,5.029075352756513,6.391047835990888,5.16,4.57,4.66,5.037309236947792,5.06,5.1,4.843273082559844,5.302476265822785,5.02,5.0953707929264125 -2021,11,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,15,13,18,17,5,8,2,21.64541307459859,6.0,22.373982950546214,6.4799809867024045,6.190974729241877,4.67,4.11,4.16,4.6878245192307695,4.77,4.95,4.4025352112676055,5.007470167064439,4.547307692307692,4.672771952817824 -2021,11,11,0,0,0,0,2,0,2,0.0,1.0,0.0,0.0,21,17,15,20,6,8,4,19.581652298394356,4.0,24.28744957025911,6.156339437621242,5.603160588611646,4.44,3.7,3.74,4.659210775047259,4.36,4.63,3.9447617030290196,4.8967953667953665,4.394515539305302,4.387969366090386 -2021,11,12,0,0,0,0,2,0,0,0.0,3.0,0.0,1.5490943660541083,16,13,23,29,4,13,8,14.227065372992948,3.0,21.66397932456912,5.607245071567133,5.671936245572609,4.72,3.97,4.0,4.596926575698506,4.52,4.47,4.297122619600557,4.750046449900465,4.626900296150049,4.649489207447685 -2021,11,13,0,0,0,0,2,0,0,0.0,3.0,0.0,1.5490943660541083,18,20,28,29,11,22,12,15.872478447591538,3.0,17.789589324589883,5.156339437621242,5.27295652173913,4.72,4.42,4.53,4.527535714285714,5.27,3.96,4.630820367751061,4.669517966695881,4.5769338303821065,4.659640847401523 -2021,11,14,0,0,0,0,0,0,0,0.0,2.0,0.0,0.7745471830270542,23,26,29,29,16,21,9,13.581652298394358,3.0,16.676088250858978,4.930886620648296,5.27295652173913,4.72,4.42,4.53,4.527535714285714,5.27,3.96,4.630820367751061,4.669517966695881,4.5769338303821065,4.659640847401523 -2021,11,15,0,0,0,0,0,0,1,0.0,1.0,0.0,0.7745471830270542,24,25,31,23,15,20,4,12.35458692540141,4.0,14.097914216919504,4.254528169729459,5.27295652173913,4.72,4.42,4.53,4.527535714285714,5.27,3.96,4.630820367751061,4.669517966695881,4.5769338303821065,4.659640847401523 -2021,11,16,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,26,26,24,18,12,13,2,25.0,7.0,16.72564396327665,5.2545281697294595,5.832938659058487,4.55,4.36,4.54,4.691054232133807,5.33,4.48,4.534737071787039,5.423980343980344,4.47,4.471575535512965 -2021,11,17,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,26,23,16,22,8,5,1,28.290826149197176,9.0,30.430327790720405,8.479980986702405,6.168504672897196,4.94,4.55,4.67,5.240549110595514,5.19,5.84,4.723673225998807,5.613722060252672,4.8654041013269,4.864052655607975 -2021,11,18,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,16,14,26,31,4,11,8,27.227065372992946,10.0,30.957151810405755,10.283603522485972,6.120190073917635,4.74,4.4,4.47,5.117433962264151,4.75,5.92,4.583153210425937,5.34669449081803,4.6619632768361585,4.707660011196118 -2021,11,19,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,25,32,32,13,23,14,23.93623922379577,9.0,26.047896999348232,9.607245071567135,6.287572598659716,4.82,4.62,4.91,5.232645914396887,5.09,6.02,4.782592533247877,5.2881136950904395,4.740204953031597,4.815048714479025 -2021,11,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,29,28,26,16,20,8,25.29082614919718,10.0,24.65001663872364,9.479980986702405,5.845261669024045,4.78,4.53,4.78,5.0433439153439155,5.09,5.97,4.773153779322328,4.999393442622951,4.669312000000001,4.767732653732326 -2021,11,21,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,23,24,25,25,13,15,5,25.936239223795766,7.0,27.193473467732105,9.381792254594188,5.845261669024045,4.78,4.53,4.78,5.0433439153439155,5.09,5.97,4.773153779322328,4.999393442622951,4.669312000000001,4.767732653732326 -2021,11,22,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,23,34,33,11,18,8,25.872478447591536,5.0,24.713419141623064,8.058150705513025,5.845261669024045,4.78,4.53,4.78,5.0433439153439155,5.09,5.97,4.773153779322328,4.999393442622951,4.669312000000001,4.767732653732326 -2021,11,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,34,25,20,26,11,26.0,8.0,24.41492956273661,9.381792254594188,5.48958224543081,4.5,4.42,8.04,4.545866551126516,9.81,4.53,5.966864099464686,4.698344370860928,4.474518002322881,4.525200049856662 -2021,11,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,31,27,24,20,21,6,26.999999999999996,12.0,30.721062572989066,11.254528169729458,5.629917920656635,4.7,4.5,4.85,4.891500457456542,5.78,4.68,4.896840106342575,4.997920000000001,4.602348130841122,4.665557029177719 -2021,11,25,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,26,24,37,14,18,8,24.29082614919718,11.0,31.403648891912596,14.705433803675351,5.109293924466338,4.77,4.62,5.21,4.575670103092784,7.24,4.47,4.912368831168832,4.568946784922395,4.68,4.72538992144089 -2021,11,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,27,37,34,14,26,16,20.35458692540141,8.0,26.26487778418635,13.156339437621241,5.109293924466338,4.77,4.62,5.21,4.575670103092784,7.24,4.47,4.912368831168832,4.568946784922395,4.68,4.72538992144089 -2021,11,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,31,34,26,19,23,17,17.29082614919718,6.0,24.245178529509307,12.705433803675351,5.109293924466338,4.77,4.62,5.21,4.575670103092784,7.24,4.47,4.912368831168832,4.568946784922395,4.68,4.72538992144089 -2021,11,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,31,31,29,16,22,11,14.290826149197178,5.0,21.513555636412462,10.930886620648296,5.109293924466338,4.77,4.62,5.21,4.575670103092784,7.24,4.47,4.912368831168832,4.568946784922395,4.68,4.72538992144089 -2021,11,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,31,33,22,18,24,10,13.999999999999998,4.0,18.883676540695788,8.705433803675351,5.109293924466338,4.77,4.62,5.21,4.575670103092784,7.24,4.47,4.912368831168832,4.568946784922395,4.68,4.72538992144089 -2021,11,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,33,27,23,17,18,7,15.64541307459859,5.0,21.582331292496935,7.7054338036753505,4.9699487929773225,4.67,4.54,5.44,4.318172895432238,8.4,4.01,4.895862726406101,4.513675564681725,4.550078328981723,4.679487331749802 -2021,12,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,26,19,14,15,5,13.0,4.0,18.792963062536874,7.1563394376212415,4.726108054027013,4.16,3.99,4.34,4.017210810810811,8.11,3.7,4.2606569082470545,4.306878251821019,4.03247528830313,4.2573190602500945 -2021,12,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,23,20,18,16,9,9,3,17.64541307459859,8.0,17.616459394121435,6.930886620648296,4.5790393294648615,3.94,3.69,3.92,3.857032838154809,5.4,3.79,3.9107527996681877,4.139909995262909,3.866882745471878,3.9476113023863237 -2021,12,3,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,24,24,19,8,8,2,25.517891522190126,10.0,21.944760570056705,8.25452816972946,4.495112970711298,3.83,3.62,3.93,3.679178445229682,8.27,3.53,3.8563755458515283,3.9245676567656766,3.7333191308052833,3.826061360954504 -2021,12,4,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,33,26,28,28,9,10,3,26.872478447591536,11.0,23.05947804176096,9.705433803675351,4.695896043444531,3.74,3.38,3.59,3.7630610060649308,5.38,3.74,3.5906592729513243,4.062808065720687,3.653587038432555,3.696456096889623 -2021,12,5,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,29,26,26,24,11,7,1,29.227065372992946,10.0,23.592337554747505,9.479980986702405,4.695896043444531,3.74,3.38,3.59,3.7630610060649308,5.38,3.74,3.5906592729513243,4.062808065720687,3.653587038432555,3.696456096889623 -2021,12,6,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,20,19,27,39,7,8,7,29.227065372992946,11.0,33.62023958377835,11.83269788854008,4.695896043444531,3.74,3.38,3.59,3.7630610060649308,5.38,3.74,3.5906592729513243,4.062808065720687,3.653587038432555,3.696456096889623 -2021,12,7,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,31,44,43,15,27,15,24.22706537299295,14.0,29.770945334321315,13.930886620648296,4.9462068965517245,3.46,3.13,3.87,3.79353065539112,7.63,4.23,3.5810852713178294,4.287020925110132,3.4607216494845363,3.47434969737727 -2021,12,8,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,34,33,39,38,15,22,11,23.64541307459859,13.0,28.055898812903038,13.705433803675351,5.814934268185802,3.55,3.21,5.57,3.9876258992805753,12.46,4.24,3.9908713010803187,5.742365853658536,3.547308850090307,3.5238231382978724 -2021,12,9,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,37,33,32,29,18,19,4,30.70917385080282,17.0,30.6525041106047,14.803622535783568,5.638571428571428,3.57,3.22,3.46,4.28431543903454,9.05,4.75,3.562532885530367,5.542046126552336,3.545553997194951,3.603558445190157 -2021,12,10,0,0,0,0,2,0,7,0.0,0.0,0.0,0.0,33,27,22,27,13,9,1,29.0,19.0,37.56494717669268,17.57816971881062,5.904262613195343,3.46,2.95,3.15,4.114701873935264,4.05,4.72,3.206578002955457,5.053097345132743,3.401859410430839,3.4536438217846777 -2021,12,11,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,21,16,19,33,5,4,9,26.35458692540141,19.0,39.30860437506885,21.38179225459419,5.553983402489627,3.55,2.85,3.1,4.008194014447884,4.12,4.47,3.2718027210884357,4.459142857142857,3.4900000000000007,3.5364516600848326 -2021,12,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,23,27,29,12,23,17,28.290826149197176,19.0,32.19093301870867,18.930886620648295,5.553983402489627,3.55,2.85,3.1,4.008194014447884,4.12,4.47,3.2718027210884357,4.459142857142857,3.4900000000000007,3.5364516600848326 -2021,12,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,24,25,26,15,20,12,29.645413074598586,20.0,28.457769887553187,16.479980986702405,5.553983402489627,3.55,2.85,3.1,4.008194014447884,4.12,4.47,3.2718027210884357,4.459142857142857,3.4900000000000007,3.5364516600848326 -2021,12,14,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,24,24,25,24,13,16,4,30.70917385080282,20.0,26.98206799232423,14.029075352756514,6.841182432432433,3.82,3.21,3.43,4.9120416175893205,4.88,5.57,3.6424992453969214,6.050721735502711,3.6742531120331954,3.7622134025339644 -2021,12,15,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,28,25,16,14,13,12,0,31.70917385080282,24.0,33.44445098094855,20.225452816972947,6.220481927710843,3.4,2.79,3.08,4.510438999489536,3.72,5.39,3.361794708994709,5.620466666666666,3.347547434996486,3.423131160848893 -2021,12,16,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,21,17,15,30,8,6,3,29.645413074598586,22.0,38.89486465881619,21.352716901837674,5.758429003021148,3.58,2.9,2.97,4.624777975133215,3.76,5.09,3.3033839113680155,5.202016890213613,3.5643864065449966,3.5667703552609216 -2021,12,17,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,14,15,32,38,6,8,3,31.227065372992946,20.0,38.83083152658418,22.352716901837674,5.371276190476189,3.6,2.93,3.0,4.584682294879704,4.26,5.1,3.200182572614108,5.311795681937863,3.594001401541696,3.5555208333333335 -2021,12,18,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,28,25,31,41,5,5,7,27.936239223795766,18.0,42.02103400182475,22.930886620648295,5.911428571428572,3.5,3.04,3.72,4.566928406466512,29.22,5.06,3.482857881136951,5.360657276995305,3.4873650107991367,3.5111546344796176 -2021,12,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,30,29,34,41,8,21,20,28.645413074598586,18.0,37.184413055103086,21.38179225459419,5.911428571428572,3.5,3.04,3.72,4.566928406466512,29.22,5.06,3.482857881136951,5.360657276995305,3.4873650107991367,3.5111546344796176 -2021,12,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,37,32,38,20,27,20,30.808717671387306,19.0,33.22952661525703,18.930886620648295,5.911428571428572,3.5,3.04,3.72,4.566928406466512,29.22,5.06,3.482857881136951,5.360657276995305,3.4873650107991367,3.5111546344796176 -2021,12,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,34,34,39,20,25,16,29.517891522190126,17.0,31.717559412260762,18.25452816972946,6.963984835720304,3.73,3.12,4.07,5.554384337970118,8.11,6.47,3.789386291941497,6.727564102564102,3.737498440424205,3.7527445046193053 -2021,12,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,30,39,38,17,25,13,26.936239223795766,16.0,30.12611649170263,13.254528169729458,6.838078529657477,3.7,3.21,5.01,5.152337472607742,10.64,6.82,3.849146800501882,6.484553119730186,3.687676056338028,3.747129112352576 -2021,12,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,33,31,20,22,8,26.645413074598586,16.0,28.62140457756486,12.029075352756513,8.023218390804598,3.77,3.16,3.65,6.625290546400694,14.49,9.08,3.636580459770115,7.493954983922831,3.714009181331293,3.713770758122744 -2021,12,24,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,41,32,23,21,15,15,2,30.354586925401406,16.0,28.117093955842858,15.901811267891784,6.73679648241206,3.36,2.48,2.6,6.1106911764705885,7.23,7.02,2.8766918179674605,6.502211678832116,3.2842242990654205,3.1877464788732395 -2021,12,25,0,0,0,0,0,0,4,0.0,0.0,0.0,0.0,36,25,18,29,8,4,1,33.0,20.0,31.203904365058566,16.676358450918837,6.73679648241206,3.36,2.48,2.6,6.1106911764705885,7.23,7.02,2.8766918179674605,6.502211678832116,3.2842242990654205,3.1877464788732395 -2021,12,26,0,0,0,0,0,1,3,0.0,0.0,0.0,0.0,31,24,28,31,4,5,1,38.29082614919717,22.0,33.82098073525856,15.676358450918837,6.73679648241206,3.36,2.48,2.6,6.1106911764705885,7.23,7.02,2.8766918179674605,6.502211678832116,3.2842242990654205,3.1877464788732395 -2021,12,27,0,0,0,0,1,1,4,0.0,0.0,0.0,0.0,34,32,25,32,9,4,2,44.16330459678872,24.0,39.529150861347304,21.12726408486473,6.73679648241206,3.36,2.48,2.6,6.1106911764705885,7.23,7.02,2.8766918179674605,6.502211678832116,3.2842242990654205,3.1877464788732395 -2021,12,28,0,0,0,0,1,1,5,0.0,0.0,0.0,0.0,30,28,30,36,6,3,1,42.16330459678872,24.0,42.80194715536339,23.127264084864727,7.770362416107383,3.42,2.68,2.81,5.669100985221675,6.36,9.49,2.9688950429243977,7.052717696629213,3.505572559366754,3.1241474266474265 -2021,12,29,0,0,0,0,2,2,4,0.0,0.0,0.0,0.0,30,26,30,48,4,4,4,40.16330459678871,23.0,43.718604861426705,22.352716901837674,7.777003968253969,3.57,2.34,2.48,5.975338645418327,4.75,7.39,2.800284104249824,7.350595744680851,3.8385954269715357,3.273710290524029 -2021,12,30,0,0,0,0,2,2,3,0.0,0.0,0.0,0.0,27,23,31,42,5,6,5,39.227065372992946,21.0,40.5406324929703,22.803622535783568,6.932247301275761,3.51,2.43,2.48,4.812102312543798,4.14,6.22,2.881300515907137,6.455937762825904,3.6869080068143103,3.2806951522278847 -2021,12,31,0,0,0,0,3,2,4,0.0,0.0,0.0,0.0,24,20,26,39,5,5,4,38.517891522190126,20.0,38.89153716576189,20.254528169729458,6.932247301275761,3.51,2.43,2.48,4.812102312543798,4.14,6.22,2.881300515907137,6.455937762825904,3.6869080068143103,3.2806951522278847 -2022,1,1,0,0,0,0,4,3,6,0.0,0.0,0.0,0.0,21,17,27,55,2,2,4,42.52993752405926,21.0,50.63336092101757,23.55964689793992,7.244433656957929,3.62,2.74,3.51,5.631652173913043,5.81,6.87,3.4925203045685276,7.125530249110321,4.299079981507166,3.57025255907395 -2022,1,2,0,0,0,0,4,1,0,0.0,0.0,0.0,0.0,21,18,40,60,3,12,27,36.58853572803386,21.0,48.754767182324684,28.56490719529124,7.244433656957929,3.62,2.74,3.51,5.631652173913043,5.81,6.87,3.4925203045685276,7.125530249110321,4.299079981507166,3.57025255907395 -2022,1,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,38,46,51,17,32,27,31.941401796025396,20.0,41.07713179261687,24.34210049558554,7.244433656957929,3.62,2.74,3.51,5.631652173913043,5.81,6.87,3.4925203045685276,7.125530249110321,4.299079981507166,3.57025255907395 -2022,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,39,40,44,22,29,19,31.58853572803386,18.0,36.77655606019246,21.45087369676273,6.210345423143351,3.45,3.06,8.26,4.927136929460581,10.24,5.23,4.7002660075329565,5.977676380368098,3.487009213323884,3.445618238021638 -2022,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,35,40,53,18,24,16,29.529937524059257,14.0,36.7767674945606,19.228066997057027,5.603255813953489,3.87,3.25,5.38,4.797030393622322,7.13,5.22,4.103173101508566,5.228458244111349,4.0412410841654784,3.689246191756272 -2022,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,47,58,17,29,20,27.529937524059257,12.0,35.226962785124506,17.228066997057027,5.662439678284183,4.37,3.49,7.4,5.03569130216189,12.26,5.13,4.42142358974359,5.371528700906344,5.1694124358243005,3.854594273365749 -2022,1,7,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,34,45,51,16,28,17,23.235669660042326,11.0,23.69214863549854,12.782453597645622,5.42484279680901,3.95,3.54,15.39,4.505740556660039,23.08,4.87,6.685374106767549,5.019634340222575,4.002059785147128,3.7598376663005 -2022,1,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,43,43,45,47,23,28,14,28.941401796025396,16.0,31.077404827933925,16.55964689793992,4.848696369636964,3.94,3.54,8.94,4.339634941329857,22.68,4.67,5.159399718931942,4.466672,3.948472535741159,3.6997516883116885 -2022,1,9,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,39,38,38,49,16,20,9,27.941401796025396,15.0,37.374188679724284,16.896487096174134,4.848696369636964,3.94,3.54,8.94,4.339634941329857,22.68,4.67,5.159399718931942,4.466672,3.948472535741159,3.6997516883116885 -2022,1,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,38,39,49,50,17,28,18,27.58853572803386,13.0,36.04829477062078,17.56490719529124,4.848696369636964,3.94,3.54,8.94,4.339634941329857,22.68,4.67,5.159399718931942,4.466672,3.948472535741159,3.6997516883116885 -2022,1,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,48,45,38,24,30,20,24.235669660042326,10.0,34.508311865817454,18.119293795879837,5.02775204359673,3.97,3.75,9.62,4.359820971867007,20.33,4.72,5.601714179243525,4.689021897810219,3.926988360814743,3.9566058618569375 -2022,1,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,42,37,32,21,25,15,17.941401796025396,9.0,30.36008529802508,17.45087369676273,4.9728789808917195,3.87,3.66,5.26,4.199324675324675,16.68,4.52,4.249186393932429,4.587538179596823,3.8144614209320094,3.896306625141563 -2022,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,33,31,28,19,21,11,22.0,10.0,27.603958912540403,15.228066997057025,5.3682122093023255,4.42,4.31,5.2,4.7933876683203405,18.89,4.98,4.670338832712435,5.186522781774579,4.36,4.419617486338798 -2022,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,36,35,18,23,10,23.941401796025396,10.0,30.119077496544904,14.228066997057027,5.201803880440482,4.39,4.27,8.12,4.656316176470589,25.89,4.7,5.062833048676344,4.910583488516449,4.40671036204744,4.47421472458769 -2022,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,57,53,44,47,24,25,20,25.29426786401693,12.0,33.829733546028756,17.34210049558554,5.01103498542274,4.14,4.01,11.34,4.450242038216561,26.22,4.5,6.8823417059131335,4.758359240069085,4.104182366239638,4.158777417261518 -2022,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,45,46,44,24,30,22,25.58853572803386,9.0,32.500815590341496,16.342100495585537,5.01103498542274,4.14,4.01,11.34,4.450242038216561,26.22,4.5,6.8823417059131335,4.758359240069085,4.104182366239638,4.158777417261518 -2022,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,40,43,38,24,31,18,24.29426786401693,13.0,30.815139907888543,16.896487096174134,5.01103498542274,4.14,4.01,11.34,4.450242038216561,26.22,4.5,6.8823417059131335,4.758359240069085,4.104182366239638,4.158777417261518 -2022,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,35,30,24,27,13,25.0,14.0,30.996953988633443,17.228066997057027,5.01103498542274,4.14,4.01,11.34,4.450242038216561,26.22,4.5,6.8823417059131335,4.758359240069085,4.104182366239638,4.158777417261518 -2022,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,34,35,48,19,21,9,23.29426786401693,13.0,36.82735021153704,17.673680396468434,5.093710982658959,4.44,4.27,5.47,4.668795986622074,16.48,4.67,4.62,4.966171938361719,4.484586466165413,4.317026194144838 -2022,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,35,50,61,18,32,29,20.29426786401693,11.0,36.74750044816246,18.787713894996944,5.1321004566210044,4.59,4.36,13.98,4.703685914732866,22.5,4.51,6.3586145472538345,5.050627674750357,5.065847682119205,4.638536492530212 -2022,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,51,50,55,26,38,30,24.647133932008465,13.0,36.3688888825283,19.56490719529124,4.656138482023969,3.99,3.9,18.33,4.019968861209964,22.02,3.98,8.560446844163097,4.36760391198044,3.9696137339055797,4.071162391204764 -2022,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,50,50,47,47,28,37,28,26.235669660042326,13.0,34.46722807738897,20.342100495585537,4.391097560975609,3.89,3.74,12.67,3.9410095011876485,21.67,3.99,6.757748007085916,4.108098591549296,3.86,3.8514631782945736 -2022,1,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,46,45,44,27,32,21,25.824205388076184,11.0,33.22953814035198,18.34210049558554,4.391097560975609,3.89,3.74,12.67,3.9410095011876485,21.67,3.99,6.757748007085916,4.108098591549296,3.86,3.8514631782945736 -2022,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,42,46,41,25,26,18,26.529937524059257,12.0,33.39237775991697,17.896487096174134,4.391097560975609,3.89,3.74,12.67,3.9410095011876485,21.67,3.99,6.757748007085916,4.108098591549296,3.86,3.8514631782945736 -2022,1,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,37,52,58,20,27,19,27.88280359205079,14.0,37.551003314566614,18.67368039646843,4.595165517241379,4.23,3.93,6.35,4.223155598642753,20.81,4.1,4.679403594771242,4.328015364916773,4.784851784633999,3.976467733039162 -2022,1,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,47,57,51,23,34,23,28.235669660042326,15.0,40.01896475436372,21.34210049558554,4.695860349127182,4.09,3.93,13.68,4.088105560791705,25.02,4.08,5.752109395446218,4.431861861861862,3.992722273143904,3.993480267152398 -2022,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,49,50,44,24,30,20,27.58853572803386,14.0,40.76491068080187,20.56490719529124,4.9523336006415395,4.24,4.1,9.82,4.526990241397021,20.66,4.5,5.865183932346723,4.766517647058824,4.226837121212122,4.218949853260177 -2022,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,44,47,49,23,31,20,27.235669660042326,14.0,39.34690742391614,20.787713894996944,4.946421125781793,4.4,4.27,8.59,4.470102095647501,23.23,4.58,5.856603773584905,4.79423487544484,4.3327928772258675,4.293805156974863 -2022,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,48,53,42,30,38,20,26.88280359205079,13.0,35.194423359428285,17.787713894996944,5.412074175824176,5.13,5.22,15.06,5.048746569075938,27.68,5.01,7.624446529080674,5.220887372013651,4.98,5.233041322314049 -2022,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,51,47,41,31,29,15,26.29426786401693,13.0,33.3664311913356,17.233327294408348,5.412074175824176,5.13,5.22,15.06,5.048746569075938,27.68,5.01,7.624446529080674,5.220887372013651,4.98,5.233041322314049 -2022,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,47,43,33,25,24,12,28.70573213598307,16.0,33.66372601988616,16.67368039646843,5.412074175824176,5.13,5.22,15.06,5.048746569075938,27.68,5.01,7.624446529080674,5.220887372013651,4.98,5.233041322314049 -2022,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,43,33,35,22,19,8,31.0,17.0,40.80582970224777,18.67368039646843,5.456356073211315,5.08,4.98,6.13,5.074210526315789,22.64,5.09,5.497134637514384,5.296476462196861,5.023650793650794,5.193243532178747 -2022,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,36,54,17,18,13,32.58853572803386,19.0,48.55249673312745,22.119293795879837,5.949877089478859,5.31,5.04,5.77,5.873467015402499,13.53,5.59,5.359562350119904,5.83492665655033,5.71294578313253,5.274918032786886 -2022,2,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,28,45,60,11,18,31,28.235669660042326,18.0,50.06944934538414,30.901747393525454,7.401710615280596,6.36,5.83,6.53,7.185210251306295,16.23,5.75,6.264936305732483,8.138699867783163,6.735091116173121,6.628506046511626 -2022,2,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,30,50,56,8,32,35,26.647133932008465,16.0,43.823665914782495,28.12455409323116,5.8982673267326735,5.4,5.37,6.65,5.758763532763532,22.91,4.7,5.7500029563932005,6.10090661831369,5.607347275729224,5.8902296939932 -2022,2,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,44,52,47,21,35,30,24.29426786401693,14.0,37.81403476197549,23.678940693819754,5.3393083573487035,5.04,5.03,10.34,4.848336973478939,21.34,4.48,6.224347474747475,5.038990889978977,4.926968381897087,5.075770648967551 -2022,2,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,48,45,44,41,24,30,25,22.88280359205079,10.0,35.56848087268758,22.233327294408348,5.3393083573487035,5.04,5.03,10.34,4.848336973478939,21.34,4.48,6.224347474747475,5.038990889978977,4.926968381897087,5.075770648967551 -2022,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,41,39,42,41,22,29,20,23.235669660042326,9.0,32.037153834556406,20.010520594702648,5.3393083573487035,5.04,5.03,10.34,4.848336973478939,21.34,4.48,6.224347474747475,5.038990889978977,4.926968381897087,5.075770648967551 -2022,2,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,33,39,32,19,25,17,23.58853572803386,8.0,30.638977745319405,16.010520594702648,4.439412742382271,4.09,3.99,4.95,3.929294947121034,12.86,3.8,4.412837334437087,3.9200985221674878,3.967520071364853,4.110736662996698 -2022,2,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,33,29,18,21,14,20.58853572803386,5.0,28.715806013260632,13.787713894996944,4.354968814968815,4.08,3.91,4.42,3.9249770290964783,11.42,3.81,4.257380713209442,3.9702359108781127,3.987225,4.113784231448763 -2022,2,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,29,32,31,15,19,13,19.88280359205079,3.0,25.118043160611535,11.787713894996944,4.084411764705883,3.79,3.67,4.05,3.63605611847233,8.74,3.58,4.022139565503621,3.734754244861484,3.6582758620689653,3.826119266055046 -2022,2,11,0,0,0,0,0,0,0,0.0,1.0,0.0,0.0,27,25,30,32,13,16,10,18.88280359205079,3.0,27.025491468237465,10.34210049558554,4.044290657439446,3.68,3.38,3.56,3.5474306393244874,4.46,3.36,3.626717131474104,3.54710775047259,3.58,3.6870346702923182 -2022,2,12,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,21,23,43,52,11,21,17,20.88280359205079,3.0,32.08544848073082,11.678940693819754,4.0295000000000005,3.78,3.58,5.78,3.5862892095357592,14.63,3.35,4.548178694158076,3.560624277456647,3.701254752851711,3.7380631965016224 -2022,2,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,37,48,50,17,31,21,21.177071456067722,3.0,29.344784804551704,12.23332729440835,4.0295000000000005,3.78,3.58,5.78,3.5862892095357592,14.63,3.35,4.548178694158076,3.560624277456647,3.701254752851711,3.7380631965016224 -2022,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,47,48,49,43,25,28,16,25.29426786401693,7.0,27.44871350773786,11.56490719529124,4.0295000000000005,3.78,3.58,5.78,3.5862892095357592,14.63,3.35,4.548178694158076,3.560624277456647,3.701254752851711,3.7380631965016224 -2022,2,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,46,39,34,22,21,11,25.058598203974608,17.0,27.835017102974575,12.450873696762729,4.198641509433962,3.88,3.76,6.06,3.7545668591737003,22.35,3.6,4.356664125047655,3.73805359661495,3.7889340101522846,3.871014258415405 -2022,2,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,35,28,30,15,14,3,23.70573213598307,17.0,32.39386016497481,18.114033498528514,4.421516393442623,4.01,3.65,3.84,3.8937611607142855,5.04,3.85,3.9359135775389342,3.99,3.965068493150685,4.043670523678874 -2022,2,17,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,26,22,27,45,7,7,7,24.941401796025396,14.0,37.09076240258884,20.342100495585537,4.580828924162257,4.32,3.74,3.82,4.168093443858328,4.48,4.03,3.967280388151175,4.218878005342832,4.326771344455348,4.241480989740495 -2022,2,18,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,15,22,44,43,8,27,22,21.647133932008465,12.0,33.509619174844715,19.34210049558554,4.660640104506858,4.46,4.21,4.47,4.358462401795735,8.91,4.18,4.435614886731392,4.425421348314607,4.404332603938731,4.434502859924546 -2022,2,19,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,38,45,43,18,27,18,24.29426786401693,11.0,27.64336815072894,15.34210049558554,4.851937046004842,4.36,4.11,4.41,4.444550084889643,10.07,4.42,4.435723767383059,4.454989361702127,4.410221105527638,4.3485415040333075 -2022,2,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,42,39,34,31,19,21,12,25.705732135983073,13.0,26.26677417173013,13.673680396468432,4.851937046004842,4.36,4.11,4.41,4.444550084889643,10.07,4.42,4.435723767383059,4.454989361702127,4.410221105527638,4.3485415040333075 -2022,2,21,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,30,28,26,30,13,16,3,30.0,19.0,33.30651163719705,16.005260297351324,4.851937046004842,4.36,4.11,4.41,4.444550084889643,10.07,4.42,4.435723767383059,4.454989361702127,4.410221105527638,4.3485415040333075 -2022,2,22,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,25,22,24,45,7,7,7,35.941401796025396,21.0,47.49238870497445,16.55964689793992,4.851937046004842,4.36,4.11,4.41,4.444550084889643,10.07,4.42,4.435723767383059,4.454989361702127,4.410221105527638,4.3485415040333075 -2022,2,23,0,0,0,0,3,1,1,0.0,0.0,0.0,0.0,16,15,41,58,2,16,24,38.647133932008465,25.0,50.58098630088231,22.450873696762727,5.222391475927388,4.51,3.94,3.98,4.79394372693727,4.87,4.77,4.203156288156288,4.901030444964871,4.8185988279168885,4.383275484677924 -2022,2,24,0,0,0,0,2,1,0,0.0,0.0,0.0,0.0,39,36,42,57,9,16,29,37.0,23.0,49.84602432142355,27.450873696762727,5.634615784008307,4.71,4.22,4.71,5.410471857094708,15.41,5.45,4.421696322657176,5.514345951126018,5.1029846153846155,4.505002110595188 -2022,2,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,40,34,41,54,8,22,30,32.941401796025396,21.0,47.09589998395265,23.67368039646843,5.761699699699699,4.81,4.51,5.15,5.154938837920489,23.73,5.24,4.726880443388757,5.601310089804543,4.896132596685083,4.679734005319893 -2022,2,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,45,39,41,45,14,26,28,31.29426786401693,18.0,43.44471591726831,20.896487096174134,4.9043903979785215,4.36,4.22,5.18,4.313549920760697,23.23,4.3,4.516059957173447,4.474471635150167,4.303236593059936,4.35663691376702 -2022,2,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,39,33,35,37,14,23,20,26.58853572803386,13.0,36.659354219207664,17.896487096174134,4.9043903979785215,4.36,4.22,5.18,4.313549920760697,23.23,4.3,4.516059957173447,4.474471635150167,4.303236593059936,4.35663691376702 -2022,2,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,43,37,31,28,14,20,17,19.58853572803386,8.0,29.266886360125,13.34210049558554,4.9043903979785215,4.36,4.22,5.18,4.313549920760697,23.23,4.3,4.516059957173447,4.474471635150167,4.303236593059936,4.35663691376702 -2022,3,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,40,32,24,22,12,16,12,15.29426786401693,4.0,21.73837896542886,7.896487096174134,4.504888888888889,4.1,3.85,4.04,3.9006273369339426,8.29,3.75,4.055728239011779,3.803903614457831,4.00361797752809,4.112815611766052 -2022,3,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,27,24,20,9,11,9,18.647133932008465,4.0,18.862668586708097,6.673680396468431,4.785869373345101,4.26,3.89,4.04,4.10813378574891,5.24,3.96,4.103224199288256,4.071730496453901,4.144180904522612,4.214445238095238 -2022,3,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,33,29,34,30,7,9,5,22.352866067991535,10.0,18.825437719853944,5.896487096174134,5.042380952380952,4.46,4.27,4.73,4.252418627941913,21.8,4.16,4.524600767754319,4.315543478260869,4.384824624194703,4.4524989384288745 -2022,3,4,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,44,40,33,26,12,8,3,24.411464271966143,16.0,22.29842722821677,10.114033498528514,4.864624277456647,4.38,4.17,4.65,4.161489250131096,15.58,4.11,4.460079435127978,4.211047765793529,4.296504918032786,4.3790915058421955 -2022,3,5,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,38,32,18,22,8,5,1,24.352866067991535,20.0,30.1859626868741,14.559646897939917,4.943969849246232,4.55,3.96,3.97,4.4824367245657575,5.14,4.33,4.175222859664608,4.39402376910017,4.4767196652719665,4.551456704315088 -2022,3,6,0,0,0,0,3,2,4,0.0,0.0,0.0,0.0,23,17,17,33,2,1,4,24.352866067991535,20.0,36.52646834106342,20.228066997057027,4.943969849246232,4.55,3.96,3.97,4.4824367245657575,5.14,4.33,4.175222859664608,4.39402376910017,4.4767196652719665,4.551456704315088 -2022,3,7,0,0,0,0,4,2,1,0.0,0.0,0.0,0.0,17,12,27,38,1,2,15,24.29426786401693,17.0,39.58589160311243,22.119293795879837,4.943969849246232,4.55,3.96,3.97,4.4824367245657575,5.14,4.33,4.175222859664608,4.39402376910017,4.4767196652719665,4.551456704315088 -2022,3,8,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,26,26,33,37,8,19,21,25.35286606799154,15.0,38.52057848144452,22.119293795879837,4.971754385964911,4.69,4.3,4.5,4.562918540729635,5.09,4.32,4.593264764432647,4.64390350877193,4.6183397683397684,4.734973025993134 -2022,3,9,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,33,31,31,41,10,19,18,27.29426786401693,14.0,39.780277939748174,19.896487096174134,4.872439560439561,4.51,4.15,4.37,4.461466372657111,5.5,4.34,4.445453137103021,4.305480367585631,4.501819322459222,4.485371298405466 -2022,3,10,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,28,35,45,12,15,14,29.58853572803386,14.0,45.101098544033576,18.896487096174134,4.844563543003851,4.43,4.1,4.32,4.449049836981835,4.77,4.19,4.370221743147521,4.526538461538462,4.413909774436091,4.405793792897643 -2022,3,11,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,27,25,36,47,10,14,19,25.235669660042326,12.0,41.705493143285494,20.56490719529124,4.679395643007731,4.47,4.06,4.14,4.374962562396006,4.71,4.12,4.25605235042735,4.430518444666002,4.476501283147989,4.488998193691816 -2022,3,12,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,27,30,46,46,15,34,24,20.647133932008465,11.0,31.452088181945065,16.342100495585537,4.786932801064538,4.52,4.48,5.8,4.3012354312354315,7.52,3.97,4.9108330089529,4.253370078740157,4.414065359477124,4.533746364900746 -2022,3,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,39,35,32,24,28,18,23.411464271966143,13.0,25.962606232858683,13.896487096174134,4.786932801064538,4.52,4.48,5.8,4.3012354312354315,7.52,3.97,4.9108330089529,4.253370078740157,4.414065359477124,4.533746364900746 -2022,3,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,27,23,23,15,19,8,21.647133932008465,9.0,25.171713329592894,11.119293795879837,4.786932801064538,4.52,4.48,5.8,4.3012354312354315,7.52,3.97,4.9108330089529,4.253370078740157,4.414065359477124,4.533746364900746 -2022,3,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,19,19,21,10,12,5,20.0,9.0,22.267148381939073,7.342100495585539,4.728653610771114,4.29,3.91,4.03,4.053729777000438,4.55,3.89,4.242580281690141,4.080879741727199,4.124561522773623,4.334649239797279 -2022,3,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,20,16,15,16,7,8,4,21.0,8.0,24.007575983370483,6.673680396468431,4.585154511742893,4.17,3.74,3.81,3.8923975044563277,4.17,3.87,4.0298060163058755,3.9057858376511225,3.9654646324549234,4.207411657766163 -2022,3,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,21,17,12,17,5,6,3,23.0,8.0,26.684528473669737,9.119293795879837,4.61311844077961,4.22,3.79,3.84,4.060614035087719,4.16,3.99,4.100118746841839,4.035228013029315,4.100533864541832,4.3640927280253905 -2022,3,18,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,10,9,18,23,5,7,6,19.647133932008465,7.0,27.203300802847036,10.010520594702648,4.750222423967317,4.51,3.86,3.87,4.153370165745857,4.15,3.97,4.124373711340206,4.071850723533892,4.272211942809083,4.530491672005125 -2022,3,19,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,17,9,20,22,2,12,8,21.352866067991535,12.0,23.750882464704993,9.34210049558554,4.8238712011577425,4.37,3.85,3.88,4.164646892655368,4.16,3.94,4.258620384047267,4.170323275862069,4.2,4.458004136504654 -2022,3,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,15,16,18,16,7,12,6,25.705732135983073,12.0,23.69059342931923,10.78245359764562,4.8238712011577425,4.37,3.85,3.88,4.164646892655368,4.16,3.94,4.258620384047267,4.170323275862069,4.2,4.458004136504654 -2022,3,21,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,19,17,15,15,8,10,4,24.352866067991535,9.0,27.14532441641968,12.119293795879837,4.8238712011577425,4.37,3.85,3.88,4.164646892655368,4.16,3.94,4.258620384047267,4.170323275862069,4.2,4.458004136504654 -2022,3,22,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,24,20,19,20,6,6,7,14.29426786401693,3.0,27.0672353201672,12.23332729440835,4.858613138686132,4.23,3.9,4.04,4.121379821958457,4.74,4.05,4.280461893764434,4.222238297872341,4.132407559572719,4.3817763332448925 -2022,3,23,0,0,0,0,3,0,0,0.0,1.0,0.0,0.0,28,24,15,27,5,5,12,16.29426786401693,2.0,22.651130865864808,10.456133994114051,4.982506775067751,4.55,4.11,4.15,4.360483706720977,5.09,4.27,4.389685393258427,4.396131322094056,4.383441064638783,4.632714080688885 -2022,3,24,0,0,0,0,3,0,0,0.0,1.0,0.0,0.0,27,22,21,26,5,13,11,18.235669660042326,1.0,19.01224465084427,7.564907195291242,5.1748790322580644,4.77,4.4,4.52,4.525574803149606,5.1,4.41,4.780847039473684,4.565440313111546,4.59307,4.885587844254512 -2022,3,25,0,0,0,0,1,0,0,0.0,1.0,0.19772485917494179,1.554386600588595,19,19,24,24,8,17,6,17.941401796025396,2.0,16.721745091415496,4.673680396468431,5.109634146341463,4.81,4.41,4.41,4.528009592326138,4.75,4.3,4.6986646971935,4.540808080808081,4.657186629526462,4.853389245776826 -2022,3,26,0,0,0,0,0,0,1,0.0,0.0,0.19772485917494179,3.10877320117719,20,21,32,30,11,15,3,14.588535728033861,3.0,12.992047255270164,3.0052602973513234,5.499525979945305,5.2,5.09,5.34,4.885838967424708,8.07,4.7,5.239084490468346,4.723939393939394,5.062052810902896,5.175031766200762 -2022,3,27,0,0,0,0,0,0,3,0.0,0.0,0.19772485917494179,3.10877320117719,24,28,36,33,14,19,2,12.647133932008465,8.0,12.285697423232307,2.3368401982342153,5.499525979945305,5.2,5.09,5.34,4.885838967424708,8.07,4.7,5.239084490468346,4.723939393939394,5.062052810902896,5.175031766200762 -2022,3,28,0,0,0,0,1,0,4,0.0,0.0,0.0,0.7771933002942975,39,40,38,29,15,16,1,15.0,13.0,12.285461348484596,3.782453597645621,5.499525979945305,5.2,5.09,5.34,4.885838967424708,8.07,4.7,5.239084490468346,4.723939393939394,5.062052810902896,5.175031766200762 -2022,3,29,0,0,0,0,1,1,5,0.0,0.0,0.0,0.0,38,36,33,21,14,10,1,15.647133932008465,13.0,19.04518622495758,11.114033498528514,5.456155133928571,5.12,5.11,5.43,4.828758404303003,10.61,4.54,5.271855084229754,4.856068237205524,4.976831641285956,5.197049126815734 -2022,3,30,0,0,0,0,2,2,5,0.0,0.0,0.0,0.0,31,30,18,24,8,2,2,18.705732135983073,11.0,23.368757280501047,10.450873696762729,5.3132142857142854,5.0,4.73,4.87,4.6768265039232775,5.64,4.38,4.94561435973353,4.6881762917933125,4.855257731958763,5.048324408360684 -2022,3,31,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,20,16,20,30,3,9,8,21.70573213598307,12.0,23.028654956969252,9.119293795879837,5.5491880074953155,5.13,4.69,4.65,4.943881253435954,4.97,4.68,4.888163542515621,4.936033994334278,5.034906166219839,5.1651851285189725 -2022,4,1,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,16,18,28,27,6,16,6,21.29426786401693,8.0,22.00852358018991,5.119293795879836,5.704853932584269,5.38,5.2,5.34,5.111569767441861,5.59,4.96,5.311544401544401,4.931344195519348,5.253404411764706,5.349180865006553 -2022,4,2,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,22,22,28,25,11,15,4,21.0,9.0,19.105409365994944,4.2280669970570255,5.798342351205115,5.39,5.13,5.25,5.127910447761194,5.51,5.0,5.255488907148726,5.14884012539185,5.274847198641766,5.356293919460933 -2022,4,3,0,0,0,0,2,0,3,0.0,0.0,0.0,0.7771933002942975,25,24,25,21,8,12,1,20.352866067991535,8.0,19.958869606409138,3.782453597645621,5.798342351205115,5.39,5.13,5.25,5.127910447761194,5.51,5.0,5.255488907148726,5.14884012539185,5.274847198641766,5.356293919460933 -2022,4,4,0,0,0,0,2,0,3,0.0,0.0,0.0,1.554386600588595,21,22,22,21,10,9,2,21.70573213598307,7.0,18.928183560374315,4.2280669970570255,5.798342351205115,5.39,5.13,5.25,5.127910447761194,5.51,5.0,5.255488907148726,5.14884012539185,5.274847198641766,5.356293919460933 -2022,4,5,0,0,0,0,3,0,9,0.0,0.0,0.19772485917494179,3.10877320117719,21,20,20,18,8,9,0,23.352866067991535,5.0,20.773321388141916,2.3368401982342153,5.920826686004351,5.55,5.22,5.38,5.344843049327355,5.65,5.26,5.38486816084377,5.473103975535168,5.436629318394024,5.506247992290396 -2022,4,6,0,0,0,0,5,2,5,0.0,2.0,0.0,3.8859665014714873,22,17,17,21,3,4,2,20.941401796025396,2.0,24.765689528355136,3.4508736967627285,6.115789177001127,5.86,5.56,5.7,5.7191121192482175,6.03,5.62,5.695831353919239,5.7527685492801774,5.730000000000001,5.800745562130178 -2022,4,7,0,0,0,0,5,0,0,0.0,4.0,0.0,4.663159801765785,21,17,21,25,4,11,6,13.588535728033861,1.0,22.026230679624604,4.564907195291241,6.50951566951567,6.19,5.95,6.19,5.937972318339101,6.54,5.78,6.067020741671905,5.987517463729178,6.063121852970795,6.110682748538012 -2022,4,8,0,0,0,0,1,0,0,0.0,5.0,0.39544971834988357,4.663159801765785,14,15,25,26,9,19,8,18.647133932008465,1.0,17.455274444360995,4.342100495585539,6.47738475177305,5.96,5.65,5.79,5.817341655108645,6.04,5.75,5.829348484848485,5.886418152350081,5.871824742268041,5.925357643758766 -2022,4,9,0,0,0,0,0,0,0,0.0,1.0,0.5931745775248254,3.8859665014714873,19,19,26,22,13,18,4,24.352866067991535,3.0,18.018026428798233,3.228066997057026,6.499865771812081,6.08,5.81,5.94,5.813608825729244,6.16,5.8,5.993293108071868,5.775529676934635,5.91612620508326,6.0509355568117575 -2022,4,10,0,0,0,0,0,0,3,0.0,0.0,0.0,3.10877320117719,22,23,20,15,12,10,1,26.705732135983073,8.0,24.617684226193457,2.559646897939918,6.499865771812081,6.08,5.81,5.94,5.813608825729244,6.16,5.8,5.993293108071868,5.775529676934635,5.91612620508326,6.0509355568117575 -2022,4,11,0,0,0,0,0,0,7,0.0,0.0,0.0,2.3315799008828924,17,19,14,15,7,8,0,26.411464271966143,13.0,23.97031089376693,3.5596468979399183,6.499865771812081,6.08,5.81,5.94,5.813608825729244,6.16,5.8,5.993293108071868,5.775529676934635,5.91612620508326,6.0509355568117575 -2022,4,12,0,0,0,0,2,2,9,0.0,0.0,0.0,0.0,11,11,12,11,2,1,0,28.058598203974604,17.0,29.65385275668291,5.89122679882281,7.153119752540874,6.28,5.87,5.94,6.250870813397129,6.18,6.23,6.074447351209941,6.450551132884262,6.066432748538012,6.210642226031914 -2022,4,13,0,0,0,0,4,5,8,0.0,0.0,0.0,0.0,12,6,7,20,0,0,1,28.0,16.0,34.91909188254429,14.005260297351324,7.445060240963854,6.42,6.02,6.1,6.359302514193025,6.22,6.61,6.238591065292095,6.628914431673053,6.28,6.382340556323959 -2022,4,14,0,1,0,0,6,1,2,0.0,0.0,0.0,0.0,13,2,19,26,0,6,4,27.352866067991535,14.0,29.289235744404845,10.228066997057027,7.290946185688942,6.65,6.17,6.22,6.493085867620751,6.36,6.46,6.418130012663571,6.622594840667678,6.563151010701547,6.57711657323559 -2022,4,15,0,0,0,0,3,0,4,0.0,0.0,0.0,0.0,12,12,17,27,4,7,1,25.35286606799154,11.0,24.508956560193056,5.005260297351324,7.6113014403292185,6.91,6.59,6.8,6.797357746478873,6.96,6.81,6.754261616804583,6.787031729785056,6.891884297520662,6.805530179445351 -2022,4,16,0,0,0,0,3,1,7,0.0,0.0,0.0,0.7771933002942975,10,10,22,27,2,6,2,27.058598203974608,12.0,22.877351888451756,3.3368401982342153,7.6113014403292185,6.91,6.59,6.8,6.797357746478873,6.96,6.81,6.754261616804583,6.787031729785056,6.891884297520662,6.805530179445351 -2022,4,17,0,0,0,0,4,1,7,0.0,0.0,0.0,3.10877320117719,23,23,27,28,4,8,2,22.70573213598307,8.0,20.285100827375413,2.1140334985285127,7.6113014403292185,6.91,6.59,6.8,6.797357746478873,6.96,6.81,6.754261616804583,6.787031729785056,6.891884297520662,6.805530179445351 -2022,4,18,0,0,0,0,4,0,3,0.0,0.0,0.19772485917494179,3.8859665014714873,22,25,29,26,10,12,3,22.352866067991535,7.0,17.953768985614683,2.559646897939918,7.6113014403292185,6.91,6.59,6.8,6.797357746478873,6.96,6.81,6.754261616804583,6.787031729785056,6.891884297520662,6.805530179445351 -2022,4,19,0,0,0,0,2,0,1,0.0,0.0,0.39544971834988357,6.21754640235438,20,24,25,26,12,16,4,22.058598203974604,8.0,15.12281437188717,1.114033498528513,8.099878787878788,7.61,7.26,7.49,7.4222311719693925,7.81,7.55,7.436005146349308,7.435345622119815,7.447864506627393,7.42629749768304 -2022,4,20,0,0,0,0,1,0,6,0.0,0.0,0.0,4.10877320117719,18,19,22,21,10,10,1,23.352866067991535,9.0,14.78025211712817,0.44561339941140515,7.608238341968912,6.94,6.67,6.77,6.8667753770892785,7.73,6.87,6.794662435083669,7.073598166539343,6.74595691797846,6.9195584760779685 -2022,4,21,0,0,0,0,2,1,10,0.0,0.0,0.0,4.10877320117719,21,18,11,13,6,3,0,21.0,11.0,13.274946315395242,1.445613399411405,7.549988610478359,6.67,6.33,6.38,6.702848909016056,6.75,6.71,6.530885253249664,7.05573489010989,6.45200152788388,6.666077131258457 -2022,4,22,0,0,0,1,2,3,11,0.0,0.0,0.0,0.22280669970570258,14,12,13,8,1,0,0,18.352866067991535,14.0,14.386000817239257,2.445613399411405,7.383440773569702,6.61,6.09,6.18,6.467552370452039,7.08,5.99,6.3668229322185725,6.643076923076923,6.378297872340425,6.603760697059282 -2022,4,23,0,0,1,4,3,5,10,0.0,0.0,0.0,0.0,17,12,2,4,1,0,0,16.352866067991535,10.0,20.998022671762584,6.336840198234215,6.9943491671807525,6.36,5.76,5.71,6.181294559099437,6.01,6.06,6.004002066115702,6.191747042766151,6.19167044595616,6.282019144481005 -2022,4,24,0,0,3,0,5,6,9,0.0,0.0,0.0,0.7771933002942975,16,8,1,13,0,0,1,15.0,6.0,21.389271889850534,5.450873696762729,6.9943491671807525,6.36,5.76,5.71,6.181294559099437,6.01,6.06,6.004002066115702,6.191747042766151,6.19167044595616,6.282019144481005 -2022,4,25,0,0,1,0,5,5,5,0.0,1.0,0.0,3.10877320117719,16,10,9,22,1,0,2,18.352866067991535,3.0,20.35252474600342,4.673680396468431,6.9943491671807525,6.36,5.76,5.71,6.181294559099437,6.01,6.06,6.004002066115702,6.191747042766151,6.19167044595616,6.282019144481005 -2022,4,26,0,0,0,0,5,1,2,0.0,0.0,0.0,4.663159801765785,16,11,21,22,1,6,3,20.352866067991535,3.0,14.93820833702265,3.228066997057026,6.989077353215284,6.57,5.86,6.01,6.442498505678421,7.68,6.3,6.121962974784552,6.599181494661921,6.54415969581749,6.3166836821507575 -2022,4,27,0,0,0,0,3,0,2,0.0,0.0,0.19772485917494179,4.663159801765785,15,18,24,16,5,9,2,20.0,7.0,12.001924314087434,1.6684200991171076,7.454967637540453,6.87,6.44,6.71,6.838180309734513,7.01,6.59,6.582889610389611,7.001508413461538,6.84,6.692260430247718 -2022,4,28,0,0,0,0,3,0,5,0.0,0.0,0.19772485917494179,3.10877320117719,21,21,21,12,7,5,0,20.352866067991535,11.0,12.324606822609988,1.8912267988228104,7.552038626609442,6.97,6.5,6.73,6.8564649122807015,9.79,6.57,6.70296322160149,7.00852798894264,6.791394148020655,6.844794103509053 -2022,4,29,0,0,0,1,3,1,9,0.0,0.0,0.0,3.10877320117719,20,19,14,10,6,2,0,18.0,7.0,16.84258337952886,1.8912267988228104,7.142078255291854,6.64,6.12,6.2,6.480731173380036,6.67,6.41,6.384959950708565,6.518653344917464,6.4106307977736545,6.672333677533559 -2022,4,30,0,0,0,0,4,4,9,0.0,0.0,0.19772485917494179,3.8859665014714873,18,16,9,10,4,0,0,17.411464271966143,6.0,17.09232090659672,2.559646897939918,7.142078255291854,6.64,6.12,6.2,6.480731173380036,6.67,6.41,6.384959950708565,6.518653344917464,6.4106307977736545,6.672333677533559 -2022,5,1,0,0,0,0,4,5,8,0.0,0.0,0.19772485917494179,4.663159801765785,14,13,9,14,2,0,0,14.352866067991535,6.0,16.60794916067463,1.8912267988228104,7.126036036036036,6.69,6.04,6.07,6.519865392965697,6.65,6.22,6.329596774193549,6.584959857270294,6.5101860465116275,6.609483027978981 -2022,5,2,0,0,0,0,6,4,10,0.0,0.0,0.0,4.885966501471487,16,11,12,18,0,1,0,17.764330339957677,7.0,16.218638443559314,1.6684200991171076,7.126036036036036,6.69,6.04,6.07,6.519865392965697,6.65,6.22,6.329596774193549,6.584959857270294,6.5101860465116275,6.609483027978981 -2022,5,3,0,0,0,0,7,6,7,0.0,0.0,0.0,3.8859665014714873,15,9,12,17,1,0,2,15.70573213598307,6.0,18.222824570266493,2.1140334985285127,7.6611132437619975,7.28,6.75,6.97,7.006860809476802,6.94,6.44,7.023736213235294,7.0753772455089825,7.046624569460391,7.154351632047478 -2022,5,4,0,0,0,0,8,5,9,0.0,0.0,0.0,3.8859665014714873,15,10,14,16,0,2,1,11.647133932008465,3.0,17.259212313021678,2.559646897939918,8.484832464631422,7.9,7.41,7.61,7.817967644084934,8.3,7.56,7.68023935606863,7.903267813267813,7.716744402985075,7.813909287257019 -2022,5,5,0,0,0,0,7,5,9,0.0,0.0,0.39544971834988357,4.663159801765785,9,7,14,13,1,1,1,16.0,2.0,12.2955983135278,2.782453597645621,9.024133333333333,8.19,7.63,7.85,8.105148048452222,8.5,7.84,8.014337002096436,8.400603448275863,7.94193668528864,8.176985443959243 -2022,5,6,0,0,0,0,7,3,8,0.0,0.0,1.3840740142245924,6.994739702648677,12,11,12,8,1,0,0,17.29426786401693,2.0,8.107334115644644,0.8912267988228103,8.743640606767794,8.04,7.43,7.48,7.942187659357471,8.04,7.7,7.785745397977702,8.118010610079576,7.891508220157256,8.13594152782144 -2022,5,7,0,0,0,0,5,1,11,0.0,0.0,1.3840740142245924,8.994739702648678,16,15,10,6,4,5,0,18.705732135983073,4.0,8.310914611689086,0.22280669970570258,8.58828665568369,8.01,7.56,7.73,7.881128337639965,8.26,7.42,7.918095390524968,7.902319316688567,7.7815112321307005,8.079364252214695 -2022,5,8,0,0,0,1,4,1,15,0.0,0.0,0.19772485917494179,7.885966501471487,16,15,11,5,7,4,0,22.41146427196614,10.0,13.00537776284145,0.22280669970570258,8.58828665568369,8.01,7.56,7.73,7.881128337639965,8.26,7.42,7.918095390524968,7.902319316688567,7.7815112321307005,8.079364252214695 -2022,5,9,0,0,1,6,3,3,17,0.0,0.0,0.0,4.7771933002942975,15,10,3,1,5,1,0,21.764330339957674,14.0,17.07525252811228,1.0,8.58828665568369,8.01,7.56,7.73,7.881128337639965,8.26,7.42,7.918095390524968,7.902319316688567,7.7815112321307005,8.079364252214695 -2022,5,10,0,0,5,8,2,5,17,0.0,0.0,0.0,3.7771933002942975,12,7,0,1,3,0,0,19.058598203974608,14.0,16.603352609867315,1.0,8.589043645699617,7.26,6.77,6.87,7.173909590714722,7.59,7.01,7.015306013837146,7.43038490007402,7.041387414708113,7.313289237301976 -2022,5,11,0,0,9,10,2,8,15,0.0,0.0,0.36421436607552365,2.7771933002942975,9,5,0,1,2,0,0,18.058598203974608,14.0,12.6497568535878,1.0,7.552554744525548,6.7,6.19,6.25,6.4210810810810806,6.6,6.48,6.353381686310064,6.397546567323043,6.341140350877192,6.499983842735964 -2022,5,12,0,0,8,11,3,9,14,0.0,0.0,0.0,1.445613399411405,3,2,0,1,1,0,0,20.058598203974604,9.0,14.28129326649983,1.2228066997057025,8.104113074204946,7.42,6.84,6.72,7.289270752521333,7.49,7.16,7.0789222455719,7.442492012779553,7.141673746813933,7.366927727784026 -2022,5,13,2,1,8,6,4,7,13,0.0,1.0,0.0,3.8859665014714873,1,1,0,1,0,0,0,20.0,3.0,13.756731568140513,1.8912267988228104,7.831130136986301,7.3,6.7,6.76,7.1776358569438,7.2,6.99,6.964073645206113,7.322367242482405,7.071810810810811,7.29555047318612 -2022,5,14,6,2,7,5,6,7,13,0.0,4.0,0.9886242958747089,8.771933002942976,0,0,0,2,0,0,0,15.0,1.0,9.476806091599615,0.44561339941140515,7.980159010600707,7.32,6.84,6.84,7.226361445783133,7.38,7.12,7.109730657512543,7.4825531914893615,7.111774358974358,7.4407158006362675 -2022,5,15,3,4,4,2,8,9,14,0.0,3.0,1.5817988733995343,11.549126303237273,1,0,0,3,0,0,0,11.235669660042326,0.0,6.323067732234489,0.22280669970570258,7.980159010600707,7.32,6.84,6.84,7.226361445783133,7.38,7.12,7.109730657512543,7.4825531914893615,7.111774358974358,7.4407158006362675 -2022,5,16,2,2,0,0,9,6,14,0.0,0.0,1.7795237325744762,11.771933002942975,1,1,1,3,0,0,0,11.352866067991535,1.0,3.6005288597023455,0.0,7.980159010600707,7.32,6.84,6.84,7.226361445783133,7.38,7.12,7.109730657512543,7.4825531914893615,7.111774358974358,7.4407158006362675 -2022,5,17,0,0,0,2,7,4,14,0.0,0.0,2.1437380986499996,10.21754640235438,3,4,6,4,0,0,0,14.29426786401693,3.0,4.478107676094246,0.22280669970570258,8.460756972111554,7.8,7.42,7.61,7.690780600461895,7.86,7.47,7.72082672434511,7.6642821158690175,7.553615023474179,7.829403456606579 -2022,5,18,0,0,0,4,7,6,16,0.0,1.0,1.7795237325744762,10.440353102060083,6,7,8,2,1,0,0,15.352866067991535,0.0,5.433409654212718,0.0,8.976278688524589,8.02,7.5,7.51,7.9980559196155525,7.76,7.77,7.872249593936113,8.223766081871343,7.797349397590361,8.106743827160495 -2022,5,19,0,0,2,5,11,11,16,0.0,1.0,1.9772485917494178,10.440353102060083,12,5,1,3,0,0,0,17.352866067991535,1.0,6.732237039704799,0.0,8.903221476510067,8.12,7.59,7.82,8.04648541769649,8.03,7.83,8.157466852756455,8.362410256410255,7.859002557544757,8.24260730516748 -2022,5,20,0,1,7,3,12,13,16,0.0,0.0,0.5931745775248254,8.663159801765785,6,2,0,5,0,0,0,17.058598203974604,5.0,20.588053858642997,0.22280669970570258,8.47171195652174,8.0,7.65,7.87,7.798390041493776,8.0,7.29,7.999621333333333,7.667692919649961,7.828374306106263,8.028045000745045 -2022,5,21,4,9,4,0,14,14,15,0.0,0.0,0.0,6.440353102060082,1,0,3,13,0,0,1,14.352866067991535,4.0,20.34861937028772,1.114033498528513,8.415880503144654,7.82,7.5,7.69,7.5603922413793105,8.76,6.98,7.965069102834389,7.439568052159738,7.676143740340031,7.79500170940171 -2022,5,22,8,10,0,0,13,7,5,0.0,0.0,0.39544971834988357,6.994739702648677,0,0,7,13,0,0,1,11.352866067991535,3.0,16.20777956517321,2.0052602973513234,8.415880503144654,7.82,7.5,7.69,7.5603922413793105,8.76,6.98,7.965069102834389,7.439568052159738,7.676143740340031,7.79500170940171 -2022,5,23,0,1,0,0,8,3,6,0.0,1.0,0.7908994366997671,6.994739702648677,2,3,11,12,0,2,1,10.29426786401693,1.0,14.937125280338764,1.114033498528513,8.415880503144654,7.82,7.5,7.69,7.5603922413793105,8.76,6.98,7.965069102834389,7.439568052159738,7.676143740340031,7.79500170940171 -2022,5,24,0,0,0,0,8,5,7,0.0,4.0,1.1863491550496508,7.7719330029429745,6,5,7,9,2,0,1,10.941401796025396,0.0,14.016312242392145,1.559646897939918,8.776795048143054,8.03,7.39,7.38,7.89474025974026,7.81,7.91,7.831524806554393,7.957683551508253,7.867895569620254,8.02172156196944 -2022,5,25,0,0,1,0,6,6,5,0.0,5.0,1.7795237325744762,10.103512903825866,8,5,3,9,1,0,1,7.2942678640169305,0.0,10.343133525781337,1.559646897939918,9.577063492063491,8.48,7.74,7.85,8.509759036144578,7.96,8.39,8.340999502734958,8.799298998569386,8.265945303210463,8.546662257495592 -2022,5,26,0,0,2,0,7,5,7,0.0,3.0,2.1884295870975508,11.880706204120166,7,4,1,7,0,0,1,6.58853572803386,0.0,4.6544403301785975,0.22280669970570258,10.102976913730256,8.91,8.18,8.24,8.917561946902655,9.07,8.69,8.841592741935484,9.373333333333333,8.750009478672986,8.9629010989011 -2022,5,27,2,2,1,0,9,3,10,0.0,1.0,2.5838793054474345,13.549126303237273,0,0,3,3,0,1,0,11.352866067991535,2.0,2.444891697753887,0.0,9.822596566523606,8.62,8.03,8.16,8.561039029535864,8.32,8.67,8.524736842105263,8.806174911660777,8.500181323662739,8.744610733182162 -2022,5,28,2,3,0,3,8,2,13,0.0,0.0,2.3414629578249415,11.440353102060081,0,0,3,0,0,0,0,14.352866067991535,5.0,5.494471812619123,0.0,8.886547507055504,7.81,7.52,7.75,7.744068136272545,8.01,7.7,7.977440401505647,7.836122448979592,7.6150832517140055,7.9227517730496455 -2022,5,29,0,1,3,7,8,5,15,0.0,0.0,1.3528386619502326,8.663159801765785,1,0,0,0,0,0,0,15.41146427196614,4.0,10.563461390920805,0.22280669970570258,8.886547507055504,7.81,7.52,7.75,7.744068136272545,8.01,7.7,7.977440401505647,7.836122448979592,7.6150832517140055,7.9227517730496455 -2022,5,30,3,5,10,9,10,10,16,0.0,0.0,0.19772485917494179,6.885966501471487,0,0,0,1,0,0,0,15.058598203974604,4.0,14.084588556373053,1.445613399411405,8.886547507055504,7.81,7.52,7.75,7.744068136272545,8.01,7.7,7.977440401505647,7.836122448979592,7.6150832517140055,7.9227517730496455 -2022,5,31,7,11,11,4,12,12,17,0.0,0.0,0.39544971834988357,7.440353102060082,1,0,0,2,0,0,0,9.705732135983071,3.0,13.967575251625878,0.44561339941140515,8.886547507055504,7.81,7.52,7.75,7.744068136272545,8.01,7.7,7.977440401505647,7.836122448979592,7.6150832517140055,7.9227517730496455 -2022,6,1,0,4,7,1,13,12,15,0.0,2.0,0.9886242958747089,9.217546402354381,6,1,0,4,0,0,0,7.0,0.0,11.526238799749692,0.44561339941140515,9.033101123595507,8.07,7.61,7.92,7.994833178869323,8.25,7.68,8.153189089955415,8.267849133537208,7.797197452229299,8.192409860808317 -2022,6,2,0,3,2,0,13,10,11,0.0,3.0,1.3840740142245924,10.549126303237271,3,0,1,3,0,0,0,3.6471339320084653,0.0,7.857121141252781,0.22280669970570258,9.100855323020928,8.17,7.67,8.09,8.122947950253339,8.68,8.12,8.178875846501128,8.272808988764044,8.025727459016393,8.259719000163372 -2022,6,3,1,3,1,1,9,7,10,0.0,1.0,1.5817988733995343,9.771933002942975,3,1,1,3,0,0,0,8.705732135983071,0.0,5.3103508074484385,0.22280669970570258,9.299995635093845,8.4,7.57,7.77,8.349687995769434,8.41,8.25,8.143364779874215,8.624291443850268,8.00987819732034,8.53437825594564 -2022,6,4,0,1,1,1,8,5,12,0.0,0.0,1.9907047279226089,10.21754640235438,2,2,4,2,0,0,0,9.058598203974606,2.0,3.6176849106484466,0.22280669970570258,8.845885608856088,7.91,7.27,7.34,7.648890056022409,8.02,7.49,7.651174220129489,8.109639519359144,7.612514285714285,8.041701550387597 -2022,6,5,0,0,2,3,7,7,13,0.0,2.0,2.7503688123480163,11.21754640235438,4,3,2,2,0,0,0,8.352866067991535,1.0,3.4930210791602687,0.0,8.845885608856088,7.91,7.27,7.34,7.648890056022409,8.02,7.49,7.651174220129489,8.109639519359144,7.612514285714285,8.041701550387597 -2022,6,6,0,0,3,4,8,9,16,0.0,4.0,2.948093671522958,13.440353102060083,2,1,1,2,0,0,0,9.0,1.0,4.3650815705454376,0.0,8.845885608856088,7.91,7.27,7.34,7.648890056022409,8.02,7.49,7.651174220129489,8.109639519359144,7.612514285714285,8.041701550387597 -2022,6,7,0,0,2,5,9,11,17,0.0,4.0,2.7816041646223764,15.21754640235438,1,1,1,2,0,0,0,8.0,0.0,4.6337448380427055,0.0,9.583270893371758,8.67,7.91,8.02,8.39309946714032,8.21,8.25,8.520299890948746,8.812088091353997,8.330248447204967,8.79793990086741 -2022,6,8,4,5,1,3,12,11,16,0.0,5.0,2.7816041646223764,17.32631960353157,0,0,3,1,0,0,0,8.0,0.0,4.41705205112182,0.0,9.974156479217603,8.86,8.14,8.51,8.77947429009977,8.49,8.22,8.755689759036144,9.229309392265192,8.562968750000001,9.036788760662319 -2022,6,9,3,5,1,2,12,9,16,0.0,7.0,4.525569464994515,18.32631960353157,1,1,1,1,0,0,0,7.235669660042325,0.0,1.173572060447829,0.0,10.226036036036035,9.06,8.33,8.58,8.8579701120797,8.66,8.27,9.015847890352056,9.430662460567824,8.698252666119771,9.208349888806524 -2022,6,10,0,1,0,4,8,5,17,0.0,10.0,6.075870964305611,20.10351290382587,1,1,1,0,0,0,0,6.647133932008465,0.0,0.5571324223154478,0.0,9.085982567353408,7.86,7.28,7.37,7.796733449477352,7.52,7.55,7.664209698558322,8.223695652173914,7.636598984771574,7.87622742378269 -2022,6,11,0,1,1,7,9,7,19,0.0,10.0,7.7801072615634155,21.549126303237273,1,1,1,0,0,0,0,6.0,0.0,0.5907199352679806,0.0,9.347943121693122,8.27,7.53,7.9,8.123580433686335,7.72,7.91,8.242639146567717,8.440640394088671,7.958986013986014,8.33246536877574 -2022,6,12,0,1,4,10,12,12,21,0.0,7.0,7.677629291836114,19.99473970264868,1,1,1,0,0,0,0,10.70573213598307,0.0,1.5105421312845646,0.0,9.347943121693122,8.27,7.53,7.9,8.123580433686335,7.72,7.91,8.242639146567717,8.440640394088671,7.958986013986014,8.33246536877574 -2022,6,13,5,7,8,14,15,17,21,0.0,2.0,5.569989909266781,18.994739702648676,0,0,0,0,0,0,0,14.70573213598307,1.0,5.34282184986903,0.0,9.347943121693122,8.27,7.53,7.9,8.123580433686335,7.72,7.91,8.242639146567717,8.440640394088671,7.958986013986014,8.33246536877574 -2022,6,14,2,5,13,15,15,18,20,0.0,3.0,2.3102276055505815,15.440353102060081,0,0,0,0,0,0,0,13.352866067991537,1.0,8.322379730525094,0.0,9.102895569620252,8.35,7.85,9.89,8.218274509803923,8.46,7.84,9.57897414854329,8.540664112388251,7.993336594911938,8.546221116816431 -2022,6,15,1,5,16,11,15,18,20,0.0,6.0,2.3414629578249415,15.21754640235438,0,0,0,0,0,0,0,11.647133932008465,0.0,6.148142317605657,0.0,8.120796943231442,7.01,6.66,7.18,7.040400843881857,6.95,6.58,7.729394999125722,7.634151223128242,6.856317103620475,7.254276175593124 -2022,6,16,0,4,16,11,16,18,20,0.0,5.0,3.5100328967734233,17.771933002942976,2,0,0,0,0,0,0,9.705732135983071,1.0,1.718287909270638,0.0,7.93494930875576,7.39,7.07,8.03,7.103844856661046,7.52,6.79,8.24903326810176,7.31136,7.086590509666081,7.440439141485457 -2022,6,17,6,9,10,10,16,16,19,0.0,1.0,5.4396917065398,16.771933002942976,0,0,0,0,0,0,0,12.058598203974606,3.0,0.6663978210437678,0.0,8.016816779765575,7.45,7.28,7.56,7.2832186234817815,7.92,6.78,7.936749379652604,7.492341269841271,7.198545454545454,7.670962646348262 -2022,6,18,0,1,2,10,12,12,19,0.0,0.0,5.249533123919145,13.994739702648678,3,2,2,0,0,0,0,12.058598203974606,5.0,1.6558496852222622,0.0,7.298498683055311,6.92,6.45,6.49,6.588396723229959,6.59,6.2,7.257212598425197,6.54259067357513,6.591094952951241,6.981740630390465 -2022,6,19,0,0,1,12,8,7,18,0.0,0.0,3.084779145975644,10.994739702648676,8,5,2,0,0,0,0,11.058598203974606,2.0,3.3151980554509346,0.0,7.298498683055311,6.92,6.45,6.49,6.588396723229959,6.59,6.2,7.257212598425197,6.54259067357513,6.591094952951241,6.981740630390465 -2022,6,20,0,0,6,15,8,9,18,0.0,4.0,2.840931478526687,10.994739702648676,4,3,0,0,0,0,0,7.70573213598307,0.0,5.667463953022494,0.0,7.298498683055311,6.92,6.45,6.49,6.588396723229959,6.59,6.2,7.257212598425197,6.54259067357513,6.591094952951241,6.981740630390465 -2022,6,21,0,1,13,13,10,13,19,0.0,8.0,1.7795237325744762,12.657899504414463,4,1,0,0,0,0,0,3.6471339320084653,0.0,4.793403421938936,0.22280669970570258,7.298498683055311,6.92,6.45,6.49,6.588396723229959,6.59,6.2,7.257212598425197,6.54259067357513,6.591094952951241,6.981740630390465 -2022,6,22,0,3,13,9,13,16,19,0.0,8.0,1.7795237325744762,12.880706204120164,4,1,0,0,0,0,0,3.941401796025395,0.0,2.2859288312414625,0.22280669970570258,6.735044247787611,6.5,5.84,6.0,6.209656050955414,6.18,5.94,7.079966510381781,6.373849144634526,6.221672297297298,6.485724331926864 -2022,6,23,0,1,7,11,12,16,20,0.0,9.0,3.719133460073656,16.657899504414463,1,0,0,0,0,0,0,5.2942678640169305,0.0,0.6649405541509363,0.0,7.603688254665203,6.52,5.84,5.88,6.4215908250092495,5.95,6.09,6.609189785624212,6.9829,6.10994575045208,6.5427860787172 -2022,6,24,2,4,8,12,13,14,21,0.0,10.0,3.9239012366297166,16.10351290382587,0,0,0,0,0,0,0,4.941401796025395,0.0,1.2743345993054274,0.0,7.75115120274914,6.25,5.63,5.8,6.3583462686567165,6.06,6.0,6.4476859250153655,7.075978784956606,6.1067830045523515,6.3875696146135 -2022,6,25,7,8,7,11,13,15,21,1.0585982039746054,10.0,3.1905100191454503,15.32631960353157,0,0,0,0,0,0,0,0.6471339320084649,0.0,3.193932978540905,0.0,6.879362154500355,5.9,5.54,5.78,5.728804573804575,5.99,5.58,6.079487889273357,6.170821256038647,5.650811808118081,5.884521357420227 -2022,6,26,9,9,7,4,13,14,18,5.7643303399576755,11.0,4.447839769833966,13.65789950441446,0,0,0,1,0,0,0,0.0,0.0,2.3196363727096347,0.22280669970570258,6.879362154500355,5.9,5.54,5.78,5.728804573804575,5.99,5.58,6.079487889273357,6.170821256038647,5.650811808118081,5.884521357420227 -2022,6,27,5,7,2,3,13,12,16,6.705732135983071,11.0,4.931426134768814,12.103512903825868,0,0,0,0,0,0,0,0.0,0.0,0.8706097579263155,0.22280669970570258,6.879362154500355,5.9,5.54,5.78,5.728804573804575,5.99,5.58,6.079487889273357,6.170821256038647,5.650811808118081,5.884521357420227 -2022,6,28,1,2,2,5,10,9,14,1.0,11.0,6.810529543535102,14.657899504414463,0,1,1,0,0,0,0,4.0,0.0,0.0,0.0,7.3726637554585155,5.96,5.52,5.74,5.878910361842105,6.11,4.85,5.986556634304207,6.750932798395186,5.501621621621621,6.028171011470282 -2022,6,29,3,3,5,8,11,10,15,0.0,9.0,7.512481005596291,17.43509280470876,0,0,0,0,0,0,0,3.6471339320084653,0.0,0.2604672923539347,0.0,7.309999999999999,6.46,5.93,6.3,6.313626257278984,6.41,5.16,6.373895018388499,6.8930991529646235,6.082597864768683,6.493169803341087 -2022,6,30,3,6,10,10,13,12,16,0.0,7.0,6.399454900047482,15.549126303237273,0,0,0,0,0,0,0,3.0,0.0,0.4362358310817357,0.0,7.117845117845118,6.51,6.21,6.65,6.3836147186147185,7.52,5.12,6.729914645974783,6.693947895791584,6.232406947890818,6.616925118483412 -2022,7,1,8,9,10,8,14,14,17,0.6471339320084649,6.0,5.193785696272103,16.32631960353157,0,0,0,0,0,0,0,3.0,0.0,0.17576853872780104,0.0,6.791461057418989,6.04,5.65,5.97,6.085491071428572,6.58,5.6,6.278947598253276,6.294157228514324,5.773347193347194,6.316464352880835 -2022,7,2,9,11,7,6,14,15,19,0.6471339320084649,4.0,6.130413564504065,16.32631960353157,0,0,0,0,0,0,0,5.0,0.0,0.036197837607578436,0.0,5.6839668914776205,5.41,5.06,5.29,5.181756756756757,5.3,4.74,5.776401050788091,5.285575686732904,5.11739837398374,5.554418481147105 -2022,7,3,7,8,8,9,15,15,20,0.0,2.0,6.8358029195240855,15.549126303237273,0,0,0,0,0,0,0,7.941401796025396,1.0,0.40003799347415725,0.0,5.6839668914776205,5.41,5.06,5.29,5.181756756756757,5.3,4.74,5.776401050788091,5.285575686732904,5.11739837398374,5.554418481147105 -2022,7,4,3,4,9,13,14,16,20,0.0,1.0,6.666153781728922,14.771933002942975,0,0,0,0,0,0,0,4.647133932008465,1.0,0.2604672923539347,0.0,5.6839668914776205,5.41,5.06,5.29,5.181756756756757,5.3,4.74,5.776401050788091,5.285575686732904,5.11739837398374,5.554418481147105 -2022,7,5,3,6,13,16,15,18,21,0.0,3.0,6.5688264602333835,15.549126303237273,0,0,0,0,0,0,0,4.352866067991536,0.0,0.2604672923539347,0.0,5.6839668914776205,5.41,5.06,5.29,5.181756756756757,5.3,4.74,5.776401050788091,5.285575686732904,5.11739837398374,5.554418481147105 -2022,7,6,6,9,10,12,17,18,21,0.0,3.0,6.3581947711247855,14.771933002942975,0,0,0,0,0,0,0,3.6471339320084653,0.0,0.0697853505601113,0.0,5.726477675407512,5.38,5.08,5.51,5.250347091932458,6.16,3.97,7.562332203389831,5.3542943201376945,5.116966966966967,5.7338117573483425 -2022,7,7,3,7,9,12,16,17,22,0.6471339320084649,5.0,6.878602138822281,15.994739702648678,0,0,0,0,0,0,0,1.3528660679915352,0.0,0.0,0.0,5.750776255707763,5.34,5.02,5.62,5.159083169613622,5.35,4.22,6.879394376351838,5.376609247506799,5.142673869007427,5.9017847144456885 -2022,7,8,5,7,7,12,15,17,23,0.6471339320084649,7.0,7.993980405049262,18.32631960353157,0,0,0,0,0,0,0,1.647133932008465,0.0,0.0,0.0,6.111845493562233,5.75,5.29,6.04,5.640014084507042,5.91,4.44,7.245646189140964,5.70432337434095,5.531511627906976,5.946111005872324 -2022,7,9,5,6,6,10,13,15,22,0.6471339320084649,7.0,10.854483562844573,20.10351290382587,0,0,0,0,0,0,0,1.647133932008465,0.0,0.0,0.0,6.61960403726708,5.9,5.24,5.61,5.8681719128329295,5.38,4.25,7.13728064300067,6.249470636889992,5.715102533172496,6.252791156731149 -2022,7,10,1,4,4,11,11,13,22,1.0,9.0,10.483972024209049,20.10351290382587,1,0,0,0,0,0,0,1.647133932008465,0.0,0.0697853505601113,0.0,6.61960403726708,5.9,5.24,5.61,5.8681719128329295,5.38,4.25,7.13728064300067,6.249470636889992,5.715102533172496,6.252791156731149 -2022,7,11,3,5,8,11,11,13,22,4.70573213598307,10.0,7.952664399710264,21.657899504414463,0,0,0,0,0,0,0,0.0,0.0,0.0697853505601113,0.0,6.61960403726708,5.9,5.24,5.61,5.8681719128329295,5.38,4.25,7.13728064300067,6.249470636889992,5.715102533172496,6.252791156731149 -2022,7,12,7,9,9,9,13,14,21,4.411464271966141,9.0,9.60414881768801,20.657899504414463,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,7.277659574468085,6.39,5.9,6.54,6.365862271924661,6.4,4.02,8.411582837199754,6.882394736842105,6.215252140818268,6.6685862562634215 -2022,7,13,10,10,6,8,14,13,21,2.0,8.0,11.149094207824552,20.657899504414463,0,0,0,0,0,0,0,1.2942678640169298,0.0,0.0,0.0,7.546989485334809,6.34,5.84,6.37,6.416907555138433,6.42,5.92,9.786818580192813,7.197735618115056,6.148654880860876,6.768840081288103 -2022,7,14,8,9,5,11,14,13,20,1.647133932008465,9.0,12.487591546632448,20.880706204120166,0,0,0,0,0,0,0,1.2942678640169298,0.0,0.0,0.0,7.4871898560657995,6.3,5.87,6.2,6.266743849493488,6.22,5.17,7.687359813084113,7.029476439790576,6.247738317757009,6.587607001029563 -2022,7,15,5,6,4,13,13,13,18,1.647133932008465,10.0,11.09736633542986,20.549126303237273,0,0,0,0,0,0,0,1.2942678640169298,0.0,0.0,0.0,7.728773875539124,6.53,5.92,6.43,6.514498714652956,6.19,5.16,8.448508705526118,7.398876651982378,6.39777920410783,6.812448105436573 -2022,7,16,5,7,7,13,13,15,19,1.647133932008465,12.0,11.811430970754422,21.32631960353157,0,0,0,0,0,0,0,4.29426786401693,0.0,0.0,0.0,7.301888341543514,6.39,5.92,6.07,6.404613402061856,6.31,4.16,8.054363382899627,6.7910916724982515,6.2680187416332,6.615189559916174 -2022,7,17,9,8,7,13,13,15,21,1.0,12.0,12.11368175120422,21.103512903825866,0,0,0,0,0,0,0,3.29426786401693,0.0,0.0,0.0,7.301888341543514,6.39,5.92,6.07,6.404613402061856,6.31,4.16,8.054363382899627,6.7910916724982515,6.2680187416332,6.615189559916174 -2022,7,18,7,9,10,13,15,13,22,0.35286606799153514,12.0,12.311224980914595,19.99473970264868,0,0,0,0,0,0,0,2.6471339320084653,0.0,0.0697853505601113,0.0,7.301888341543514,6.39,5.92,6.07,6.404613402061856,6.31,4.16,8.054363382899627,6.7910916724982515,6.2680187416332,6.615189559916174 -2022,7,19,13,13,12,14,15,14,23,1.7057321359830704,12.0,11.231630705920118,21.771933002942976,0,0,0,0,0,0,0,0.0,0.0,0.0697853505601113,0.0,8.423035487959442,7.29,6.99,7.58,7.295728965960181,8.21,6.38,9.09748012718601,7.836324582338903,7.075868725868727,7.465728704077513 -2022,7,20,14,15,13,13,15,17,23,4.058598203974606,12.0,10.239385145372951,21.771933002942976,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.514119066773933,7.15,6.87,9.06,7.205965909090909,9.78,6.87,9.394933906146727,8.009235251274582,7.041862068965517,7.504828729281768 -2022,7,21,13,15,13,12,16,17,21,3.3528660679915356,12.0,11.141156396658094,22.32631960353157,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.562072513473787,7.37,6.93,7.53,7.326714828897337,22.87,7.02,9.551887259962832,8.022985179957656,7.148120218579236,7.74392930232558 -2022,7,22,14,14,12,14,16,15,20,1.647133932008465,11.0,12.554306681008695,23.32631960353157,0,0,0,0,0,0,0,1.647133932008465,0.0,0.0,0.0,8.72033377837116,7.77,7.49,8.83,7.696466666666667,11.17,7.51,10.013902552204176,8.241999999999999,7.518328767123288,8.039224528752088 -2022,7,23,14,15,11,14,16,16,20,1.647133932008465,10.0,11.257018385892113,20.32631960353157,0,0,0,0,0,0,0,2.0,0.0,0.0,0.0,8.784694117647058,8.08,7.71,8.34,7.898490945674044,9.48,6.07,9.783308418568057,8.398859397417503,7.7750515463917536,8.205250731707318 -2022,7,24,14,15,12,12,16,16,21,3.3528660679915356,9.0,8.111994942997654,16.21754640235438,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.784694117647058,8.08,7.71,8.34,7.898490945674044,9.48,6.07,9.783308418568057,8.398859397417503,7.7750515463917536,8.205250731707318 -2022,7,25,12,13,6,5,15,16,22,7.058598203974606,9.0,7.722964976873822,13.440353102060083,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,8.784694117647058,8.08,7.71,8.34,7.898490945674044,9.48,6.07,9.783308418568057,8.398859397417503,7.7750515463917536,8.205250731707318 -2022,7,26,6,5,5,7,14,15,22,10.70573213598307,9.0,8.16483517919436,13.440353102060083,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,9.221445722861432,8.24,7.72,8.11,8.1191341991342,8.23,6.89,10.903751006171182,8.908038379530916,7.603301127214172,8.659619923984797 -2022,7,27,5,7,8,8,15,17,21,11.0,9.0,9.10432886046147,13.217546402354381,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,9.783983359334375,8.72,8.2,8.35,8.618287841191066,8.67,7.86,11.883805668016194,9.545154394299288,8.122555780933062,9.248807303036317 -2022,7,28,8,11,8,6,16,17,21,12.0,10.0,7.7963698498573315,11.440353102060081,0,0,0,1,0,0,0,0.0,0.0,0.36421436607552365,0.0,9.176074074074075,8.38,7.86,8.24,8.203431712962963,8.46,8.05,10.225355252159376,8.710086505190311,7.785615050651231,8.590303930530164 -2022,7,29,12,10,5,4,16,14,19,12.352866067991537,10.0,7.599430371669637,11.994739702648678,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.853045525902667,8.05,7.47,8.02,8.004201141226819,8.21,6.81,8.928183108587652,8.29452012383901,7.960357142857144,8.446236245227935 -2022,7,30,9,9,4,5,15,13,19,12.352866067991537,10.0,8.151418679187298,13.549126303237273,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.853045525902667,8.05,7.47,8.02,8.004201141226819,8.21,6.81,8.928183108587652,8.29452012383901,7.960357142857144,8.446236245227935 -2022,7,31,6,6,6,9,14,12,20,11.352866067991535,11.0,9.46634674825702,13.994739702648678,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.853045525902667,8.05,7.47,8.02,8.004201141226819,8.21,6.81,8.928183108587652,8.29452012383901,7.960357142857144,8.446236245227935 -2022,8,1,7,6,9,12,15,13,20,6.705732135983071,11.0,9.730325792485319,15.994739702648678,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,9.082142237640936,7.96,7.47,7.86,7.884024615384616,8.11,7.15,9.369451645064805,8.655949935815148,7.8130232558139525,8.45770178066234 -2022,8,2,10,11,9,15,16,15,21,4.411464271966141,11.0,8.96760188314723,16.99473970264868,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,8.865891783567134,7.69,7.18,7.66,7.551275449101796,8.23,7.54,9.610809768637532,8.26405819295559,7.564110970996217,8.071933851436834 -2022,8,3,10,10,12,14,15,15,22,3.4114642719661408,12.0,9.038310750155823,17.21754640235438,0,0,0,0,0,0,0,1.2942678640169298,0.0,0.0,0.0,8.864959016393442,7.52,7.08,7.62,7.361929824561404,8.06,7.34,8.563341154387613,8.333757225433526,7.333016421780466,7.696474564212025 -2022,8,4,13,13,11,10,16,14,21,1.3528660679915352,11.0,9.972030618036099,13.10877320117719,0,0,0,0,0,0,0,2.941401796025395,0.0,0.0,0.0,9.060507425742575,7.47,7.16,8.02,7.3579834605597965,8.63,7.43,8.623109504132232,8.57073037542662,7.27765164644714,7.657563496234016 -2022,8,5,14,13,11,13,15,14,21,0.35286606799153514,9.0,8.845366746849532,14.440353102060083,0,0,0,0,0,0,0,1.9414017960253949,0.0,0.0697853505601113,0.0,9.654037886340976,7.84,7.51,7.99,7.77469474969475,8.75,7.71,8.489413164155431,9.169356652092441,7.553336703741152,7.97794800693241 -2022,8,6,15,13,13,13,15,15,19,2.0585982039746056,9.0,6.718354612520386,16.771933002942976,0,0,0,0,0,0,0,0.6471339320084649,0.0,0.4213224280157134,0.0,9.323216885007279,7.82,7.42,7.99,7.709835164835165,8.6,7.59,8.304123572867697,8.747158018867925,7.5210965435041714,8.041627800640146 -2022,8,7,16,15,13,12,15,15,20,6.058598203974606,10.0,6.335721624938454,16.549126303237273,0,0,0,0,0,0,0,0.0,0.0,0.10598318816768973,0.0,9.323216885007279,7.82,7.42,7.99,7.709835164835165,8.6,7.59,8.304123572867697,8.747158018867925,7.5210965435041714,8.041627800640146 -2022,8,8,15,16,12,8,15,15,20,6.29426786401693,10.0,6.8969151053678015,15.549126303237273,0,0,0,0,0,0,0,0.0,0.0,0.036197837607578436,0.0,9.323216885007279,7.82,7.42,7.99,7.709835164835165,8.6,7.59,8.304123572867697,8.747158018867925,7.5210965435041714,8.041627800640146 -2022,8,9,15,16,6,7,16,15,19,3.7057321359830704,10.0,8.748844219973629,13.994739702648678,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,9.53342799188641,7.42,7.14,7.65,7.362008797653959,8.64,7.41,7.954611449451888,8.918596847991864,7.148,7.593045881702598 -2022,8,10,7,11,6,8,16,13,19,2.29426786401693,10.0,8.51462384749447,14.549126303237271,0,0,0,0,0,0,0,0.6471339320084649,0.0,0.0,0.0,9.8972,7.67,7.29,7.49,7.609002267573696,7.77,7.62,8.186244694132336,9.24184668989547,7.32972602739726,7.7209703075291625 -2022,8,11,7,9,5,7,14,13,18,3.29426786401693,10.0,9.664307682179674,14.32631960353157,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,9.754946852003272,7.74,7.24,7.46,7.668661087866108,7.78,7.7,8.020932072983074,9.050038975501113,7.409013062409288,7.753292028851489 -2022,8,12,6,6,1,7,12,11,17,2.29426786401693,10.0,9.87992127025388,14.32631960353157,0,0,1,0,0,0,0,1.3528660679915352,0.0,0.0,0.0,10.959340866290018,8.18,7.43,7.56,8.118363252375923,7.85,8.1,8.187982311805841,9.700387825233188,7.85875,8.276044056906837 -2022,8,13,2,2,2,9,10,9,18,1.0,11.0,8.378488363736306,13.771933002942975,0,1,2,0,0,0,0,2.29426786401693,0.0,0.0,0.0,10.42492581602374,8.26,7.5,7.45,8.17515625,7.81,8.2,8.16929957974785,9.50372972972973,8.031101694915254,8.45876023037284 -2022,8,14,2,3,2,8,10,11,18,1.0,11.0,8.108997527935253,13.217546402354381,0,0,1,0,0,0,0,0.6471339320084649,0.0,0.0,0.0,10.42492581602374,8.26,7.5,7.45,8.17515625,7.81,8.2,8.16929957974785,9.50372972972973,8.031101694915254,8.45876023037284 -2022,8,15,4,4,5,6,10,12,19,2.352866067991535,12.0,7.267542690235397,12.663159801765785,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,10.42492581602374,8.26,7.5,7.45,8.17515625,7.81,8.2,8.16929957974785,9.50372972972973,8.031101694915254,8.45876023037284 -2022,8,16,3,4,4,5,10,10,19,4.70573213598307,12.0,6.742350608832046,13.771933002942975,0,0,0,0,0,0,0,0.0,0.0,0.36421436607552365,0.0,11.028191176470587,8.09,7.47,7.62,8.048306188925082,7.64,8.12,8.081503861880963,10.193341107871719,7.575418754473873,8.256674191121142 -2022,8,17,3,4,4,6,10,9,18,8.705732135983071,13.0,7.065033117354599,13.880706204120164,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,11.384697910784867,8.72,8.21,8.33,8.691481213872832,8.48,8.78,8.944900530503977,10.162248144220573,8.193467741935484,8.869823468328143 -2022,8,18,5,5,4,6,10,9,16,8.352866067991535,12.0,7.4897538021630155,13.32631960353157,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,11.319676237018935,8.86,8.27,8.51,8.702413793103448,8.74,8.6,9.071961577350857,10.244057279236277,8.365006896551725,9.034718431674033 -2022,8,19,8,8,6,6,11,10,15,6.29426786401693,12.0,5.5577207424893045,10.771933002942975,0,0,0,0,0,0,0,0.0,0.0,0.0,0.22280669970570258,10.416137440758293,8.66,8.33,8.53,8.520584112149532,8.9,8.39,8.844867510145619,9.698946684005202,8.180268138801262,8.933734690357081 -2022,8,20,10,10,6,6,13,11,16,4.647133932008465,10.0,4.931214140392047,8.771933002942976,0,0,0,0,0,0,0,0.0,0.0,0.9758075651067586,0.44561339941140515,9.140626450116011,8.46,8.03,8.23,8.195864615384616,8.42,8.07,8.552192076830732,8.308253968253968,8.137840375586855,8.615987320241224 -2022,8,21,9,8,6,5,12,11,15,6.352866067991536,9.0,5.731137120538932,10.549126303237271,0,0,0,0,0,0,0,0.0,0.0,0.036197837607578436,0.22280669970570258,9.140626450116011,8.46,8.03,8.23,8.195864615384616,8.42,8.07,8.552192076830732,8.308253968253968,8.137840375586855,8.615987320241224 -2022,8,22,5,8,6,6,13,11,14,4.647133932008465,10.0,6.433014723684588,11.32631960353157,0,0,0,0,0,0,0,0.0,0.0,0.0,0.22280669970570258,9.140626450116011,8.46,8.03,8.23,8.195864615384616,8.42,8.07,8.552192076830732,8.308253968253968,8.137840375586855,8.615987320241224 -2022,8,23,7,9,5,7,13,10,14,3.3528660679915356,11.0,6.6661520394798615,12.880706204120164,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,10.093446180555556,8.88,8.63,9.29,8.814716481187071,9.26,8.53,9.508419215766784,9.397352941176472,8.597713178294574,9.1927947845805 -2022,8,24,9,9,6,7,13,10,14,6.0,11.0,6.1154328359564865,12.103512903825868,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,10.275053078556263,9.17,9.01,9.39,8.922783653846153,9.72,8.95,9.577540631708064,9.424327002477291,9.001927083333333,9.292689352360044 -2022,8,25,10,9,6,8,12,11,15,6.352866067991536,11.0,5.580044739711413,12.326319603531571,0,0,0,0,0,0,0,0.0,0.0,0.036197837607578436,0.0,9.623099630996311,8.74,8.5,8.97,8.602450142450143,9.47,8.48,9.230033119033703,9.197761107905366,8.42498583569405,8.86424550203134 -2022,8,26,9,9,5,7,14,13,16,2.7057321359830704,11.0,5.353950341297258,13.880706204120164,0,0,0,0,0,0,0,0.6471339320084649,0.0,0.0,0.0,9.844724919093853,8.72,8.43,8.71,8.60943067649029,8.89,8.46,9.43915203888739,9.108322368421051,8.405791433891991,8.98136534446764 -2022,8,27,8,10,4,9,14,14,17,0.6471339320084649,8.0,5.558785443334874,14.103512903825866,0,0,0,0,0,0,0,3.29426786401693,0.0,0.17576853872780104,0.0,9.583183897529734,8.73,8.55,8.91,8.557356466876971,8.89,8.52,9.409060402684563,8.775109649122808,8.44021505376344,8.941452131938858 -2022,8,28,5,8,8,11,14,14,18,0.0,6.0,5.060334396084519,13.549126303237273,0,0,0,0,0,0,0,2.6471339320084653,0.0,0.4362358310817357,0.0,9.583183897529734,8.73,8.55,8.91,8.557356466876971,8.89,8.52,9.409060402684563,8.775109649122808,8.44021505376344,8.941452131938858 -2022,8,29,8,11,10,10,14,15,17,1.7057321359830704,8.0,5.310621229391916,15.103512903825868,0,0,0,0,0,0,0,0.0,0.0,0.17576853872780104,0.0,9.583183897529734,8.73,8.55,8.91,8.557356466876971,8.89,8.52,9.409060402684563,8.775109649122808,8.44021505376344,8.941452131938858 -2022,8,30,12,12,7,6,15,14,15,6.411464271966141,10.0,6.823985679708294,16.989479405297352,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,10.443028747433265,8.77,8.6,9.06,8.716525,9.18,8.56,9.295131954350927,9.627250996015936,8.634924385633271,8.926173235563704 -2022,8,31,8,7,4,7,13,11,15,6.705732135983071,13.0,9.20534956329594,16.212286105003056,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,12.155908618899273,8.45,8.29,8.57,8.597903225806453,8.59,8.28,8.951234262125903,10.708181818181817,7.9556,8.669845470349623 -2022,9,1,2,5,6,8,12,9,15,5.411464271966141,15.0,9.529556664192881,16.212286105003056,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,13.677681940700808,8.44,8.15,8.35,8.547806167400882,8.52,8.62,8.87384286269934,11.15162724692526,8.200677966101694,8.576261882858018 -2022,9,2,0,2,7,8,11,11,15,5.352866067991535,15.0,9.060260537168986,15.880706204120166,3,1,0,0,0,0,0,0.0,0.0,0.0,0.0,12.787013720742534,8.75,8.09,8.3,8.971521873074552,8.51,9.16,8.627855029585799,11.651396276595746,7.889113149847094,8.834880280319252 -2022,9,3,0,4,7,5,12,11,14,1.0,16.0,8.316918401951916,14.657899504414463,1,0,0,1,0,0,0,1.647133932008465,0.0,0.0,0.0,11.582635294117647,8.29,7.76,7.9,8.390881696428572,8.12,8.09,8.332223532185806,10.588758815232723,7.986784810126582,8.476145796381696 -2022,9,4,4,8,4,4,13,11,13,1.7057321359830704,17.0,9.654588172456027,14.657899504414463,0,0,0,2,0,0,0,1.2942678640169298,0.0,0.0,0.0,11.582635294117647,8.29,7.76,7.9,8.390881696428572,8.12,8.09,8.332223532185806,10.588758815232723,7.986784810126582,8.476145796381696 -2022,9,5,3,6,4,4,12,11,13,1.0,18.0,10.068456512312318,16.43509280470876,1,0,0,1,0,0,0,1.9414017960253949,0.0,0.0,0.0,11.582635294117647,8.29,7.76,7.9,8.390881696428572,8.12,8.09,8.332223532185806,10.588758815232723,7.986784810126582,8.476145796381696 -2022,9,6,0,4,5,6,14,12,14,2.7643303399576755,18.0,10.672227946409166,16.657899504414463,2,0,0,0,0,0,0,0.6471339320084649,0.0,0.0,0.0,11.582635294117647,8.29,7.76,7.9,8.390881696428572,8.12,8.09,8.332223532185806,10.588758815232723,7.986784810126582,8.476145796381696 -2022,9,7,0,2,3,7,12,10,14,2.0585982039746056,17.0,11.236403286105732,15.103512903825868,1,0,0,0,0,0,0,1.9414017960253949,0.0,0.0,0.0,11.687441860465116,7.91,7.64,8.04,7.965008130081301,8.08,7.95,8.231498488284203,10.202264150943396,7.340510046367851,8.008823892893924 -2022,9,8,1,4,3,7,10,7,13,0.35286606799153514,16.0,9.001769067251498,14.32631960353157,1,0,0,0,0,0,0,3.5885357280338597,0.0,0.40003799347415725,0.0,11.288611257233036,7.58,7.3,7.66,7.587096966091612,7.73,7.42,8.025375979665325,10.03289180327869,6.768192161820481,7.641830065359477 -2022,9,9,1,2,4,4,9,7,12,0.7057321359830703,14.0,3.1905100191454503,12.549126303237273,0,0,0,1,0,0,0,2.941401796025395,0.0,4.711594561718893,0.0,10.822069608452454,7.5,7.17,7.6,7.5330420711974115,7.47,7.59,7.685330172705722,10.153797139141743,7.102155477031801,7.582561685055166 -2022,9,10,4,3,5,2,8,6,12,1.7643303399576757,8.0,1.7795237325744762,10.21754640235438,0,0,0,3,0,0,0,0.6471339320084649,0.0,7.964797671061013,0.22280669970570258,8.400666666666668,7.38,7.06,7.27,7.315106837606837,7.38,7.33,7.564034175334323,7.77504424778761,7.063490909090909,7.548125677139761 -2022,9,11,3,2,2,0,11,10,10,0.7057321359830703,9.0,2.3093261783312626,11.103512903825868,0,0,1,4,0,0,0,1.2942678640169298,0.0,4.513044685390576,0.22280669970570258,8.400666666666668,7.38,7.06,7.27,7.315106837606837,7.38,7.33,7.564034175334323,7.77504424778761,7.063490909090909,7.548125677139761 -2022,9,12,5,6,0,0,12,5,10,0.0,8.0,1.5952550095727251,9.771933002942975,0,0,3,2,0,0,0,1.647133932008465,0.0,2.4397475829561004,0.22280669970570258,8.400666666666668,7.38,7.06,7.27,7.315106837606837,7.38,7.33,7.564034175334323,7.77504424778761,7.063490909090909,7.548125677139761 -2022,9,13,4,6,0,2,9,2,10,0.0,6.0,1.1863491550496508,8.771933002942976,0,0,2,2,0,0,0,3.3528660679915356,0.0,3.3370335384810863,0.22280669970570258,9.124227340267458,7.53,7.22,7.64,7.4186046511627906,7.58,7.22,7.683828702523579,8.106473715298288,7.113171806167401,7.6408756236022715 -2022,9,14,2,2,1,4,6,3,10,0.0,2.0,0.9886242958747089,8.771933002942976,0,1,1,1,0,0,0,4.0,1.0,3.6258281827576955,0.44561339941140515,9.328560157790928,7.73,7.52,7.8,7.695449358059915,7.85,7.49,8.105408117752006,8.397385079125847,7.241931623931624,7.827653767059264 -2022,9,15,0,0,2,5,7,5,11,0.0,1.0,0.9886242958747089,8.771933002942976,4,2,1,0,0,0,0,5.0,1.0,4.374016757075911,0.44561339941140515,9.55006993006993,8.05,7.71,8.02,8.01388413429888,8.0,8.04,8.373150812064965,8.627058823529412,7.736853546910756,8.242174362508615 -2022,9,16,0,0,3,5,7,6,12,0.0,1.0,1.1863491550496508,9.771933002942975,7,5,0,0,0,0,0,7.647133932008465,1.0,5.403171677302372,0.22280669970570258,8.676663987138262,7.64,7.38,7.31,7.553291139240505,7.54,7.55,7.772794750430292,7.921080139372822,7.339296000000001,7.910583599174329 -2022,9,17,0,0,5,6,7,7,15,0.0,1.0,0.9886242958747089,9.217546402354381,7,2,0,0,0,0,0,9.647133932008465,2.0,5.498974406423523,0.22280669970570258,8.087060720042988,6.92,6.79,7.13,6.78607752956636,7.06,6.87,7.382060622174953,6.845698529411764,6.818072837632776,7.270742630385487 -2022,9,18,1,4,7,8,8,8,16,0.0,0.0,1.5505635211251745,9.994739702648678,1,0,0,0,0,0,0,8.0,3.0,3.6922705307095978,0.22280669970570258,8.087060720042988,6.92,6.79,7.13,6.78607752956636,7.06,6.87,7.382060622174953,6.845698529411764,6.818072837632776,7.270742630385487 -2022,9,19,2,5,7,9,10,9,17,0.0,0.0,1.586761358732753,10.549126303237271,3,0,0,0,0,0,0,4.647133932008465,2.0,2.1418068155663237,0.0,8.087060720042988,6.92,6.79,7.13,6.78607752956636,7.06,6.87,7.382060622174953,6.845698529411764,6.818072837632776,7.270742630385487 -2022,9,20,1,4,6,12,11,12,17,0.0,1.0,2.3236837417237726,10.771933002942975,3,0,0,0,0,0,0,4.647133932008465,2.0,2.5818033534685476,0.0,7.9312567132116,6.96,6.86,7.08,6.945609756097561,7.31,6.69,7.465772514458827,7.034045936395759,6.829973787680211,7.17814867328337 -2022,9,21,0,2,7,7,11,14,17,0.0,1.0,1.3840740142245924,9.440353102060083,3,0,0,3,0,0,0,5.352866067991535,2.0,6.520498773549997,0.22280669970570258,7.941447225244831,7.0,6.8,6.92,6.854349570200573,7.15,6.95,7.566129422437255,7.00399438727783,6.791147880041366,7.2585776085828 -2022,9,22,0,2,0,0,11,10,15,0.0,3.0,0.9886242958747089,9.994739702648678,3,2,5,8,0,0,0,7.941401796025396,1.0,9.443712692925306,0.22280669970570258,7.772460202604921,6.78,6.12,6.25,6.714386503067485,6.56,6.82,6.998778301886793,7.078419483101392,6.593458213256484,7.186139121517689 -2022,9,23,0,0,0,0,5,3,14,0.0,5.0,1.3840740142245924,10.549126303237271,12,11,12,9,2,3,0,6.941401796025395,0.0,6.840447071064659,0.22280669970570258,7.48526579111945,6.29,5.74,5.82,6.305010511562719,6.0,6.37,6.503334207077327,6.66093928980527,6.120756972111554,6.767182656464588 -2022,9,24,0,0,0,2,4,4,14,0.0,8.0,1.3840740142245924,11.32631960353157,10,11,8,3,3,1,0,4.29426786401693,0.0,6.036721196780747,0.22280669970570258,6.776406381192276,4.87,4.12,3.79,4.98333661902415,4.64,4.93,5.026497048646449,5.41219512195122,4.700254057868737,5.68878956324447 -2022,9,25,0,0,0,1,5,5,15,0.7057321359830703,9.0,1.5817988733995343,11.103512903825868,9,8,5,3,1,0,0,1.9414017960253949,0.0,6.1465876714349745,0.44561339941140515,6.776406381192276,4.87,4.12,3.79,4.98333661902415,4.64,4.93,5.026497048646449,5.41219512195122,4.700254057868737,5.68878956324447 -2022,9,26,0,0,0,0,7,3,11,1.0585982039746054,10.0,1.9004203238081883,10.880706204120164,4,4,9,8,0,1,0,0.6471339320084649,0.0,4.191279159882525,0.44561339941140515,6.776406381192276,4.87,4.12,3.79,4.98333661902415,4.64,4.93,5.026497048646449,5.41219512195122,4.700254057868737,5.68878956324447 -2022,9,27,0,0,0,0,4,1,7,1.0,9.0,2.0213169150419,11.657899504414463,4,7,13,9,2,6,0,0.6471339320084649,0.0,3.3662688510570566,0.44561339941140515,8.357594501718212,5.09,4.32,4.21,5.243620352250489,4.68,5.41,5.00670018045888,6.704193548387098,4.9005664263645725,5.477297341379872 -2022,9,28,0,0,0,0,3,0,6,0.0,9.0,1.7026954646332464,10.880706204120164,7,9,14,12,5,8,0,6.647133932008465,0.0,2.863934517320165,0.6684200991171078,7.676508313539193,5.35,5.05,5.07,5.2233458445040215,5.09,5.13,5.703440156965336,6.9021561100447855,5.2937584803256446,5.81058145535868 -2022,9,29,0,0,0,0,2,0,6,0.0,7.0,1.7795237325744762,8.549126303237273,10,10,13,10,5,7,0,6.705732135983071,0.0,3.228492728692434,0.8912267988228103,6.611256931608133,5.16,4.81,4.84,5.069265625,5.23,4.95,5.486775015933715,5.755925925925926,5.026528089887641,5.627074869413813 -2022,9,30,0,0,0,0,2,0,4,0.0,4.0,1.3840740142245924,8.549126303237273,13,13,12,7,5,5,0,6.0,0.0,6.943080723190163,0.8912267988228103,6.200971428571429,5.04,4.56,4.65,4.998636890951276,4.69,4.71,5.395755319148936,5.278509933774834,4.838472222222222,5.596906705539358 -2022,10,1,0,0,0,0,2,0,3,0.0,3.0,1.3840740142245924,7.7719330029429745,13,12,10,6,4,5,0,3.29426786401693,0.0,9.211860036919504,0.8912267988228103,5.85648295189164,4.51,4.04,4.07,4.406965065502183,4.14,4.25,4.5432636628405,4.678561099060015,4.245744520030234,4.992197271773347 -2022,10,2,0,0,0,0,3,0,2,0.7057321359830703,2.0,1.1863491550496508,7.7719330029429745,13,11,9,4,4,4,0,1.647133932008465,0.0,8.513331969816033,1.114033498528513,5.85648295189164,4.51,4.04,4.07,4.406965065502183,4.14,4.25,4.5432636628405,4.678561099060015,4.245744520030234,4.992197271773347 -2022,10,3,0,0,0,0,2,0,4,0.35286606799153514,3.0,1.3840740142245924,7.7719330029429745,16,16,11,3,6,3,0,1.647133932008465,0.0,7.779391446092232,1.114033498528513,5.85648295189164,4.51,4.04,4.07,4.406965065502183,4.14,4.25,4.5432636628405,4.678561099060015,4.245744520030234,4.992197271773347 -2022,10,4,0,0,0,0,2,0,5,0.0,5.0,1.1863491550496508,4.663159801765785,14,16,10,3,6,5,0,4.647133932008465,0.0,7.96492927308827,1.7824535976456206,5.779811320754717,4.71,4.67,4.84,4.593076923076922,5.06,4.51,4.8788805309734515,5.002212793733681,4.586890487609912,4.834718530101642 -2022,10,5,0,0,0,0,2,1,6,0.0,6.0,1.1863491550496508,5.440353102060082,11,11,8,3,5,5,0,4.941401796025395,0.0,7.960868214974369,2.228066997057026,7.087332873880084,5.22,5.03,5.22,5.020332900994379,5.45,4.98,5.157557557557557,5.95909305064782,5.014377880184331,5.15288807131739 -2022,10,6,0,0,0,0,2,1,6,0.0,6.0,1.1863491550496508,5.440353102060082,3,6,7,8,2,3,0,2.5885357280338597,0.0,8.382190642990082,3.0052602973513234,7.846260121457489,6.13,5.67,5.88,6.196106677866442,6.07,5.94,5.903953826955075,7.257720174890694,6.0569341894061,6.002718887262079 -2022,10,7,0,0,0,0,3,1,5,0.35286606799153514,6.0,0.9886242958747089,4.663159801765785,3,6,16,17,1,3,0,2.29426786401693,0.0,11.510482272584698,3.0052602973513234,7.359924593967518,6.3,5.97,6.01,6.220091064314173,6.28,5.83,6.349698670605613,6.648758915834522,6.277519613759807,6.369998394348105 -2022,10,8,0,0,0,0,3,1,5,0.7057321359830703,6.0,1.1863491550496508,3.8859665014714873,13,15,20,17,5,8,2,2.29426786401693,0.0,9.962555023180935,3.4508736967627285,6.778273934311669,5.49,5.25,5.35,5.398204558087827,5.62,4.94,5.7075291181364385,5.645288683602772,5.353188284518828,5.740159105229994 -2022,10,9,0,0,0,0,3,0,4,0.7057321359830703,4.0,0.9886242958747089,3.8859665014714873,18,17,15,12,7,10,1,2.941401796025395,0.0,8.848627490412808,3.228066997057026,6.778273934311669,5.49,5.25,5.35,5.398204558087827,5.62,4.94,5.7075291181364385,5.645288683602772,5.353188284518828,5.740159105229994 -2022,10,10,0,0,0,0,3,0,5,0.0,3.0,0.7908994366997671,4.663159801765785,15,13,11,8,6,8,0,4.882803592050789,0.0,9.108309401779497,3.4508736967627285,6.778273934311669,5.49,5.25,5.35,5.398204558087827,5.62,4.94,5.7075291181364385,5.645288683602772,5.353188284518828,5.740159105229994 -2022,10,11,0,0,0,0,4,0,6,0.0,2.0,0.7908994366997671,5.440353102060082,13,10,9,6,4,5,0,8.58853572803386,0.0,9.539211212915841,2.0052602973513234,7.219782270606531,5.53,5.28,5.32,5.271699621371478,6.14,5.07,6.0136838960262935,5.95126031507877,5.373180327868853,5.751555992785702 -2022,10,12,0,0,0,0,4,1,10,0.0,3.0,0.7908994366997671,5.440353102060082,10,10,7,8,4,3,0,6.529937524059255,0.0,10.708384903387,1.559646897939918,7.559009779951101,5.36,4.96,5.05,5.354643458731049,5.83,5.14,5.647520049352252,6.024851872554499,5.18,5.63476928558703 -2022,10,13,0,0,0,0,5,2,8,0.35286606799153514,2.0,0.7908994366997671,6.994739702648677,9,9,15,17,2,3,1,4.882803592050789,0.0,11.732693384512315,1.7824535976456206,7.688293577981653,5.79,5.27,5.39,5.647677041046459,6.09,5.53,6.1390179856115115,6.365773768216516,5.6429282407407415,5.91411930219471 -2022,10,14,0,0,0,0,3,0,5,0.35286606799153514,1.0,0.7908994366997671,5.440353102060082,6,9,18,18,4,7,0,4.882803592050789,0.0,9.969517548212544,1.7824535976456206,7.391725265739984,5.52,5.2,5.32,5.4122695035461,5.52,5.37,5.8770729023383765,5.95105702364395,5.3933854907539125,5.702313701923076 -2022,10,15,0,0,0,0,3,1,7,0.7057321359830703,0.0,0.5931745775248254,2.3315799008828924,9,11,20,17,3,5,0,4.882803592050789,2.0,11.89123854681246,2.3368401982342153,6.322135265700483,5.46,5.06,5.11,5.171888932342589,5.41,4.69,5.465231866825209,5.295151515151515,5.33991235059761,5.439699136133452 -2022,10,16,0,0,0,0,3,1,7,0.0,0.0,0.19772485917494179,0.7771933002942975,11,12,17,19,3,4,1,4.29426786401693,3.0,13.616759278611823,4.896487096174134,6.322135265700483,5.46,5.06,5.11,5.171888932342589,5.41,4.69,5.465231866825209,5.295151515151515,5.33991235059761,5.439699136133452 -2022,10,17,0,0,0,0,4,0,2,0.0,1.0,0.19772485917494179,0.7771933002942975,14,13,24,27,2,8,3,7.941401796025396,2.0,13.072715315694598,5.564907195291242,6.322135265700483,5.46,5.06,5.11,5.171888932342589,5.41,4.69,5.465231866825209,5.295151515151515,5.33991235059761,5.439699136133452 -2022,10,18,0,0,0,0,3,0,0,0.0,3.0,0.19772485917494179,1.554386600588595,12,19,26,31,11,22,10,7.941401796025396,0.0,12.249155740327982,4.896487096174134,6.758127490039841,5.76,5.29,5.59,5.401072144288578,5.84,4.85,5.671009870918755,5.97589928057554,5.6405580693815995,5.569205144694534 -2022,10,19,0,0,0,0,0,0,0,0.0,6.0,0.5931745775248254,3.10877320117719,19,23,25,27,15,20,13,7.529937524059254,0.0,10.71990260081073,4.673680396468431,7.362890070921986,5.82,5.45,5.7,5.598233256351039,6.04,5.28,5.678841210203679,6.201792573623559,5.659264328485886,5.577023731480267 -2022,10,20,0,0,0,0,0,0,0,0.0,6.0,0.39544971834988357,3.10877320117719,19,20,22,19,13,19,6,10.17707145606772,0.0,9.866442360396539,3.4508736967627285,6.895004163197337,5.17,4.89,5.11,5.0210470941883765,5.45,4.92,5.109846644094802,5.721600460564191,5.12747393744988,5.092921783235451 -2022,10,21,0,0,0,0,0,0,1,0.0,2.0,0.19772485917494179,3.10877320117719,17,17,13,10,11,12,1,18.235669660042326,0.0,10.912746798135121,3.228066997057026,6.124435754189944,4.69,4.39,4.47,4.620604890604891,4.66,4.58,4.659388541165142,5.02661921708185,4.54455772113943,4.550143931959438 -2022,10,22,0,0,0,0,1,0,4,0.0,0.0,0.0,1.554386600588595,14,13,7,5,8,7,0,20.0,6.0,14.219282453479929,3.0052602973513234,4.590369230769231,3.86,3.6,3.39,3.792227017695296,3.85,3.95,3.6685256754338877,3.643066176470588,3.7773381294964024,3.842382408620941 -2022,10,23,0,0,0,2,1,1,8,0.0,0.0,0.0,0.0,15,14,3,3,7,3,0,20.647133932008465,10.0,21.655981909481326,4.336840198234215,4.590369230769231,3.86,3.6,3.39,3.792227017695296,3.85,3.95,3.6685256754338877,3.643066176470588,3.7773381294964024,3.842382408620941 -2022,10,24,0,0,1,1,2,1,6,0.0,0.0,0.0,0.0,13,11,2,7,5,2,0,22.0,8.0,27.66756058562218,12.896487096174134,4.590369230769231,3.86,3.6,3.39,3.792227017695296,3.85,3.95,3.6685256754338877,3.643066176470588,3.7773381294964024,3.842382408620941 -2022,10,25,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,5,4,7,20,4,3,3,21.0,7.0,25.78203742462984,12.450873696762729,5.685050551470589,4.36,3.88,4.09,4.591460905349795,4.51,5.07,4.219624248496993,4.399976993865031,4.333659003831418,4.322794564996959 -2022,10,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,3,3,15,20,4,12,7,21.352866067991535,8.0,24.425028191767613,10.450873696762729,6.732140790742526,4.9,4.16,4.38,5.25550880206097,4.73,6.02,4.4734297653487625,5.394433497536946,4.861083032490975,4.771372022210281 -2022,10,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,6,10,21,20,5,11,6,18.647133932008465,8.0,26.74844991167731,11.896487096174134,6.68302097902098,5.03,4.32,4.58,5.268841747984727,4.77,6.06,4.699326642926514,5.49121157323689,4.920676691729324,4.786193666260658 -2022,10,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,18,18,15,7,9,8,17.70573213598307,8.0,24.73656055519504,10.896487096174134,6.601967090501123,4.95,4.42,4.55,5.302213973799128,4.79,6.27,4.739530857302429,5.168136482939633,4.8761676646706595,4.754613712704999 -2022,10,29,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,18,18,15,14,7,6,6,16.58853572803386,6.0,23.506772775441956,9.896487096174134,6.338114169215086,4.42,3.35,3.31,4.894145644930985,3.73,5.54,3.8268548387096777,5.056030042918454,4.466289308176101,4.381603445116364 -2022,10,30,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,16,17,16,16,7,7,4,17.58853572803386,4.0,21.921730705416113,8.896487096174134,6.338114169215086,4.42,3.35,3.31,4.894145644930985,3.73,5.54,3.8268548387096777,5.056030042918454,4.466289308176101,4.381603445116364 -2022,10,31,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,15,16,14,12,5,4,2,17.29426786401693,5.0,19.771307659343766,7.673680396468431,6.338114169215086,4.42,3.35,3.31,4.894145644930985,3.73,5.54,3.8268548387096777,5.056030042918454,4.466289308176101,4.381603445116364 -2022,11,1,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,12,10,9,10,2,4,4,23.0,9.0,18.208838541486156,8.228066997057025,6.355225442834139,4.32,3.15,3.21,4.599097744360902,4.38,5.35,3.772043522121343,5.122375,4.362067137809187,4.2428050042329035 -2022,11,2,0,0,0,0,4,0,1,0.0,0.0,0.0,0.0,8,7,11,9,3,4,1,26.705732135983073,15.0,20.926155022459145,8.005260297351324,7.434425022999079,3.61,2.85,3.21,5.129554204660588,3.68,7.02,3.408439339554917,6.265483870967743,3.6545625784847218,3.2121717604493956 -2022,11,3,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,15,12,9,8,3,3,0,28.29426786401693,17.0,29.345195290875015,14.668420099117109,7.859945490584737,3.63,3.05,3.28,5.27105530187722,3.77,7.74,3.5979183297513044,6.567830351990768,3.680311203319502,3.2159929370217775 -2022,11,4,0,0,0,0,3,0,7,0.0,0.0,0.0,0.0,11,9,7,17,2,3,1,23.0,15.0,32.5548599695318,21.55964689793992,7.420457239627435,3.28,1.76,1.66,5.393489173228346,2.7,7.37,2.8046501739466563,6.65162255466053,3.492715654952076,3.4897623811905953 -2022,11,5,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,5,5,6,22,1,3,6,23.29426786401693,12.0,27.874932153399307,16.78245359764562,7.703220338983051,1.47,0.75,0.68,4.49761780104712,0.87,6.84,1.7345392140037754,6.555493670886076,1.9106166868198309,2.1601393169769447 -2022,11,6,1,1,0,0,7,2,2,0.0,0.0,0.0,0.0,1,1,11,20,0,1,3,27.29426786401693,11.0,26.693850999500285,12.336840198234217,7.703220338983051,1.47,0.75,0.68,4.49761780104712,0.87,6.84,1.7345392140037754,6.555493670886076,1.9106166868198309,2.1601393169769447 -2022,11,7,2,2,0,0,7,3,4,0.0,0.0,0.0,0.0,1,2,17,24,0,1,2,29.0,14.0,24.70529614469528,9.78245359764562,7.703220338983051,1.47,0.75,0.68,4.49761780104712,0.87,6.84,1.7345392140037754,6.555493670886076,1.9106166868198309,2.1601393169769447 -2022,11,8,0,0,0,0,4,4,6,0.0,0.0,0.0,0.0,18,16,19,19,4,2,0,29.647133932008465,16.0,22.60992667558159,7.559646897939919,8.9647461928934,3.29,2.94,3.17,5.70362556561086,3.92,9.01,3.3868163205615676,8.089912321181357,3.5769784172661874,3.10287045666356 -2022,11,9,0,0,0,0,2,1,7,0.0,0.0,0.0,0.0,24,21,12,11,7,3,0,29.941401796025396,18.0,27.092381263082032,11.222806699705703,8.155714285714287,3.52,3.02,3.13,5.517086614173229,3.71,7.53,3.361594855305466,5.4556906729634,3.4990329079919404,3.251188601424822 -2022,11,10,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,16,15,7,12,6,5,0,29.941401796025396,17.0,34.90569479616962,15.559646897939919,8.160823071937784,3.59,2.15,2.36,5.155561668959193,2.52,7.85,2.5736005784061695,6.899384413883431,3.7801581809194267,2.9609067085953877 -2022,11,11,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,10,11,18,36,3,6,8,30.29426786401693,16.0,38.82268540190046,18.67368039646843,8.294442771084338,4.99,3.05,3.51,6.176233766233767,4.42,7.92,4.017240732727535,7.379243323442136,5.023252544837614,4.291150635674843 -2022,11,12,0,0,0,0,4,0,0,0.0,0.0,0.0,0.0,5,7,30,40,1,19,20,27.647133932008465,16.0,36.6711092980659,18.119293795879837,8.294442771084338,4.99,3.05,3.51,6.176233766233767,4.42,7.92,4.017240732727535,7.379243323442136,5.023252544837614,4.291150635674843 -2022,11,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,15,19,32,38,13,28,21,29.29426786401693,17.0,35.37432812187232,18.228066997057027,8.294442771084338,4.99,3.05,3.51,6.176233766233767,4.42,7.92,4.017240732727535,7.379243323442136,5.023252544837614,4.291150635674843 -2022,11,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,27,33,38,17,25,22,28.647133932008465,16.0,37.61813615315514,20.450873696762727,8.294442771084338,4.99,3.05,3.51,6.176233766233767,4.42,7.92,4.017240732727535,7.379243323442136,5.023252544837614,4.291150635674843 -2022,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,31,34,37,17,26,22,27.941401796025396,15.0,38.211055242299864,20.342100495585537,8.728971867007672,6.18,5.5,6.31,7.006662037037037,6.64,8.46,6.022589496924775,7.930782383419689,6.306045070422535,5.7691756487025945 -2022,11,16,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,28,32,38,14,24,22,26.88280359205079,12.0,37.76334122551417,21.56490719529124,8.956589912280702,5.85,5.35,6.49,7.125392371766769,6.46,7.95,5.8831869867340485,7.93688493324857,6.079463163906339,5.503061818181818 -2022,11,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,28,35,39,19,30,20,28.647133932008465,11.0,38.76283155544077,18.787713894996944,8.281465892597968,5.65,5.28,7.89,6.468882480173035,7.73,7.82,6.081698890649763,6.901493383742911,5.723455258001307,5.381848865957218 -2022,11,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,31,38,45,20,29,23,30.941401796025396,13.0,42.83049428663644,20.456133994114055,8.608613728129205,6.21,5.82,7.28,7.068447893569845,8.39,8.24,6.296340799031477,7.594030674846626,6.209176721078779,5.812262172284645 -2022,11,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,34,41,44,19,31,25,31.235669660042326,14.0,41.11123109123094,19.787713894996944,8.591213213213212,5.97,5.78,8.07,6.557905282331513,12.02,8.03,6.457351524879614,7.447469570787956,5.920000000000001,5.689994257493971 -2022,11,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,37,42,38,21,31,24,30.235669660042326,12.0,36.64460688981102,19.34210049558554,8.591213213213212,5.97,5.78,8.07,6.557905282331513,12.02,8.03,6.457351524879614,7.447469570787956,5.920000000000001,5.689994257493971 -2022,11,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,35,35,34,19,27,23,28.529937524059257,11.0,34.02987614911437,17.34210049558554,8.591213213213212,5.97,5.78,8.07,6.557905282331513,12.02,8.03,6.457351524879614,7.447469570787956,5.920000000000001,5.689994257493971 -2022,11,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,30,29,29,16,22,17,26.235669660042326,11.0,31.967133715935375,16.342100495585537,9.605572574762947,6.18,5.96,6.78,7.205759444872783,11.32,8.86,6.32548905109489,8.317626822157434,6.239320843091335,6.009571984435798 -2022,11,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,26,26,27,11,16,13,23.941401796025396,11.0,31.82464848102949,16.67368039646843,10.496750809061488,5.83,5.69,5.93,7.963725714285714,8.87,9.88,5.825332222839164,9.839431279620854,5.806831306990881,5.7307791195948585 -2022,11,24,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,25,25,28,11,14,10,23.235669660042326,9.0,32.639307092615034,21.34210049558554,11.585052922227336,6.21,5.82,6.0,8.018673602080623,6.99,11.27,6.076027093596059,9.744805797101447,6.163678269049859,6.028464470460114 -2022,11,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,25,25,25,10,13,11,25.88280359205079,8.0,29.563028130913345,19.34210049558554,11.585052922227336,6.21,5.82,6.0,8.018673602080623,6.99,11.27,6.076027093596059,9.744805797101447,6.163678269049859,6.028464470460114 -2022,11,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,21,24,27,10,13,11,28.29426786401693,10.0,30.47742795006789,19.228066997057027,11.585052922227336,6.21,5.82,6.0,8.018673602080623,6.99,11.27,6.076027093596059,9.744805797101447,6.163678269049859,6.028464470460114 -2022,11,27,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,21,21,26,29,8,14,11,28.0,11.0,31.537268916329175,19.450873696762727,11.585052922227336,6.21,5.82,6.0,8.018673602080623,6.99,11.27,6.076027093596059,9.744805797101447,6.163678269049859,6.028464470460114 -2022,11,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,22,22,27,29,8,14,10,31.58853572803386,16.0,32.626851069625815,18.450873696762727,11.585052922227336,6.21,5.82,6.0,8.018673602080623,6.99,11.27,6.076027093596059,9.744805797101447,6.163678269049859,6.028464470460114 -2022,11,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,27,21,31,11,12,6,34.88280359205079,17.0,41.823215294507605,18.228066997057027,12.144083950617285,5.45,5.18,5.52,8.308860981308412,5.96,14.76,5.397061403508772,10.668308295231874,5.535439330543933,5.511824304100569 -2022,11,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,23,32,42,10,17,17,33.88280359205079,18.0,40.58586123820022,17.119293795879837,15.264121228895654,6.43,5.9,6.32,11.503661228406909,6.59,14.8,6.081399345335516,13.879325842696629,6.381847826086956,6.042393566698202 -2022,12,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,30,37,39,17,26,19,34.235669660042326,20.0,34.03176972495052,16.67368039646843,17.72305500593589,5.94,5.82,6.7,11.447617916525282,10.1,16.09,6.45242375386269,13.504389830508474,5.866731571627261,5.927802256851155 -2022,12,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,29,30,31,16,20,12,36.235669660042326,19.0,33.33532352102811,15.005260297351324,19.056326707000864,5.57,5.28,5.71,11.138655625913298,6.33,18.25,5.746643920595534,15.888482080112437,5.547334558823529,5.53773063973064 -2022,12,3,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,25,32,45,12,13,10,33.941401796025396,16.0,37.982425809279356,16.78245359764562,15.395331262939958,4.57,4.56,5.17,9.83105,6.06,15.24,4.773411952191235,12.427721196690007,4.60297131147541,4.469123066424022 -2022,12,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,29,37,39,13,21,11,34.58853572803386,14.0,33.32893307592018,15.78245359764562,15.395331262939958,4.57,4.56,5.17,9.83105,6.06,15.24,4.773411952191235,12.427721196690007,4.60297131147541,4.469123066424022 -2022,12,5,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,31,31,34,36,16,18,4,33.235669660042326,16.0,31.389946513576074,10.78245359764562,15.395331262939958,4.57,4.56,5.17,9.83105,6.06,15.24,4.773411952191235,12.427721196690007,4.60297131147541,4.469123066424022 -2022,12,6,0,0,0,0,1,1,3,0.0,0.0,0.0,0.0,26,27,30,35,13,11,4,32.58853572803386,19.0,33.977191595315865,13.336840198234217,17.867295125870378,4.41,3.75,4.01,12.434456838021338,4.36,16.34,3.928236237306254,14.798589743589746,4.416894865525673,4.045482509047044 -2022,12,7,0,0,0,0,2,2,4,0.0,0.0,0.0,0.0,18,18,26,37,7,5,4,31.29426786401693,20.0,35.87745941010807,15.559646897939919,17.67454657618754,4.34,3.8,3.92,12.577345132743362,4.2,15.5,4.122958490566038,14.578698149329929,4.298403908794788,4.16245409701288 -2022,12,8,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,18,19,28,37,6,6,2,32.0,20.0,37.39956011944611,18.336840198234214,21.818678304239402,4.33,4.06,4.43,15.371786114221724,4.97,19.99,4.315099796334012,17.200912408759123,4.305485232067511,4.159397887806885 -2022,12,9,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,28,29,30,36,10,7,4,31.29426786401693,19.0,37.371306626438965,19.55964689793992,31.90920041004613,4.71,4.47,4.94,20.30745735174655,6.75,31.09,4.753800681431005,28.32894934333959,4.640747126436782,4.5333357944477255 -2022,12,10,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,34,33,30,32,13,11,4,29.29426786401693,18.0,35.177349007518494,17.55964689793992,45.768179551122195,4.87,4.68,5.36,29.932704778156996,13.15,44.52,5.048495538493463,37.345,4.870226377952756,4.695158681721086 -2022,12,11,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,37,33,29,33,13,13,7,28.352866067991535,20.0,31.29535701203291,18.559646897939917,45.768179551122195,4.87,4.68,5.36,29.932704778156996,13.15,44.52,5.048495538493463,37.345,4.870226377952756,4.695158681721086 -2022,12,12,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,36,32,29,32,13,14,6,28.647133932008465,24.0,34.49109471170787,23.891226798822814,45.768179551122195,4.87,4.68,5.36,29.932704778156996,13.15,44.52,5.048495538493463,37.345,4.870226377952756,4.695158681721086 -2022,12,13,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,37,36,30,27,16,15,4,32.647133932008465,23.0,40.83370755391282,27.228066997057027,40.15853211009174,5.72,5.69,9.17,24.54003555104114,19.76,36.83,6.988429886302112,35.60005934718101,5.611642304385211,5.878594888094292 -2022,12,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,37,37,27,30,18,13,9,31.647133932008465,22.0,40.90051757863968,29.005260297351327,48.88591397849463,6.02,5.86,11.48,28.978955489614243,21.42,46.99,7.996042790363179,43.82506849315069,5.992637528259231,6.269130365911611 -2022,12,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,33,33,29,35,15,18,19,32.941401796025396,20.0,42.43449712874244,28.450873696762727,25.51178947368421,5.68,5.5,7.89,20.007142857142856,10.55,24.23,6.699113310867734,24.06112664473684,5.667345276872964,5.82744769874477 -2022,12,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,30,33,39,16,24,20,33.58853572803386,18.0,45.4733474783216,28.119293795879834,36.600267131242745,6.18,5.92,8.76,25.70853492333901,8.7,33.14,7.219146558704454,35.05860639021074,6.217054610564011,6.221174271920262 -2022,12,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,29,38,44,18,27,22,34.235669660042326,18.0,45.284116269986626,27.119293795879837,32.93010638297872,6.25,5.78,14.73,20.45675086107922,17.65,28.99,9.425247045146289,29.031335227272727,6.478260869565218,5.6804355742296915 -2022,12,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,33,43,50,21,30,23,34.941401796025396,19.0,44.63672987069214,27.119293795879837,32.93010638297872,6.25,5.78,14.73,20.45675086107922,17.65,28.99,9.425247045146289,29.031335227272727,6.478260869565218,5.6804355742296915 -2022,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,44,49,23,32,24,36.82420538807619,20.0,43.79423547031173,23.228066997057027,32.93010638297872,6.25,5.78,14.73,20.45675086107922,17.65,28.99,9.425247045146289,29.031335227272727,6.478260869565218,5.6804355742296915 -2022,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,34,41,53,24,28,20,35.47133932008465,18.0,42.158149485093844,23.450873696762727,36.84503540519275,6.06,5.18,8.37,22.107896174863388,13.68,30.59,6.579824814014879,34.85986090775989,6.630965630114566,5.403354931605472 -2022,12,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,36,41,55,20,25,23,39.05987504811851,15.0,38.29709179431182,20.67368039646843,26.849543378995435,5.35,4.87,7.67,16.410691192865105,10.76,21.39,5.856676161652127,23.73047244094488,6.164561219127693,4.713110935023772 -2022,12,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,30,40,66,18,24,26,45.47133932008465,14.0,54.108271445639254,20.896487096174134,51.47653454133635,15.07,5.03,6.29,43.800818431911964,6.88,43.01,5.937137681159421,51.270495458298925,20.06072072072072,6.433318561001043 -2022,12,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,28,64,69,22,55,45,39.82420538807619,13.0,48.878919477044036,21.678940693819754,33.7956652360515,11.0,7.12,33.38,27.637277726856095,30.51,30.66,18.811649885583524,32.76790262172285,11.882605042016808,7.51999494012481 -2022,12,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,52,56,61,63,40,51,40,31.177071456067722,11.0,39.63359699576528,19.010520594702648,38.05681363903586,8.48,5.54,28.8,22.439827586206896,35.47,31.52,15.569955956837704,30.30720221606648,8.658421336206898,6.191136918018878 -2022,12,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,48,51,56,55,37,45,32,24.17707145606772,8.0,31.821651065967085,16.787713894996944,38.05681363903586,8.48,5.54,28.8,22.439827586206896,35.47,31.52,15.569955956837704,30.30720221606648,8.658421336206898,6.191136918018878 -2022,12,26,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,43,46,51,54,33,41,26,21.529937524059257,7.0,28.336384426259652,14.564907195291243,38.05681363903586,8.48,5.54,28.8,22.439827586206896,35.47,31.52,15.569955956837704,30.30720221606648,8.658421336206898,6.191136918018878 -2022,12,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,42,46,47,27,32,25,21.941401796025396,13.0,26.666733017318393,14.67368039646843,38.05681363903586,8.48,5.54,28.8,22.439827586206896,35.47,31.52,15.569955956837704,30.30720221606648,8.658421336206898,6.191136918018878 -2022,12,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,32,36,35,21,24,16,26.35286606799154,16.0,28.607719619360893,19.005260297351324,27.75474874371859,4.86,4.83,6.52,17.461594771241828,17.38,20.94,5.581531465987632,22.98225201072386,4.6199370409234,3.846474739970282 -2022,12,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,24,25,16,17,9,27.29426786401693,18.0,35.42983499470263,20.005260297351324,21.714156492785797,3.92,3.74,5.06,12.507254237288135,6.04,12.07,4.533729854182655,16.385297532656022,3.874565217391304,3.3235406290024194 -2022,12,30,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,23,20,34,12,9,9,25.647133932008465,15.0,36.68569192270313,20.450873696762727,15.676962457337885,3.52,3.02,3.23,10.081072821846554,3.86,12.96,3.2463294985891036,11.74517006802721,3.564212103055722,3.120497994652406 -2022,12,31,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,22,22,26,33,11,9,8,25.647133932008465,14.0,32.50573974619538,16.78245359764562,15.676962457337885,3.52,3.02,3.23,10.081072821846554,3.86,12.96,3.2463294985891036,11.74517006802721,3.564212103055722,3.120497994652406 -2023,1,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,19,27,30,6,8,5,27.351590328005177,18.0,32.149535767803265,18.107123372054854,15.99689944134078,3.45,2.34,2.65,12.235537590945837,3.43,14.65,2.75147187141217,15.344634482758622,3.4287513116474297,2.7896952666416883 -2023,1,2,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,26,22,24,31,8,6,2,31.0,22.0,36.964226445843124,22.549972720876795,15.99689944134078,3.45,2.34,2.65,12.235537590945837,3.43,14.65,2.75147187141217,15.344634482758622,3.4287513116474297,2.7896952666416883 -2023,1,3,0,0,0,0,1,1,2,0.0,0.0,0.0,0.0,28,21,20,29,6,3,5,30.648409671994827,20.0,39.46478446676419,22.657096092931646,15.99689944134078,3.45,2.34,2.65,12.235537590945837,3.43,14.65,2.75147187141217,15.344634482758622,3.4287513116474297,2.7896952666416883 -2023,1,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,15,22,35,4,6,11,27.648409671994823,16.0,39.49427134400038,19.878520767342618,24.98437881873727,3.37,2.42,2.54,17.25975197889182,3.3,17.97,2.8229521561896584,23.198994082840237,3.323025302530253,3.1979477401129945 -2023,1,5,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,18,30,36,7,18,14,24.648409671994823,16.0,37.64366576905616,19.657096092931646,19.252328190743338,3.43,2.95,3.27,12.191033766233765,4.36,13.51,3.3856183409436835,16.35554502369668,3.473211009174312,3.418109712993072 -2023,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,25,33,41,15,22,11,23.648409671994827,17.0,34.67174069498192,18.214246744109705,17.36702775290958,3.37,2.82,3.24,10.188095238095238,5.28,13.36,3.3407876712328766,14.538581418581417,3.365660535117057,3.2381813804173354 -2023,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,36,44,17,21,10,25.296819343989647,17.0,34.344947159770385,18.435671418520677,17.594068493150687,3.25,2.76,3.32,13.153678839957037,4.85,13.85,3.162949783837712,15.980880773361974,3.2299999999999995,3.0856382285900357 -2023,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,32,36,41,19,19,11,24.94522901598447,15.0,33.38879416491869,17.657096092931646,17.594068493150687,3.25,2.76,3.32,13.153678839957037,4.85,13.85,3.162949783837712,15.980880773361974,3.2299999999999995,3.0856382285900357 -2023,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,33,35,16,21,12,24.648409671994823,15.0,32.69185515800465,17.214246744109705,17.594068493150687,3.25,2.76,3.32,13.153678839957037,4.85,13.85,3.162949783837712,15.980880773361974,3.2299999999999995,3.0856382285900357 -2023,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,32,31,34,17,20,7,24.35159032800518,16.0,29.37738655045644,15.992822069698736,19.442199762187872,3.45,3.06,3.91,13.125171583383501,7.26,15.6,3.635177145708583,16.760308502633556,3.406439790575916,3.3383886583679114 -2023,1,11,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,37,32,26,31,18,15,4,25.0,18.0,32.208854637226125,17.771397395287764,19.486368876080693,3.1,2.63,3.21,12.931858688733291,6.67,11.58,3.0891948683919486,17.413416955017297,3.1089599999999997,2.9155804081632652 -2023,1,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,27,37,13,7,9,22.296819343989647,14.0,33.827693718754134,17.099945441753587,18.243333333333332,3.14,2.57,2.83,12.054078212290502,3.53,9.5,2.9028053078996474,16.26790625,3.122556663644606,3.0342166375059647 -2023,1,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,24,34,43,15,26,19,19.94522901598447,13.0,31.992767901246566,15.878520767342618,25.195394032134658,3.36,2.95,3.21,17.26934169278997,3.93,13.19,3.4689739623614333,20.756023976023975,3.3314234875444844,3.3930660954712364 -2023,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,36,38,38,24,29,19,20.35159032800518,16.0,29.368583197644096,16.992822069698736,17.39740718198418,3.06,2.7,3.74,12.088855769230769,7.14,9.71,3.0481084840055637,15.055949748743721,2.986548736462094,3.0192786445227315 -2023,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,35,32,24,26,14,24.703180656010353,19.0,30.75010817517718,21.328548046465823,17.39740718198418,3.06,2.7,3.74,12.088855769230769,7.14,9.71,3.0481084840055637,15.055949748743721,2.986548736462094,3.0192786445227315 -2023,1,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,30,26,21,23,7,25.351590328005177,20.0,32.40889829479017,19.214246744109705,17.39740718198418,3.06,2.7,3.74,12.088855769230769,7.14,9.71,3.0481084840055637,15.055949748743721,2.986548736462094,3.0192786445227315 -2023,1,17,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,29,32,26,29,19,12,3,27.0,21.0,35.7994983624108,20.771397395287764,17.39740718198418,3.06,2.7,3.74,12.088855769230769,7.14,9.71,3.0481084840055637,15.055949748743721,2.986548736462094,3.0192786445227315 -2023,1,18,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,27,27,33,10,9,5,27.351590328005177,22.0,38.81201027090632,24.435671418520677,22.217823315118395,3.14,2.64,2.92,15.164247921390778,4.43,15.5,2.954020979020979,21.037306122448978,3.1529537671232872,3.0199458997722095 -2023,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,25,34,8,8,12,29.0,23.0,41.48681197742625,25.435671418520673,20.211807228915664,2.99,2.47,2.77,13.452251563585822,3.53,14.76,2.730212370586674,20.22467128027682,2.988390243902439,2.8136710809978442 -2023,1,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,27,32,37,12,22,17,31.0,22.0,42.49566533530984,27.992822069698736,15.399594477998276,2.95,2.56,2.91,9.681614730878186,5.61,12.82,2.887324937027708,15.270862422997947,2.954050343249428,2.7142541576742416 -2023,1,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,30,35,39,17,24,17,31.648409671994827,20.0,43.30498228264355,27.65709609293165,14.794565037282519,3.08,2.74,3.41,9.103389185072354,4.44,12.03,3.1032914959016393,14.161787003610106,3.011942028985507,2.8899917573359706 -2023,1,22,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,31,35,41,18,25,18,31.0,21.0,42.50908625358131,27.21424674410971,14.794565037282519,3.08,2.74,3.41,9.103389185072354,4.44,12.03,3.1032914959016393,14.161787003610106,3.011942028985507,2.8899917573359706 -2023,1,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,31,36,40,17,24,21,29.296819343989647,20.0,41.64814285286374,31.992822069698736,14.794565037282519,3.08,2.74,3.41,9.103389185072354,4.44,12.03,3.1032914959016393,14.161787003610106,3.011942028985507,2.8899917573359706 -2023,1,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,30,34,40,18,25,23,28.94522901598447,18.0,42.2038592351709,29.771397395287764,16.150650406504067,3.17,2.87,3.35,10.542954545454545,4.68,14.62,3.1336647850629613,16.05388140161725,3.1214198782961464,3.070570583887657 -2023,1,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,29,34,40,17,24,22,26.648409671994823,16.0,41.73711805090197,27.87852076734262,18.6834370015949,3.14,2.77,3.15,11.33357142857143,4.06,14.77,3.0994160206718346,18.284686737184703,3.14,3.067430255402751 -2023,1,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,30,36,43,17,26,23,26.296819343989647,15.0,39.20414893244709,28.32137011616456,15.628241758241758,2.97,2.68,3.48,9.993228869895537,4.59,13.19,3.2544809191629054,16.885983263598327,2.944113135186961,2.838835298794223 -2023,1,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,32,38,40,21,26,21,26.351590328005177,14.0,37.080465847981756,25.099945441753587,8.036025791324736,2.76,2.32,3.14,5.442084487534626,3.57,6.67,2.9794411414982163,8.004063047285463,2.732593726090283,2.4309873749404476 -2023,1,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,38,43,18,22,15,27.351590328005177,17.0,38.05277841522796,24.435671418520677,11.761901489117983,3.72,2.39,2.53,9.935841584158416,3.35,9.26,2.5952800000000003,10.598996742671009,5.961078341013826,2.544190136797333 -2023,1,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,27,38,56,17,22,14,36.0,23.0,47.401969855368485,21.992822069698736,11.761901489117983,3.72,2.39,2.53,9.935841584158416,3.35,9.26,2.5952800000000003,10.598996742671009,5.961078341013826,2.544190136797333 -2023,1,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,27,26,44,59,11,17,27,38.945229015984474,23.0,53.25655197135306,23.21424674410971,11.761901489117983,3.72,2.39,2.53,9.935841584158416,3.35,9.26,2.5952800000000003,10.598996742671009,5.961078341013826,2.544190136797333 -2023,1,31,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,33,53,58,11,23,32,37.24204835997412,20.0,52.48237351992216,23.65709609293165,8.84169779286927,3.21,2.56,3.21,5.916824417009602,12.22,7.7,2.8531634031060094,8.954737876802097,3.4770758122743683,2.7681805359661493 -2023,2,1,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,41,38,49,51,13,29,32,29.242048359974117,18.0,46.49820181640808,22.099945441753587,11.833282442748091,2.78,2.58,4.66,7.774346684175969,13.74,10.12,3.099021299067066,11.699094514210179,2.812763636363636,2.6658089238845144 -2023,2,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,39,38,44,48,17,28,29,28.242048359974117,17.0,39.676292140574404,20.878520767342618,16.719302325581396,2.69,2.46,4.11,11.104856991525425,12.49,11.76,2.976318377381684,15.040947630922693,2.8263710618436404,2.563053126366419 -2023,2,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,47,46,53,54,18,30,22,27.94522901598447,15.0,36.17685637368759,19.657096092931646,5.351671203048449,2.81,2.65,21.34,3.883728423475259,81.06,4.25,8.827644531729472,4.79527851458886,2.744269190325973,2.523865496499359 -2023,2,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,57,51,43,43,24,28,19,25.94522901598447,13.0,32.49550228064334,15.099945441753587,4.623365057783821,2.34,2.11,3.63,3.1331103448275863,9.34,3.38,2.540826868109433,3.093058485139022,2.2866372115856652,2.1375857424101126 -2023,2,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,47,41,36,34,18,23,13,25.0,17.0,32.006062176908344,13.992822069698736,4.623365057783821,2.34,2.11,3.63,3.1331103448275863,9.34,3.38,2.540826868109433,3.093058485139022,2.2866372115856652,2.1375857424101126 -2023,2,6,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,30,32,30,14,17,8,25.703180656010353,18.0,33.66623595467954,18.771397395287764,4.623365057783821,2.34,2.11,3.63,3.1331103448275863,9.34,3.38,2.540826868109433,3.093058485139022,2.2866372115856652,2.1375857424101126 -2023,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,33,29,30,14,14,8,25.054770984015533,16.0,34.108597175691436,22.878520767342618,4.38499079189687,2.21,1.91,2.08,3.468332247557003,3.47,3.21,2.008143598615917,3.7565648854961835,2.169796380090498,1.9857961856617645 -2023,2,8,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,29,28,30,11,9,10,26.0,13.0,34.77636729579771,20.878520767342618,4.402030548068284,2.41,2.06,2.33,3.455682414698163,3.67,3.77,2.1921629581151834,4.224356243949662,2.393815028901734,2.1555034433626217 -2023,2,9,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,24,26,33,7,7,14,23.593638687979293,11.0,39.04124489623825,22.542794790575527,5.044406504065041,2.44,1.99,2.12,4.104556254367575,2.77,4.57,2.132201414898044,4.805184275184275,2.4280939226519336,2.2067920685959272 -2023,2,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,23,30,39,7,17,20,24.0,11.0,38.18385757571601,21.98564413939747,5.451452750352609,2.35,1.97,2.09,3.9771316725978645,2.5,4.49,2.115649615210502,5.257943615257048,2.342558326629123,2.229509401339961 -2023,2,11,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,28,28,33,36,12,22,21,26.296819343989647,18.0,34.648428613701356,19.542794790575527,5.60967706013363,2.31,1.96,2.11,4.329471153846154,2.95,4.65,2.157583333333333,5.21945054945055,2.24,2.1823307086614174 -2023,2,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,30,29,30,17,20,17,25.593638687979293,18.0,31.56066042614039,14.878520767342618,5.60967706013363,2.31,1.96,2.11,4.329471153846154,2.95,4.65,2.157583333333333,5.21945054945055,2.24,2.1823307086614174 -2023,2,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,25,27,28,14,18,14,29.35159032800518,17.0,31.358615827644517,22.221424674410972,5.60967706013363,2.31,1.96,2.11,4.329471153846154,2.95,4.65,2.157583333333333,5.21945054945055,2.24,2.1823307086614174 -2023,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,23,25,29,13,15,9,30.703180656010353,22.0,36.819898586271144,23.771397395287764,6.024351005484461,2.29,1.99,2.08,4.654390467461044,2.68,5.54,2.1457187767933696,5.82771986970684,2.2403142857142857,2.180859947643979 -2023,2,15,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,23,17,22,33,10,10,4,31.0,23.0,43.85255472710609,28.54997272087679,5.18775953079179,2.35,1.85,1.91,4.091200434546442,2.23,4.56,2.037725686873092,4.9667695961995255,2.374242424242424,2.2549027969396715 -2023,2,16,0,0,0,0,1,1,0,0.0,0.0,0.0,0.0,18,16,27,42,5,3,14,31.648409671994827,22.0,45.528482624098835,31.09994544175359,7.4617805383022775,2.39,1.94,2.06,5.8749368968077205,2.33,6.19,2.118904227782571,6.456044671940436,2.386897711978466,2.2902896635836973 -2023,2,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,18,39,44,7,24,23,27.94522901598447,20.0,41.62372672357732,27.87852076734262,6.914203113417346,2.41,2.06,2.27,5.550844221105528,2.93,5.53,2.2004359879032256,5.880804438280165,2.375679785330948,2.331681532004197 -2023,2,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,33,34,38,19,26,23,26.351590328005177,17.0,37.56181078880632,19.7642194649865,6.152637718729747,2.18,1.85,2.08,4.520344580043073,2.68,4.71,2.0282332928311058,3.796244284781188,2.1459259259259262,2.025742394641362 -2023,2,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,32,28,27,31,15,20,14,25.648409671994823,15.0,34.635870636573166,16.099945441753587,6.152637718729747,2.18,1.85,2.08,4.520344580043073,2.68,4.71,2.0282332928311058,3.796244284781188,2.1459259259259262,2.025742394641362 -2023,2,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,22,26,30,10,12,5,23.648409671994827,13.0,29.426949448932426,12.771397395287764,6.152637718729747,2.18,1.85,2.08,4.520344580043073,2.68,4.71,2.0282332928311058,3.796244284781188,2.1459259259259262,2.025742394641362 -2023,2,21,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,30,25,31,36,6,7,2,27.054770984015533,15.0,28.094471819436055,15.107123372054854,6.152637718729747,2.18,1.85,2.08,4.520344580043073,2.68,4.71,2.0282332928311058,3.796244284781188,2.1459259259259262,2.025742394641362 -2023,2,22,0,0,0,0,3,2,5,0.0,0.0,0.0,0.0,31,31,29,38,6,2,2,34.29681934398965,24.0,44.019275878593106,20.328548046465823,7.091092896174864,2.15,1.69,1.88,4.566846057571965,2.41,5.53,1.8519623655913977,5.785865463494667,2.162481990831696,1.8935408604598225 -2023,2,23,0,0,0,0,4,5,4,0.0,0.0,0.0,0.0,35,25,25,46,2,0,8,38.296819343989654,27.0,50.91187402707692,23.328548046465823,8.13027801179444,2.22,1.76,1.94,5.955153707052442,4.57,8.12,1.8691666666666664,5.964671734623358,2.319425717852684,1.9123879412931375 -2023,2,24,0,0,0,0,4,1,2,0.0,0.0,0.0,0.0,35,28,39,53,4,12,13,38.64840967199483,25.0,45.35947009632158,20.549972720876795,14.475665976535543,2.28,1.99,2.35,10.97206140350877,15.74,12.58,2.1195316908030843,8.565871313672922,2.351057692307692,2.0280189633375474 -2023,2,25,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,49,40,36,44,13,14,12,35.24204835997412,24.0,36.887904068499935,16.549972720876795,12.336581875993641,2.27,2.01,2.42,8.645169731258841,12.4,11.06,2.1945110410094637,7.207212863705972,2.2096446700507615,2.0886633228840124 -2023,2,26,0,0,0,0,2,1,2,0.0,0.0,0.0,0.0,43,33,28,34,10,10,5,36.0,25.0,33.596065984797605,21.000000000000004,12.336581875993641,2.27,2.01,2.42,8.645169731258841,12.4,11.06,2.1945110410094637,7.207212863705972,2.2096446700507615,2.0886633228840124 -2023,2,27,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,39,32,27,30,8,4,3,32.64840967199483,24.0,33.50975581717974,23.328548046465823,12.336581875993641,2.27,2.01,2.42,8.645169731258841,12.4,11.06,2.1945110410094637,7.207212863705972,2.2096446700507615,2.0886633228840124 -2023,2,28,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,37,32,24,27,5,5,2,32.35159032800518,23.0,35.13367893213771,23.107123372054854,7.713524399690162,2.42,2.15,2.47,4.918862559241706,7.7,6.58,2.376246627091203,4.947267292912041,2.3706114551083592,2.3434250209438705 -2023,3,1,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,33,29,19,29,7,3,4,31.648409671994827,24.0,37.604179107709015,22.664274023232913,8.90047619047619,2.44,2.18,2.36,6.19992398064962,3.42,7.41,2.3465298944900352,6.180199999999999,2.4409154929577466,2.361333333333333 -2023,3,2,0,0,0,0,2,2,5,0.0,0.0,0.0,0.0,31,26,27,34,7,6,3,31.703180656010353,21.0,37.192316920701245,26.664274023232913,11.944876712328766,2.54,2.29,2.45,8.687972149695387,3.77,9.08,2.4287523471729604,8.147034845496384,2.5268754894283476,2.447654377181004 -2023,3,3,0,0,0,0,3,2,1,0.0,0.0,0.0,0.0,29,28,29,31,6,3,7,30.35159032800518,20.0,36.38877226847914,23.885698697643882,11.78360337972167,2.62,2.42,2.61,9.193802281368821,4.3,9.28,2.5400857081637027,7.927719505008839,2.61167735042735,2.5637416538263995 -2023,3,4,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,32,28,27,28,7,11,7,31.35159032800518,22.0,36.71102444522203,20.328548046465823,7.726608187134503,2.56,2.34,2.48,5.856327868852459,4.62,6.9,2.451184958460866,5.278987783595113,2.6097553743513715,2.481626794258373 -2023,3,5,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,25,25,26,9,10,4,30.054770984015533,22.0,34.341389418890024,18.107123372054854,7.726608187134503,2.56,2.34,2.48,5.856327868852459,4.62,6.9,2.451184958460866,5.278987783595113,2.6097553743513715,2.481626794258373 -2023,3,6,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,27,25,22,27,8,6,1,29.35159032800518,21.0,34.92959519695448,13.664274023232911,7.726608187134503,2.56,2.34,2.48,5.856327868852459,4.62,6.9,2.451184958460866,5.278987783595113,2.6097553743513715,2.481626794258373 -2023,3,7,0,0,0,0,3,1,3,0.0,0.0,0.0,0.0,30,29,26,30,8,7,3,28.054770984015533,21.0,36.874680464211906,13.328548046465823,9.574393099199014,2.48,2.3,2.6,6.929920454545456,6.38,8.07,2.4246618211185136,6.20503816793893,2.413975609756098,2.3727138860256223 -2023,3,8,0,0,0,0,2,1,4,0.0,0.0,0.0,0.0,29,29,28,31,11,13,6,30.054770984015533,21.0,36.6344202434798,12.328548046465823,8.383460854092528,2.54,2.35,2.52,5.38858359133127,3.68,7.06,2.4708632162661734,4.355360721442885,2.555344664778093,2.4140207131620346 -2023,3,9,0,0,0,0,1,1,4,0.0,0.0,0.0,0.0,27,28,28,29,12,12,5,29.703180656010353,18.0,33.33922339356556,13.328548046465823,7.728051118210862,2.5,2.28,2.46,5.3980486158001355,3.3,7.13,2.390616554054054,5.53375,2.517582760774516,2.388331474770003 -2023,3,10,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,29,31,31,32,12,13,6,28.703180656010353,18.0,31.608267714234984,11.549972720876793,6.6267974207415365,2.51,2.3,2.42,4.383761904761905,2.9,5.39,2.4070443449959313,3.9034146341463414,2.5148817567567563,2.3793294701986754 -2023,3,11,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,30,31,31,33,13,17,3,25.0,13.0,27.976748441462483,10.771397395287764,5.854807692307692,2.4,2.24,2.37,4.033533783783783,2.92,4.02,2.316646903820817,3.7890446650124074,2.4467987321711573,2.217137152299642 -2023,3,12,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,29,31,33,33,17,19,6,26.648409671994823,12.0,31.163371180755046,8.214246744109705,5.854807692307692,2.4,2.24,2.37,4.033533783783783,2.92,4.02,2.316646903820817,3.7890446650124074,2.4467987321711573,2.217137152299642 -2023,3,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,31,35,39,14,22,12,27.296819343989647,11.0,28.13522189304438,10.657096092931646,5.854807692307692,2.4,2.24,2.37,4.033533783783783,2.92,4.02,2.316646903820817,3.7890446650124074,2.4467987321711573,2.217137152299642 -2023,3,14,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,32,37,37,19,26,14,26.05477098401553,14.0,25.543494355608388,9.657096092931646,5.799731075697212,2.55,2.38,2.69,3.875588914549654,4.53,3.85,2.5170774340150324,3.7837194029850743,2.598315789473684,2.407607182117992 -2023,3,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,29,32,30,18,23,10,26.351590328005177,14.0,23.836100536887166,14.328548046465823,6.396226993865031,2.48,2.4,2.56,4.1358163265306125,3.26,4.39,2.5160668229777254,4.065245901639344,2.4721621621621623,2.430905888982812 -2023,3,16,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,26,24,28,27,14,17,6,24.648409671994823,16.0,32.9837597921216,13.992822069698736,6.605714285714286,2.36,2.17,2.26,4.743514851485148,2.58,4.26,2.272269313304721,4.51053412462908,2.388218654434251,2.237530915086562 -2023,3,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,23,29,40,12,17,17,22.648409671994823,15.0,35.57989767843,16.98564413939747,6.1816097560975605,2.49,2.16,2.22,3.6588346186803777,2.5,3.75,2.248993855606759,3.4992997685185183,2.4698879202988793,2.3051612364243943 -2023,3,18,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,24,42,45,13,25,20,19.648409671994827,13.0,34.73138788798446,17.7642194649865,6.023443344334433,2.36,2.22,2.29,3.3891379310344827,3.3,2.77,2.308612757884753,3.290180878552971,2.346777251184834,2.256163726182075 -2023,3,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,38,39,20,32,22,21.054770984015533,15.0,32.592013298273606,18.32137011616456,6.023443344334433,2.36,2.22,2.29,3.3891379310344827,3.3,2.77,2.308612757884753,3.290180878552971,2.346777251184834,2.256163726182075 -2023,3,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,30,32,34,20,28,20,23.703180656010353,15.0,30.11722714068604,14.7642194649865,6.023443344334433,2.36,2.22,2.29,3.3891379310344827,3.3,2.77,2.308612757884753,3.290180878552971,2.346777251184834,2.256163726182075 -2023,3,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,24,26,29,16,23,11,19.703180656010357,18.0,28.847719550402125,13.771397395287764,9.16564236111111,2.2,1.91,2.02,3.781641221374046,2.44,3.79,2.0471181140245367,4.532426470588235,2.172542175683537,1.9782417867809374 -2023,3,22,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,23,20,24,24,13,14,1,19.703180656010357,19.0,30.367474967172257,12.885698697643882,7.533262518968134,2.06,1.72,1.8,3.827590975254731,2.21,3.53,1.7943714909544604,5.341422787738578,2.0065069637883006,1.7297663109550183 -2023,3,23,0,0,0,0,1,0,6,0.0,0.0,0.0,0.0,21,18,20,27,3,3,0,26.703180656010353,19.0,29.362806966093913,16.664274023232913,8.037074047447879,2.17,1.81,1.86,3.088565179352581,2.18,3.19,1.8927426089861368,3.6627790096082777,2.17692,1.929668907776227 -2023,3,24,0,0,0,0,2,2,6,0.0,0.0,0.0,0.0,21,20,24,29,3,1,3,28.054770984015533,19.0,32.123729337618556,19.435671418520677,6.1457797356828205,2.09,1.78,1.86,2.4170156438026473,2.12,2.34,1.891035610465116,2.335954810495627,2.141144321093083,1.954368811881188 -2023,3,25,0,0,0,0,4,3,3,0.0,0.0,0.0,0.0,29,24,23,27,3,2,4,28.406361312020707,20.0,36.61674741798846,19.435671418520677,6.509883268482489,2.11,1.75,1.88,3.1534451219512194,2.2,3.17,1.8939516493447806,3.3587423043095863,2.1732262569832406,1.9480616522811345 -2023,3,26,0,0,0,0,4,2,2,0.0,0.0,0.0,0.0,21,17,22,29,4,4,4,27.703180656010353,20.0,37.51124606671365,19.435671418520677,6.509883268482489,2.11,1.75,1.88,3.1534451219512194,2.2,3.17,1.8939516493447806,3.3587423043095863,2.1732262569832406,1.9480616522811345 -2023,3,27,0,0,0,0,4,2,3,0.0,0.0,0.0,0.0,22,21,26,31,3,6,6,26.109541968031063,18.0,37.37993853128155,17.657096092931646,6.509883268482489,2.11,1.75,1.88,3.1534451219512194,2.2,3.17,1.8939516493447806,3.3587423043095863,2.1732262569832406,1.9480616522811345 -2023,3,28,0,0,0,0,3,1,2,0.0,0.0,0.0,0.0,25,23,26,33,6,10,7,25.109541968031063,17.0,34.27430660095849,14.321370116164559,6.7302100456621,2.16,1.82,2.0,4.208915482423335,2.37,5.4,1.9504851635260991,4.972017543859649,2.1405632306057387,1.9314220921726408 -2023,3,29,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,24,28,33,10,15,7,21.054770984015533,20.0,31.657997603816035,11.657096092931646,6.4676299879081025,2.15,1.84,1.97,4.266603260869566,2.22,4.73,1.9455411449016098,4.0554070473876065,2.149089541008277,1.904329721362229 -2023,3,30,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,31,30,27,26,10,11,4,24.406361312020707,21.0,27.91023456191837,16.221424674410972,7.241033676333022,2.01,1.81,1.95,4.590815347721822,2.77,4.66,1.884521484375,4.3506875,2.0056412053258588,1.8564255617977528 -2023,3,31,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,29,25,22,21,8,8,1,26.351590328005177,18.0,30.441570980968486,17.328548046465823,6.933151347615757,1.97,1.68,1.72,4.891747088186356,2.15,5.88,1.7618426588136304,5.6684412153236465,1.979618138424821,1.8653500089976607 -2023,4,1,0,0,0,0,3,2,4,0.0,0.0,0.0,0.0,21,14,20,24,3,2,3,25.351590328005177,15.0,25.029408763533276,12.771397395287764,5.609859451862262,2.11,1.82,1.87,4.549204665959703,2.16,5.44,1.934213679480779,3.6885836177474403,2.087764505119454,1.9487431896978702 -2023,4,2,0,0,0,0,3,0,3,0.0,0.0,0.0,0.0,23,23,24,19,7,10,1,27.351590328005177,15.0,23.903640227720512,10.549972720876793,5.609859451862262,2.11,1.82,1.87,4.549204665959703,2.16,5.44,1.934213679480779,3.6885836177474403,2.087764505119454,1.9487431896978702 -2023,4,3,0,0,0,0,3,1,7,0.0,0.0,0.0,0.0,26,21,17,18,7,8,0,28.054770984015533,20.0,27.27859092228972,9.885698697643882,5.609859451862262,2.11,1.82,1.87,4.549204665959703,2.16,5.44,1.934213679480779,3.6885836177474403,2.087764505119454,1.9487431896978702 -2023,4,4,0,0,0,1,3,4,9,0.0,0.0,0.0,0.0,18,13,12,15,2,0,0,27.054770984015533,20.0,35.23165830286233,19.44284934882194,7.246347731000546,2.05,1.83,2.0,5.337750349324639,2.19,6.22,1.9605278592375366,4.7564589235127475,2.0422095857026807,1.919294968363965 -2023,4,5,0,0,0,0,6,8,5,0.0,0.0,0.0,0.0,21,11,8,25,0,0,3,26.703180656010353,18.0,36.1577575733234,21.214246744109705,6.212749406175773,2.15,1.78,1.99,4.989042056074767,2.09,5.47,1.935735445381609,4.342415408641332,2.127919276270007,1.966267258974667 -2023,4,6,0,0,0,0,8,2,1,0.0,0.0,0.0,0.0,15,7,21,28,0,5,10,25.0,14.0,32.46320011174565,16.435671418520677,6.631305683563748,2.18,1.85,2.08,5.427275661717237,2.08,5.97,2.024339285714286,4.634406779661017,2.1711175198269648,2.0288561099060014 -2023,4,7,0,0,0,0,4,1,0,0.0,0.0,0.0,0.0,18,17,24,24,4,11,11,20.0,13.0,26.72565631040934,11.657096092931646,5.282464332036316,2.06,1.8,2.03,3.7752801030264007,2.2,4.38,1.9571955818965519,2.8650096836668815,1.9840664272890485,1.948712670339229 -2023,4,8,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,26,24,20,18,13,13,6,20.648409671994823,10.0,21.648247845061285,7.992822069698734,5.282464332036316,2.06,1.8,2.03,3.7752801030264007,2.2,4.38,1.9571955818965519,2.8650096836668815,1.9840664272890485,1.948712670339229 -2023,4,9,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,23,16,13,11,10,4,19.35159032800518,7.0,16.966925981607854,4.214246744109705,5.282464332036316,2.06,1.8,2.03,3.7752801030264007,2.2,4.38,1.9571955818965519,2.8650096836668815,1.9840664272890485,1.948712670339229 -2023,4,10,0,0,0,0,1,0,0,0.0,0.0,0.0,3.114301302356118,19,18,12,10,10,8,2,19.94522901598447,3.0,13.483234000791349,2.7713973952877637,5.282464332036316,2.06,1.8,2.03,3.7752801030264007,2.2,4.38,1.9571955818965519,2.8650096836668815,1.9840664272890485,1.948712670339229 -2023,4,11,0,0,0,0,1,0,0,0.0,0.0,0.39500648005446554,5.450027279123207,13,12,8,6,7,7,1,22.703180656010353,6.0,11.087863461675788,1.328548046465823,5.671835853131751,1.95,1.62,1.81,4.364470238095238,1.85,4.15,1.849284493806066,4.985053635280096,1.8781965442764579,2.0064498249708285 -2023,4,12,0,1,1,1,1,0,0,0.0,0.0,0.19750324002723277,3.8928766279451477,5,2,2,2,3,4,1,25.406361312020707,12.0,11.874933441897028,1.885698697643882,5.479617224880383,1.91,1.58,1.68,4.041136526090064,1.77,4.4,1.770516159032783,4.9832673267326735,1.7856771960190394,1.999984541877459 -2023,4,13,0,3,1,1,4,0,1,0.0,0.0,0.0,0.7785753255890295,2,0,1,3,2,4,1,25.351590328005177,15.0,16.799827977634386,3.1071233720548523,5.718421052631579,1.8,1.56,1.66,4.186572068707991,1.81,3.93,1.7218565644881436,4.710276243093922,1.7480283353010624,1.8838193277310924 -2023,4,14,2,3,0,1,3,0,2,0.0,0.0,0.0,0.0,1,0,2,4,1,3,0,22.35159032800518,14.0,24.73110046646182,8.107123372054852,5.125042668735453,1.57,1.4,1.42,3.159912727272727,1.55,3.43,1.5319179664933564,3.4564014560582423,1.5027738029719317,1.7178226761397277 -2023,4,15,0,1,1,0,4,1,6,0.0,0.0,0.0,0.0,6,1,0,14,0,0,1,22.296819343989647,11.0,24.998385445116785,7.214246744109705,4.18641359363702,1.67,1.34,1.44,2.8539001560062403,1.51,2.78,1.451296296296296,2.7962846803377563,1.5740339836375081,1.6001909580545128 -2023,4,16,0,0,0,0,4,0,1,0.0,0.0,0.0,0.0,8,2,9,23,0,4,5,23.35159032800518,11.0,20.65153384866645,4.878520767342616,4.18641359363702,1.67,1.34,1.44,2.8539001560062403,1.51,2.78,1.451296296296296,2.7962846803377563,1.5740339836375081,1.6001909580545128 -2023,4,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7785753255890295,12,9,25,18,4,10,3,24.703180656010353,13.0,16.767845459850143,3.9928220696987347,4.18641359363702,1.67,1.34,1.44,2.8539001560062403,1.51,2.78,1.451296296296296,2.7962846803377563,1.5740339836375081,1.6001909580545128 -2023,4,18,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,16,17,21,15,5,6,2,27.054770984015533,14.0,18.003242395246605,3.5499727208767933,4.5272737306843265,2.08,1.71,1.87,2.615386649041639,2.2,2.93,1.8898336463643681,2.383555736371034,2.023757225433526,2.003804664723032 -2023,4,19,0,0,0,0,1,0,6,0.0,0.0,0.0,0.0,21,18,16,12,3,2,0,25.406361312020707,14.0,24.93187402584678,5.885698697643882,5.6236040145985395,2.03,1.74,1.93,2.6964025695931477,2.13,2.96,1.916336039534063,2.4831578947368422,2.0033788395904435,2.0064423076923075 -2023,4,20,0,0,0,1,2,2,6,0.0,0.0,0.0,0.0,16,12,8,14,1,0,0,27.351590328005177,10.0,29.108325438416234,7.435671418520675,5.610260223048328,1.96,1.68,1.85,3.208433962264151,2.24,3.59,1.8730365377793545,2.851969260326609,1.9570255474452556,1.9893394833948341 -2023,4,21,0,0,0,0,4,0,3,0.0,0.0,0.0,0.0,14,6,12,22,0,2,2,23.648409671994827,4.0,26.164497371227867,5.0999454417535866,4.502741935483871,1.99,1.65,1.77,3.12582651391162,1.98,3.33,1.877199429183018,2.7090121317157716,2.01,2.0178411256045727 -2023,4,22,0,0,0,0,3,0,1,0.0,1.0,0.0,1.557150651178059,15,6,20,27,2,7,4,15.593638687979293,2.0,25.985141359046803,5.0999454417535866,4.267234042553191,2.12,1.74,1.75,2.8641657077100113,1.88,2.92,1.8704602388581415,2.562493249324932,2.0815625,2.0179206323600583 -2023,4,23,0,0,0,0,2,0,0,0.0,0.0,0.19750324002723277,3.114301302356118,16,12,25,25,6,15,9,18.296819343989647,4.0,21.66861540878285,4.5427947905755275,4.267234042553191,2.12,1.74,1.75,2.8641657077100113,1.88,2.92,1.8704602388581415,2.562493249324932,2.0815625,2.0179206323600583 -2023,4,24,0,0,0,0,2,0,0,0.0,0.0,0.19750324002723277,3.114301302356118,16,18,24,22,8,14,7,18.35159032800518,5.0,19.0038438707591,3.8785207673426165,4.267234042553191,2.12,1.74,1.75,2.8641657077100113,1.88,2.92,1.8704602388581415,2.562493249324932,2.0815625,2.0179206323600583 -2023,4,25,0,0,0,0,3,0,0,0.0,0.0,0.0,2.3357259767670886,18,20,23,20,8,11,5,15.648409671994823,5.0,20.390364988429642,3.214246744109705,4.082888888888888,2.19,1.91,2.05,2.856228571428572,2.41,3.09,2.0593056286165177,2.804243902439025,2.12,2.083556531284303 -2023,4,26,0,0,0,0,3,0,3,0.0,0.0,0.0,2.3357259767670886,18,19,22,17,7,9,3,12.296819343989647,2.0,17.31267076224397,4.0999454417535866,4.078434256055363,2.13,1.87,1.98,2.861769722814499,2.35,3.01,2.002037193575655,2.8297452229299367,2.084773946360153,2.085281582952816 -2023,4,27,0,0,0,0,3,0,2,0.0,0.0,0.39500648005446554,3.114301302356118,17,15,17,14,5,8,3,9.242048359974117,1.0,14.52121362123379,3.4356714185206756,4.34539160045403,1.98,1.66,1.96,2.548203309692671,2.32,2.69,1.928507003758114,2.5301239669421487,1.9134024179620037,2.039813917122752 -2023,4,28,0,0,0,0,4,1,2,0.3515903280051769,1.0,0.5925097200816983,4.671451953534177,16,16,16,13,3,4,3,4.242048359974116,1.0,16.01653267296296,4.321370116164557,3.4596675191815858,1.95,1.61,1.8,2.065074183976261,1.93,1.95,1.9346162018592297,2.0984275184275183,1.9168837209302325,1.9992587232674062 -2023,4,29,0,0,0,0,4,0,0,0.0,1.0,0.9875162001361638,6.228602604712236,16,15,13,14,2,5,3,4.5936386879792925,0.0,11.364240813843915,2.657096092931646,3.4596675191815858,1.95,1.61,1.8,2.065074183976261,1.93,1.95,1.9346162018592297,2.0984275184275183,1.9168837209302325,1.9992587232674062 -2023,4,30,0,0,0,0,3,0,2,0.0,0.0,0.9875162001361638,6.228602604712236,14,13,19,18,3,6,2,11.351590328005177,4.0,9.695296158878598,1.328548046465823,3.4596675191815858,1.95,1.61,1.8,2.065074183976261,1.93,1.95,1.9346162018592297,2.0984275184275183,1.9168837209302325,1.9992587232674062 -2023,5,1,0,0,0,0,2,0,2,0.0,0.0,0.5925097200816983,4.671451953534177,12,14,21,16,7,10,2,15.406361312020708,12.0,8.358394156947405,1.1071233720548526,3.656262833675565,2.13,1.8,2.05,2.258612956810631,1.82,2.14,2.03687486108024,2.484924196482717,2.0412408759124085,2.0841563434429733 -2023,5,2,0,0,0,0,2,0,3,0.0,0.0,0.0,2.3357259767670886,16,18,21,14,7,10,1,9.461132296036238,15.0,8.983417444979505,1.885698697643882,3.5344131910766245,2.14,1.94,2.11,2.0496355140186915,2.45,1.93,2.047183202357564,2.276671767406274,2.059444444444444,2.091172190784155 -2023,5,3,0,0,0,0,2,0,4,0.0,0.0,0.0,1.557150651178059,17,19,18,12,8,9,1,6.757951640025885,15.0,8.306582567936934,1.885698697643882,3.7437499999999995,2.0,1.74,1.89,2.0687546607009693,2.11,1.89,1.8446370769985287,2.244160097028502,1.897573770491803,1.9795783658040127 -2023,5,4,0,0,0,0,2,0,5,0.0,0.0,0.0,0.0,19,16,13,8,7,8,1,13.109541968031062,15.0,10.491873929896089,4.2214246744109705,2.926326836581709,1.86,1.6,1.75,1.732341244387428,2.18,1.5,1.744903381642512,1.838013698630137,1.7477861771058316,1.8854573967590174 -2023,5,5,0,0,0,0,2,0,10,0.0,0.0,0.0,0.0,13,14,9,7,6,6,0,17.054770984015533,13.0,14.066389082140002,6.442849348821941,2.6126329113924047,1.74,1.54,1.7,1.6232347723240685,1.88,1.37,1.6845533297238764,1.5635573122529645,1.6509140767824497,1.8060874799357947 -2023,5,6,0,0,0,3,3,2,11,0.0,0.0,0.0,0.0,9,10,5,4,3,1,0,15.703180656010353,12.0,15.623171316697494,4.664274023232911,2.987076923076923,1.6,1.44,1.63,1.5078062913907286,1.65,1.25,1.5771260908817333,1.4758163265306123,1.5986123680241329,1.7132103865447033 -2023,5,7,0,0,2,5,3,5,10,0.0,0.0,0.0,0.7785753255890295,5,7,2,3,1,0,0,15.05477098401553,11.0,15.067670454402172,2.1071233720548523,2.987076923076923,1.6,1.44,1.63,1.5078062913907286,1.65,1.25,1.5771260908817333,1.4758163265306123,1.5986123680241329,1.7132103865447033 -2023,5,8,0,0,0,3,5,6,12,0.0,0.0,0.0,2.3357259767670886,4,3,6,3,0,0,0,15.461132296036238,10.0,13.101147404186316,1.885698697643882,2.987076923076923,1.6,1.44,1.63,1.5078062913907286,1.65,1.25,1.5771260908817333,1.4758163265306123,1.5986123680241329,1.7132103865447033 -2023,5,9,0,0,0,2,7,7,9,0.0,0.0,0.0,3.3357259767670886,14,8,5,3,0,0,0,13.703180656010353,10.0,11.61387744673491,1.6642740232329114,2.7550920245398776,1.94,1.48,1.68,1.8810068649885583,1.92,1.91,1.8354880843263062,1.8453043478260869,1.9030913748932536,1.9891959490563142 -2023,5,10,0,0,0,3,5,6,8,0.0,0.0,0.0,0.2214246744109705,12,10,4,1,2,0,0,11.703180656010353,10.0,11.67456219883554,3.6642740232329114,2.839795479009688,1.95,1.32,1.49,1.8415413333333335,1.59,1.55,1.7718538713195204,1.7989028910303928,1.8743622047244095,2.017162648933222 -2023,5,11,0,0,1,3,5,5,10,0.0,0.0,0.0,0.7785753255890295,5,4,1,0,0,0,0,9.351590328005177,8.0,13.362861092124287,3.5499727208767933,2.5384722222222225,1.77,1.28,1.56,1.6651785714285714,1.4,1.27,1.581956873315364,1.5380212014134276,1.75,1.878004103165299 -2023,5,12,1,2,1,4,6,5,12,0.0,0.0,0.39500648005446554,3.114301302356118,1,0,1,1,0,0,0,4.351590328005177,3.0,11.789492366107732,2.1071233720548523,2.646686567164179,1.79,1.28,1.3,1.6527879078694816,1.35,1.29,1.601344978165939,1.617870090634441,1.7317686424474188,1.8470875420875421 -2023,5,13,1,2,2,4,7,7,8,0.3515903280051769,1.0,0.7900129601089311,6.228602604712236,1,1,1,2,0,0,0,1.0,0.0,11.125028485361156,1.771397395287764,2.471731315042573,1.85,1.2,1.19,1.5965710473649102,1.22,1.15,1.5695258620689654,1.4296176226101414,1.735091743119266,1.8388983459129598 -2023,5,14,0,0,1,3,7,9,9,2.351590328005177,2.0,0.9875162001361638,7.007177930301266,10,6,4,3,0,0,0,0.3515903280051769,0.0,9.620064052006258,1.5499727208767935,2.471731315042573,1.85,1.2,1.19,1.5965710473649102,1.22,1.15,1.5695258620689654,1.4296176226101414,1.735091743119266,1.8388983459129598 -2023,5,15,0,0,0,1,6,9,10,2.6484096719948234,1.0,1.3825226801906294,8.564328581479325,9,8,6,5,1,0,0,0.3515903280051769,0.0,7.449404555234414,1.1071233720548526,2.471731315042573,1.85,1.2,1.19,1.5965710473649102,1.22,1.15,1.5695258620689654,1.4296176226101414,1.735091743119266,1.8388983459129598 -2023,5,16,0,0,0,0,7,8,8,0.0,3.0,1.3825226801906294,10.121479232657384,4,4,4,2,0,0,0,1.0,0.0,5.39310204337451,0.885698697643882,3.22365553602812,2.19,1.43,1.67,2.0736898395721926,1.61,1.92,1.9060731472569776,2.1820749279538902,2.1153743513713863,2.1353544165757907 -2023,5,17,0,0,0,1,7,5,8,1.351590328005177,3.0,1.1850194401633967,7.785753255890295,13,10,11,3,0,0,0,0.0,0.0,5.607393025282823,0.6642740232329115,3.2173211314475867,2.34,1.54,1.66,2.3163094555873927,1.69,2.41,1.8907059736229637,2.379137031768611,2.2670161912104856,2.237395883973424 -2023,5,18,0,0,0,1,4,5,9,0.6484096719948231,2.0,1.3825226801906294,7.785753255890295,18,16,9,3,2,0,0,1.0,0.0,6.647997819705086,0.885698697643882,3.137577442414615,2.16,1.46,1.61,2.1335097493036215,1.78,1.91,1.7777417218543048,2.337394408090423,2.1061363636363635,2.137275868688808 -2023,5,19,0,0,0,0,4,4,10,0.6484096719948231,1.0,1.7012249889303042,6.228602604712236,12,10,6,7,2,0,0,1.0,1.0,7.666098978918587,1.328548046465823,3.135345809601302,2.06,1.39,1.53,1.9264855875831486,1.47,1.81,1.7893930718580018,1.9278186484174507,2.0285201305767138,2.1465030191651353 -2023,5,20,0,0,0,0,5,4,7,1.2968193439896463,1.0,1.7461198863279552,6.228602604712236,10,6,7,8,0,0,0,2.0,0.0,5.607658550365902,1.328548046465823,2.9536501901140686,2.2,1.51,1.57,1.983797009515179,1.57,1.9,1.941322517207473,1.9165076071922544,2.13,2.253647997591087 -2023,5,21,0,0,0,0,6,2,5,0.6484096719948231,2.0,1.4274175775882807,7.785753255890295,3,4,4,4,0,1,0,8.0,0.0,4.13956181657045,1.1071233720548526,2.9536501901140686,2.2,1.51,1.57,1.983797009515179,1.57,1.9,1.941322517207473,1.9165076071922544,2.13,2.253647997591087 -2023,5,22,0,0,0,0,5,4,7,0.0,1.0,1.3825226801906294,8.785753255890295,7,4,3,1,0,0,0,11.703180656010353,0.0,4.807070348032221,0.885698697643882,2.9536501901140686,2.2,1.51,1.57,1.983797009515179,1.57,1.9,1.941322517207473,1.9165076071922544,2.13,2.253647997591087 -2023,5,23,0,0,1,2,4,3,8,0.0,0.0,1.3825226801906294,8.007177930301266,9,5,1,0,1,0,0,12.703180656010353,4.0,4.757503513117659,0.6642740232329115,2.8963657957244653,2.12,1.47,1.72,1.983582842724979,2.57,1.89,1.847946567256912,2.105682254964766,2.0235183850036047,2.1688552188552186 -2023,5,24,0,0,1,3,4,4,9,0.0,0.0,1.3825226801906294,7.228602604712236,9,4,3,2,1,0,0,9.703180656010355,5.0,5.742956158345949,0.2214246744109705,2.6685382059800666,2.11,1.53,1.69,1.9675077239958805,1.73,1.81,1.8377153558052435,2.0352941176470587,2.01,2.120588816439439 -2023,5,25,0,0,0,3,3,4,8,0.0,0.0,0.7900129601089311,7.228602604712236,10,10,8,1,2,0,0,6.351590328005177,6.0,6.236802674514777,0.442849348821941,2.7303451581975073,2.07,1.46,1.89,1.9654838709677418,1.64,1.75,1.8456521739130434,2.060379746835443,1.9862050359712229,2.1296691678035473 -2023,5,26,0,0,0,1,3,3,9,0.0,0.0,0.39500648005446554,5.671451953534177,10,9,8,2,2,1,0,3.351590328005177,6.0,6.090925887871408,0.442849348821941,2.4093121349772875,1.94,1.39,1.65,1.7380213903743316,1.59,1.6,1.7145990338164252,1.7528012769353554,1.8233013333333334,2.0477412513255566 -2023,5,27,0,0,0,1,3,3,8,0.0,0.0,0.7900129601089311,5.671451953534177,5,5,5,1,3,1,0,5.703180656010354,4.0,6.441309392323982,0.442849348821941,2.1827342549923197,1.62,1.29,1.31,1.5088269454123113,1.33,1.41,1.5199617067833697,1.4438547071905112,1.5922407628128725,1.7252872495687939 -2023,5,28,1,0,0,1,3,2,9,0.0,0.0,0.9875162001361638,6.450027279123207,0,3,2,0,3,3,0,7.0,5.0,6.189907082212704,0.6642740232329115,2.1827342549923197,1.62,1.29,1.31,1.5088269454123113,1.33,1.41,1.5199617067833697,1.4438547071905112,1.5922407628128725,1.7252872495687939 -2023,5,29,0,1,2,4,4,3,10,0.0,0.0,0.9875162001361638,6.450027279123207,3,0,0,0,0,1,0,6.296819343989647,5.0,4.100071218784735,0.442849348821941,2.1827342549923197,1.62,1.29,1.31,1.5088269454123113,1.33,1.41,1.5199617067833697,1.4438547071905112,1.5922407628128725,1.7252872495687939 -2023,5,30,0,0,5,7,5,5,10,0.0,0.0,0.7900129601089311,6.671451953534177,8,3,0,0,0,0,0,9.351590328005177,6.0,3.4794122109923693,0.2214246744109705,2.1827342549923197,1.62,1.29,1.31,1.5088269454123113,1.33,1.41,1.5199617067833697,1.4438547071905112,1.5922407628128725,1.7252872495687939 -2023,5,31,0,1,8,8,5,7,11,0.0,0.0,0.39500648005446554,4.335725976767089,3,2,0,0,0,0,0,12.351590328005177,6.0,4.352497248952247,0.442849348821941,2.569826700898588,1.96,1.44,1.76,1.8901965601965602,1.97,1.68,1.714709363035155,2.053859649122807,1.8591691394658754,1.9413098011109118 -2023,6,1,3,2,9,9,7,9,11,0.0,0.0,0.7900129601089311,3.114301302356118,0,0,0,0,0,0,0,11.351590328005177,6.0,5.681513211272165,1.442849348821941,2.5027716186252773,1.95,1.5,1.59,1.847195467422096,4.99,1.75,1.832763489662128,1.9024083769633509,1.8800000000000001,1.9672755976544878 -2023,6,2,7,6,9,10,8,10,12,0.0,0.0,0.9875162001361638,4.892876627945148,0,0,0,0,0,0,0,9.351590328005177,3.0,7.183189365268348,0.885698697643882,2.242368896925859,1.74,1.39,1.56,1.5876210235131398,1.92,1.59,1.5943030794165316,1.5966159052453468,1.6875475475475474,1.713164410058027 -2023,6,3,0,1,9,9,8,10,12,0.0,1.0,1.3825226801906294,7.007177930301266,11,1,0,0,0,0,0,6.351590328005177,1.0,7.820718349603844,0.885698697643882,2.072039312039312,1.73,1.3,1.32,1.5994833068362482,1.49,1.53,1.518536995515695,1.6108920704845815,1.694516129032258,1.6570321516900246 -2023,6,4,0,0,5,9,5,10,9,0.0,2.0,1.5800259202178621,10.342903907068354,15,7,0,0,0,0,0,6.648409671994823,0.0,5.848849677313524,0.442849348821941,2.072039312039312,1.73,1.3,1.32,1.5994833068362482,1.49,1.53,1.518536995515695,1.6108920704845815,1.694516129032258,1.6570321516900246 -2023,6,5,0,0,2,8,5,9,10,0.6484096719948231,1.0,1.9682686146953032,10.342903907068354,9,5,1,0,0,0,0,5.5936386879792925,4.0,3.991359886374701,0.442849348821941,2.072039312039312,1.73,1.3,1.32,1.5994833068362482,1.49,1.53,1.518536995515695,1.6108920704845815,1.694516129032258,1.6570321516900246 -2023,6,6,0,0,2,7,7,8,10,1.351590328005177,0.0,1.5116077885143455,7.228602604712236,6,3,1,0,0,0,0,1.9452290159844694,5.0,2.844149446644374,0.2214246744109705,2.7613490364025695,1.89,1.48,1.86,1.9537225495447241,1.78,1.99,1.822459935897436,2.0500176782557453,1.86,1.9218685756240823 -2023,6,7,0,0,1,6,7,6,12,0.6484096719948231,0.0,0.9190980684326473,5.671451953534177,9,7,3,0,0,0,0,1.0,5.0,2.7746090609066076,0.442849348821941,2.839256625727214,1.88,1.38,1.59,2.020227576974565,1.82,2.14,1.7240460081190794,2.212876129718235,1.842703677000721,1.9410347261434218 -2023,6,8,0,0,0,5,7,6,13,0.6484096719948231,0.0,0.7137087887941403,5.671451953534177,9,8,4,0,1,0,0,3.054770984015531,3.0,3.061972336554919,0.442849348821941,3.1659265442404005,1.95,1.46,1.62,2.139205633802817,1.79,2.11,1.7921006416751097,2.3505008077544427,1.9242477876106194,2.043948859508935 -2023,6,9,0,0,0,4,6,5,15,0.0,0.0,0.7900129601089311,6.450027279123207,8,6,2,0,1,1,0,9.0,3.0,3.874475092830755,0.442849348821941,2.772273615635179,1.94,1.37,1.48,1.9700070721357852,1.52,2.02,1.6385699226985244,2.0366369710467707,1.8899999999999997,1.9841107561235356 -2023,6,10,0,0,2,3,6,6,15,0.0,0.0,1.1850194401633967,7.228602604712236,6,2,0,1,0,0,0,7.593638687979293,3.0,4.724237962386223,0.2214246744109705,2.301518691588785,1.73,1.27,1.43,1.6757011915673694,1.41,1.77,1.5758780889621087,1.680797743755036,1.6967056856187288,1.7882122177185873 -2023,6,11,0,3,0,1,8,8,15,0.0,0.0,0.7900129601089311,6.671451953534177,1,0,4,3,0,0,0,3.9452290159844696,4.0,5.3965775495928225,0.2214246744109705,2.301518691588785,1.73,1.27,1.43,1.6757011915673694,1.41,1.77,1.5758780889621087,1.680797743755036,1.6967056856187288,1.7882122177185873 -2023,6,12,2,4,0,0,9,5,13,1.0,0.0,0.5925097200816983,4.114301302356118,0,1,6,3,0,0,0,0.0,4.0,6.154235813951859,1.2214246744109705,2.301518691588785,1.73,1.27,1.43,1.6757011915673694,1.41,1.77,1.5758780889621087,1.680797743755036,1.6967056856187288,1.7882122177185873 -2023,6,13,3,2,0,1,8,4,13,0.6484096719948231,0.0,0.9112120288213731,5.671451953534177,0,1,6,0,0,1,0,4.296819343989647,2.0,6.421357737940337,0.6642740232329115,2.844303501945525,1.9,1.38,1.47,2.0098622047244095,1.96,2.12,1.7228087591240875,2.1228100470957614,1.8673870967741937,1.9522779283348388 -2023,6,14,1,0,1,4,8,6,15,0.0,1.0,1.3825226801906294,8.228602604712236,1,3,2,0,0,0,0,9.351590328005177,2.0,5.163974009418299,0.2214246744109705,2.75083850931677,1.98,1.35,1.42,1.9882092307692305,1.61,2.01,1.8288567878223052,2.1103996865203762,1.9737040527803957,2.0348914659530184 -2023,6,15,1,1,3,5,8,9,18,0.0,1.0,1.7775291602450949,8.450027279123207,0,1,2,1,0,0,0,7.703180656010354,1.0,6.558976553034192,0.2214246744109705,2.676267432321575,2.0,1.32,1.62,1.9455507246376809,1.69,1.95,1.7646503496503496,2.0792059095106183,1.9672620320855614,2.0466358118361154 -2023,6,16,2,1,0,5,10,10,17,0.0,2.0,0.9875162001361638,9.450027279123207,0,2,4,2,0,0,0,6.296819343989647,0.0,7.988067670577417,0.2214246744109705,2.885102040816326,2.04,1.31,1.52,1.9737734375000002,1.79,1.98,1.8466572157641055,2.063315649867374,2.0,2.0812918660287085 -2023,6,17,0,1,1,5,9,8,18,0.0,4.0,1.3825226801906294,11.007177930301266,2,1,1,0,0,0,0,9.94522901598447,0.0,7.103596914594844,0.442849348821941,2.781923469387755,2.04,1.33,1.61,1.948410372040586,1.53,1.92,1.8432486151840992,2.0354205607476636,2.0065714285714287,2.0879418411933104 -2023,6,18,1,1,3,5,9,8,17,0.0,2.0,1.5800259202178621,12.785753255890295,2,1,0,0,0,0,0,14.351590328005177,0.0,4.22095641802788,0.2214246744109705,2.781923469387755,2.04,1.33,1.61,1.948410372040586,1.53,1.92,1.8432486151840992,2.0354205607476636,2.0065714285714287,2.0879418411933104 -2023,6,19,0,3,5,9,10,8,19,0.0,0.0,3.1985470113174452,12.228602604712236,3,0,0,0,0,0,0,15.703180656010353,4.0,3.6345567271859243,0.0,2.781923469387755,2.04,1.33,1.61,1.948410372040586,1.53,1.92,1.8432486151840992,2.0354205607476636,2.0065714285714287,2.0879418411933104 -2023,6,20,0,3,6,10,9,9,20,0.0,0.0,2.357923260483182,12.892876627945148,2,0,0,0,0,0,0,15.0,4.0,5.0645326823120005,0.0,2.781923469387755,2.04,1.33,1.61,1.948410372040586,1.53,1.92,1.8432486151840992,2.0354205607476636,2.0065714285714287,2.0879418411933104 -2023,6,21,0,1,8,9,6,9,20,0.0,0.0,1.5486627149333902,12.671451953534177,2,1,0,0,0,0,0,8.351590328005177,3.0,5.174702034665139,0.0,3.250302571860817,2.27,1.29,1.46,2.1815550595238093,1.63,2.11,1.833434684684685,2.342739726027397,2.23,2.312454757211969 -2023,6,22,0,0,5,10,6,6,17,0.0,0.0,1.3825226801906294,12.114301302356118,2,1,0,0,1,0,0,4.296819343989647,4.0,4.396022327233556,0.0,3.400810448760884,2.17,1.32,1.65,2.0600790166812994,1.56,2.0,1.8057397454031117,2.1530332326283985,2.134284176533907,2.210086114101184 -2023,6,23,2,1,5,10,9,7,18,0.0,0.0,1.1536562348789245,11.335725976767089,0,0,0,0,0,0,0,3.351590328005177,4.0,3.108683223778352,0.0,3.4032475083056473,2.22,1.22,1.39,2.1137819253438113,3.2,2.06,1.6073798997936928,2.27728323699422,2.1593030303030303,2.2260772734941794 -2023,6,24,4,6,9,10,11,11,19,0.0,0.0,1.5486627149333902,10.114301302356118,0,0,0,0,0,0,0,4.296819343989647,2.0,3.468233955583811,0.0,2.8088556789069172,2.15,1.24,1.54,2.124805194805195,4.15,1.99,1.809746151768836,2.2059966072943173,2.1231476121562953,2.2356262073406308 -2023,6,25,9,8,9,8,12,13,21,0.6484096719948231,0.0,1.5946757454061609,13.671451953534177,0,0,0,0,0,0,0,3.0,2.0,2.9877496801489896,0.0,2.8088556789069172,2.15,1.24,1.54,2.124805194805195,4.15,1.99,1.809746151768836,2.2059966072943173,2.1231476121562953,2.2356262073406308 -2023,6,26,6,8,5,7,13,12,20,0.6484096719948231,0.0,2.3679753254189184,16.45002727912321,0,0,0,0,0,0,0,3.0,1.0,1.1436002335046156,0.0,2.8088556789069172,2.15,1.24,1.54,2.124805194805195,4.15,1.99,1.809746151768836,2.2059966072943173,2.1231476121562953,2.2356262073406308 -2023,6,27,5,5,3,6,12,11,21,0.6484096719948231,1.0,3.6463563248203954,16.114301302356118,0,0,0,0,0,0,0,2.0,1.0,1.3859983709294996,0.0,3.4075806451612904,2.39,1.55,1.82,2.4281646825396828,6.16,2.42,2.2712270341207352,2.615910384068279,2.3021009549795357,2.5734654980523093 -2023,6,28,5,5,3,9,12,12,21,0.6484096719948231,1.0,2.7169687750006135,14.114301302356118,0,0,0,0,0,0,0,0.0,1.0,1.5286110504072645,0.0,3.398690476190476,2.5,1.49,2.16,2.3678174123337365,6.47,2.38,2.319288817745255,2.518421052631579,2.427439143135345,2.5904259482239618 -2023,6,29,5,4,6,12,12,13,21,3.0,4.0,2.9447170872371986,13.892876627945148,0,0,0,0,0,0,0,0.0,0.0,0.9855898670166489,0.0,3.68563184079602,2.44,1.46,1.59,2.5921808246398412,5.6,2.6,2.2540323584318602,2.8125815217391303,2.376174377224199,2.588095735162541 -2023,6,30,5,5,9,12,12,15,20,2.703180656010354,9.0,3.403572231894858,14.228602604712236,0,0,0,0,0,0,0,0.6484096719948231,0.0,2.2461352322877026,0.0,4.085464753587025,2.39,1.49,2.0,2.5762478968031406,3.41,2.41,2.1194444444444445,2.8938337182448035,2.3253896103896103,2.4537014274385407 -2023,7,1,6,6,9,9,14,15,18,2.0,11.0,5.2115232965508005,16.342903907068354,0,0,0,0,0,0,0,1.9452290159844694,0.0,0.7992084806140549,0.0,3.505719844357977,2.26,1.34,1.64,2.269549346552501,3.42,2.14,2.0970348406226837,2.925160680529301,2.204523449319214,2.42873762049386 -2023,7,2,4,9,9,10,15,16,18,1.703180656010354,11.0,6.100619921417615,19.121479232657386,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.03596096553703386,0.0,3.505719844357977,2.26,1.34,1.64,2.269549346552501,3.42,2.14,2.0970348406226837,2.925160680529301,2.204523449319214,2.42873762049386 -2023,7,3,8,11,9,11,16,14,18,1.351590328005177,10.0,7.061473146938456,19.67862988383544,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.43532157720054143,0.0,3.505719844357977,2.26,1.34,1.64,2.269549346552501,3.42,2.14,2.0970348406226837,2.925160680529301,2.204523449319214,2.42873762049386 -2023,7,4,8,11,11,11,16,14,18,3.406361312020708,7.0,5.190501853478253,18.564328581479327,0,0,0,0,0,0,0,0.0,0.0,0.8573269822997425,0.0,3.505719844357977,2.26,1.34,1.64,2.269549346552501,3.42,2.14,2.0970348406226837,2.925160680529301,2.204523449319214,2.42873762049386 -2023,7,5,11,12,13,7,16,14,18,6.054770984015532,5.0,4.053558998695501,17.785753255890295,0,0,0,1,0,0,0,0.0,0.0,2.644345481285279,0.0,3.505719844357977,2.26,1.34,1.64,2.269549346552501,3.42,2.14,2.0970348406226837,2.925160680529301,2.204523449319214,2.42873762049386 -2023,7,6,12,13,9,4,16,14,16,4.0,3.0,4.462097170863146,18.7857532558903,0,0,0,2,0,0,0,0.0,0.0,1.342412954425698,0.0,3.597393316195373,2.34,1.54,1.94,2.4246347305389224,7.24,2.39,2.1817426210153483,2.7347924330005253,2.276789587852494,2.4495610475839174 -2023,7,7,11,12,6,3,16,14,16,1.6484096719948231,3.0,4.79544930479112,19.007177930301268,0,0,0,2,0,0,0,1.351590328005177,0.0,1.1516734999754896,0.0,3.2473717090584557,2.15,1.45,1.61,2.2260639918740477,4.19,2.23,1.9578542289910252,2.473183730715287,2.1220240963855423,2.259970517781463 -2023,7,8,11,11,4,3,15,13,18,2.2968193439896463,3.0,4.916648373503561,18.007177930301268,0,0,0,1,0,0,0,2.0,0.0,0.5770275226558954,0.0,2.5440856031128405,2.06,1.46,1.54,1.980692307692308,2.79,1.82,2.0358226567768036,2.1191946666666666,2.0296989651928508,2.2323526129812166 -2023,7,9,9,9,5,4,14,10,17,2.2968193439896463,3.0,6.231875176024923,18.228602604712236,0,0,0,0,0,0,0,1.6484096719948231,0.0,0.39960424030702746,0.0,2.5440856031128405,2.06,1.46,1.54,1.980692307692308,2.79,1.82,2.0358226567768036,2.1191946666666666,2.0296989651928508,2.2323526129812166 -2023,7,10,6,8,7,7,13,10,18,0.6484096719948231,5.0,7.060326905231656,19.785753255890295,0,0,0,0,0,0,0,5.0,0.0,0.0,0.0,2.5440856031128405,2.06,1.46,1.54,1.980692307692308,2.79,1.82,2.0358226567768036,2.1191946666666666,2.0296989651928508,2.2323526129812166 -2023,7,11,8,8,8,7,13,10,19,0.6484096719948231,7.0,8.222158876998042,21.007177930301264,0,0,0,2,0,0,0,1.6484096719948231,0.0,0.1390807714755328,0.0,3.61804143126177,2.28,1.6,1.87,2.380439189189189,1.92,2.41,2.127370417193426,2.7494834123222747,2.253472840605521,2.3694086838993074 -2023,7,12,11,10,6,8,14,12,21,1.0,9.0,8.314160765750476,21.007177930301264,0,0,0,1,0,0,0,1.2968193439896463,0.0,0.0,0.0,3.5469644056413703,2.35,1.77,2.01,2.6446211312700107,2.17,2.69,2.1890874953060457,2.9448888888888884,2.279099099099099,2.434219944688466 -2023,7,13,10,12,6,10,15,13,23,1.703180656010354,10.0,8.869661628045797,21.785753255890295,0,0,0,0,0,0,0,0.6484096719948231,0.0,0.0695403857377664,0.0,3.627221777421937,2.34,1.68,1.96,2.6837840845854197,1.92,2.81,2.136171898811338,2.9863031515757883,2.2626121635094716,2.403391015556721 -2023,7,14,8,11,9,10,15,15,22,4.054770984015531,11.0,6.682061913905045,22.564328581479327,0,0,0,0,0,0,0,0.0,0.0,0.10550135127480026,0.0,3.9543233312921005,2.25,1.57,1.92,2.7629885583524025,1.8,3.1,2.2344214487300094,3.374348462664714,2.2103693181818183,2.3847332617257426 -2023,7,15,11,12,8,7,16,14,21,7.054770984015532,13.0,7.798663222364924,23.900054558246413,0,0,0,0,0,0,0,0.0,0.0,0.03596096553703386,0.0,4.296041237113402,2.22,1.47,1.75,3.1926834969611972,1.84,3.31,2.1051249745986587,3.8439876670092494,2.188907284768212,2.3817697466467957 -2023,7,16,9,10,7,7,16,14,20,5.406361312020708,13.0,9.837912467260672,22.121479232657386,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,4.296041237113402,2.22,1.47,1.75,3.1926834969611972,1.84,3.31,2.1051249745986587,3.8439876670092494,2.188907284768212,2.3817697466467957 -2023,7,17,12,11,6,6,14,13,20,1.0,14.0,11.67887610496292,24.121479232657382,0,0,0,1,0,0,0,2.0,0.0,0.0,0.0,4.296041237113402,2.22,1.47,1.75,3.1926834969611972,1.84,3.31,2.1051249745986587,3.8439876670092494,2.188907284768212,2.3817697466467957 -2023,7,18,10,10,4,5,14,14,22,1.351590328005177,12.0,11.373701367377294,23.785753255890295,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.0,0.0,5.080322580645161,2.24,1.57,1.8,3.5611785714285715,2.12,3.83,2.2752098056537102,4.883915632754342,2.155467289719626,2.3089621744915414 -2023,7,19,9,8,5,8,14,12,22,3.703180656010354,12.0,9.892077062427795,23.785753255890295,0,0,0,0,0,0,0,0.0,0.0,0.0695403857377664,0.0,4.733017578125,2.29,1.63,1.87,3.3542637271214644,2.06,3.56,2.1570248538011696,4.245145423438837,2.258396501457726,2.396984153742414 -2023,7,20,8,8,8,8,15,14,22,4.0,13.0,7.99945474175087,23.564328581479327,0,0,0,0,0,0,0,0.0,0.0,0.03596096553703386,0.0,4.789630434782609,2.3,1.55,1.79,3.35880988401412,1.86,3.77,2.222431204915843,3.947293267058292,2.2554521963824286,2.416994668697639 -2023,7,21,5,8,5,6,15,15,20,4.351590328005177,12.0,8.865800166326832,23.900054558246413,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.626155606407322,2.37,1.57,1.93,4.094638455217749,1.91,4.77,2.2486379430159835,4.513975641583298,2.333013698630137,2.518269435569755 -2023,7,22,6,6,5,7,14,12,19,4.054770984015531,13.0,10.895043414919508,22.678629883835445,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.339056603773585,2.38,1.45,1.52,3.5061359345500316,1.9,4.42,1.92468163538874,3.7563106320431157,2.3319447513812155,2.4721969857779666 -2023,7,23,7,7,6,9,13,11,18,3.703180656010354,11.0,12.511398480694629,21.121479232657386,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.339056603773585,2.38,1.45,1.52,3.5061359345500316,1.9,4.42,1.92468163538874,3.7563106320431157,2.3319447513812155,2.4721969857779666 -2023,7,24,7,8,8,11,13,12,19,1.6484096719948231,11.0,12.541951210181157,21.564328581479327,0,0,0,0,0,0,0,2.6484096719948234,0.0,0.0,0.0,5.339056603773585,2.38,1.45,1.52,3.5061359345500316,1.9,4.42,1.92468163538874,3.7563106320431157,2.3319447513812155,2.4721969857779666 -2023,7,25,9,8,9,14,14,13,20,1.0,13.0,11.50379592616742,23.564328581479327,0,0,0,0,0,0,0,2.6484096719948234,0.0,0.0,0.0,5.638556611927398,2.42,1.65,1.85,3.6447899159663866,2.26,4.27,2.173483114708345,4.576585754078791,2.3900950570342205,2.5143127871362942 -2023,7,26,9,9,11,17,15,15,21,0.3515903280051769,13.0,11.01112394485763,24.121479232657382,0,0,0,0,0,0,0,1.9452290159844694,0.0,0.0,0.0,5.1711015736766806,2.38,1.7,2.2,3.8140400667779635,4.38,4.1,2.2147634252539916,4.760149659863946,2.3939464882943144,2.515611111111111 -2023,7,27,10,12,13,17,16,17,21,1.0,12.0,10.6845919982906,22.564328581479327,0,0,0,0,0,0,0,1.6484096719948231,0.0,0.0695403857377664,0.0,6.533941811356172,2.43,1.48,2.74,3.4823263692828914,6.36,3.65,2.5818035426731076,5.5053984575835475,2.41,2.450060489820006 -2023,7,28,13,14,14,16,17,18,20,1.0,11.0,9.942687853153128,22.342903907068358,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.0695403857377664,0.0,6.426746237675143,2.35,1.4,2.64,4.016362492133418,4.19,4.39,2.4862355984011284,6.057382885696439,2.3300000000000005,2.3790221663260493 -2023,7,29,12,13,10,12,16,18,20,1.6484096719948231,12.0,9.862875946029213,22.342903907068358,0,0,0,0,0,0,0,1.6484096719948231,0.0,0.0,0.0,6.185848047084002,2.26,1.22,1.77,3.7078307210031345,1.7,4.14,1.9742568039078854,5.420122873345935,2.22,2.428522694833 -2023,7,30,2,4,7,9,15,15,21,1.0,12.0,11.897764847123794,20.342903907068354,0,0,0,0,0,0,0,1.6484096719948231,0.0,0.0,0.0,6.185848047084002,2.26,1.22,1.77,3.7078307210031345,1.7,4.14,1.9742568039078854,5.420122873345935,2.22,2.428522694833 -2023,7,31,2,3,4,8,14,13,22,1.0,11.0,10.309534896866232,17.007177930301268,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.0,0.0,6.185848047084002,2.26,1.22,1.77,3.7078307210031345,1.7,4.14,1.9742568039078854,5.420122873345935,2.22,2.428522694833 -2023,8,1,1,3,4,10,12,12,22,1.703180656010354,10.0,7.756171951263693,17.007177930301268,1,1,0,0,0,0,0,0.6484096719948231,0.0,0.0,0.0,5.185625,2.3,1.17,1.76,3.4978754266211607,1.51,3.94,1.8637550085861476,4.195748663101605,2.2321613236814892,2.3832882596245626 -2023,8,2,0,2,6,12,11,11,23,2.703180656010354,7.0,5.992843862209642,17.785753255890295,2,1,0,0,0,0,0,0.0,0.0,0.03596096553703386,0.0,5.1420790273556225,2.23,1.06,1.83,3.5324436741767764,1.71,3.87,1.8083510908168443,3.616338672768879,2.181409168081494,2.299133058984911 -2023,8,3,1,3,8,12,10,12,23,2.703180656010354,6.0,5.721202476192081,18.564328581479327,0,0,0,0,0,0,0,0.0,0.0,0.4748144507398075,0.0,5.195257207461843,2.2,1.03,1.46,3.4650639955481353,1.61,3.57,1.6831420847101233,4.287393132445691,2.18,2.2242317541613317 -2023,8,4,3,5,9,11,12,13,24,3.0,6.0,4.606869663473251,19.007177930301268,0,0,0,0,0,0,0,0.0,0.0,0.4748144507398075,0.0,5.082949967511371,2.23,1.14,1.23,3.3408157248157244,1.63,3.6,1.6484049459041732,4.422761290322581,2.2000000000000006,2.2894652893817407 -2023,8,5,7,7,6,10,14,15,23,1.703180656010354,8.0,4.704541376920697,20.785753255890295,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.35246501936143465,0.0,5.720454545454546,2.24,1.15,1.73,3.6549946004319653,1.71,4.18,2.026416403785489,4.035212957408519,2.2048954703832755,2.3282762674504043 -2023,8,6,4,7,5,7,15,15,22,3.0,10.0,4.007545968222731,20.007177930301268,0,0,0,0,0,0,0,0.0,0.0,1.1673712174131312,0.0,5.720454545454546,2.24,1.15,1.73,3.6549946004319653,1.71,4.18,2.026416403785489,4.035212957408519,2.2048954703832755,2.3282762674504043 -2023,8,7,2,7,5,6,16,15,22,2.351590328005177,11.0,4.174804136040611,19.342903907068354,0,0,0,0,0,0,0,0.0,0.0,0.8396889081801715,0.0,5.720454545454546,2.24,1.15,1.73,3.6549946004319653,1.71,4.18,2.026416403785489,4.035212957408519,2.2048954703832755,2.3282762674504043 -2023,8,8,7,7,6,7,14,10,21,2.703180656010354,8.0,3.750498005609548,18.121479232657386,0,0,0,0,0,0,0,0.0,0.0,1.1035006563703784,0.0,5.703221153846155,2.4,1.15,1.62,4.0913571703191085,1.88,4.52,1.9729732980514794,4.555724815724816,2.353021978021978,2.4474214220323467 -2023,8,9,8,8,5,5,14,11,22,1.0,7.0,3.8649332887449654,17.342903907068354,0,0,0,0,0,0,0,1.2968193439896463,0.0,1.2380619658168286,0.0,5.202701754385965,2.44,1.23,1.49,3.885838450637695,1.52,4.39,1.954462011418533,4.357091412742382,2.38,2.533929176072235 -2023,8,10,5,5,6,7,13,12,23,1.351590328005177,5.0,4.9615329377499595,16.564328581479327,0,0,0,0,0,0,0,1.2968193439896463,0.0,0.10550135127480026,0.0,5.107786492374728,2.62,1.36,1.89,3.6958407517309593,1.64,3.92,2.2796476510067114,4.135761755485893,2.605491723466407,2.7319212172923777 -2023,8,11,6,6,7,10,14,14,24,1.703180656010354,5.0,6.170454125390699,15.007177930301266,0,0,0,0,0,0,0,0.6484096719948231,0.0,0.0695403857377664,0.0,5.023599045346062,2.58,1.26,1.72,3.655502724120852,1.66,4.06,2.1997098065376917,3.65936248682824,2.559092422980849,2.6353453754808496 -2023,8,12,4,7,8,9,16,15,23,2.054770984015531,7.0,5.8427718161577396,15.785753255890295,0,0,0,0,0,0,0,0.0,0.0,0.0695403857377664,0.0,4.921281669150521,2.46,1.2,1.58,3.451834002677376,1.6,4.07,2.0924791086350973,3.790166563849476,2.4164163498098863,2.527593425605536 -2023,8,13,8,9,6,5,17,16,23,7.406361312020708,9.0,4.750508338760801,15.564328581479325,0,0,0,0,0,0,0,0.0,0.0,1.0461721487006894,0.0,4.921281669150521,2.46,1.2,1.58,3.451834002677376,1.6,4.07,2.0924791086350973,3.790166563849476,2.4164163498098863,2.527593425605536 -2023,8,14,6,8,4,3,17,16,21,11.406361312020708,11.0,5.874995686831955,15.121479232657384,0,0,0,0,0,0,0,0.0,0.0,1.5984169612281098,0.0,4.921281669150521,2.46,1.2,1.58,3.451834002677376,1.6,4.07,2.0924791086350973,3.790166563849476,2.4164163498098863,2.527593425605536 -2023,8,15,2,7,3,3,17,12,18,12.703180656010353,13.0,7.528115981749933,16.900054558246413,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.283760824742267,2.5,1.33,1.69,4.490548286604361,1.63,4.8,2.2690863480327437,5.508702570379437,2.4269337979094074,2.582044939187796 -2023,8,16,3,8,3,5,13,8,17,13.406361312020708,14.0,9.621427351396214,19.121479232657386,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,6.119796230259806,2.44,1.34,1.9,4.097493421052631,1.62,4.28,2.250816596194503,5.167631926121373,2.3732666666666664,2.534711375212224 -2023,8,17,4,7,3,4,13,8,20,9.648409671994823,13.0,10.275665779389312,20.121479232657382,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,5.617911111111111,2.36,1.26,1.61,3.4150819672131147,1.67,3.67,2.0178305785123967,3.756734947237741,2.3056313645621183,2.4366308851224106 -2023,8,18,7,6,1,4,13,10,21,2.703180656010354,10.0,9.504872111569002,17.007177930301268,0,0,1,1,0,0,0,0.6484096719948231,0.0,0.0,0.0,4.834065080135988,2.35,1.18,1.43,3.2046984435797667,1.51,3.28,2.051014241055922,3.529421593830334,2.2613275299238302,2.4291332179930794 -2023,8,19,0,2,2,10,11,10,23,1.703180656010354,7.0,6.705050715167854,12.335725976767089,1,0,0,0,0,0,0,1.2968193439896463,0.0,0.2086211572132992,0.0,4.178247520075579,2.27,1.17,1.45,2.8512037037037032,1.56,2.97,1.9111348740945153,3.1046436285097196,2.206675461741425,2.3501318555321995 -2023,8,20,3,4,8,12,13,13,23,0.7031806560103538,4.0,3.8823547357293493,13.450027279123207,0,0,0,0,0,0,0,1.2968193439896463,0.0,1.0321854288912817,0.0,4.178247520075579,2.27,1.17,1.45,2.8512037037037032,1.56,2.97,1.9111348740945153,3.1046436285097196,2.206675461741425,2.3501318555321995 -2023,8,21,7,8,9,14,15,16,23,0.0,3.0,5.8700864558773524,11.335725976767089,0,0,0,0,0,0,0,2.2968193439896463,0.0,0.527323465952974,0.0,4.178247520075579,2.27,1.17,1.45,2.8512037037037032,1.56,2.97,1.9111348740945153,3.1046436285097196,2.206675461741425,2.3501318555321995 -2023,8,22,2,4,9,16,15,17,21,0.0,5.0,5.534250306196489,13.450027279123207,0,0,0,0,0,0,0,5.296819343989647,0.0,0.5308553739552061,0.0,4.1035230179028135,2.39,1.23,1.73,2.852090163934426,1.51,2.83,2.079889349930844,2.99177009155646,2.3533397870280734,2.4649604337631885 -2023,8,23,0,1,12,18,12,18,22,0.0,7.0,6.030262847689781,12.900054558246413,1,1,0,0,0,0,0,4.94522901598447,0.0,0.1907394544502084,0.0,3.761106780982073,2.39,1.26,1.34,2.5162358031368304,1.63,2.34,2.0268700183936232,2.7198472310630173,2.36,2.462153325817362 -2023,8,24,0,2,14,18,13,18,23,0.7031806560103538,8.0,6.001019599097104,14.342903907068354,1,1,0,0,0,0,0,1.9452290159844694,0.0,0.50839387094054,0.0,3.651967717140661,2.31,1.13,1.52,2.3150870588235293,1.41,2.28,2.035275635532705,2.537928423950447,2.216021978021978,2.421702570197593 -2023,8,25,1,6,11,16,15,19,23,1.4063613120207077,7.0,5.037893510848671,16.900054558246413,1,0,0,0,0,0,0,1.2968193439896463,0.0,1.1985690922775625,0.0,3.6819402985074623,2.21,1.03,1.14,2.299418669647848,1.35,2.32,2.025191570881226,2.5679095713446856,2.1442475386779187,2.3227966819028274 -2023,8,26,7,9,7,7,16,18,23,5.3515903280051775,8.0,5.431806030021125,17.678629883835445,0,0,0,1,0,0,0,0.0,0.0,0.3636432747699936,0.0,4.055066573230554,2.16,0.88,1.13,2.490616515837104,1.17,2.67,1.6851161330822346,3.0483478260869568,2.1117171717171717,2.3324703521255246 -2023,8,27,4,6,3,4,15,14,21,4.296819343989647,10.0,6.000838584429626,19.67862988383544,0,0,1,1,0,0,0,0.0,0.0,0.03596096553703386,0.0,4.055066573230554,2.16,0.88,1.13,2.490616515837104,1.17,2.67,1.6851161330822346,3.0483478260869568,2.1117171717171717,2.3324703521255246 -2023,8,28,2,4,2,5,14,12,18,2.2968193439896463,12.0,6.1319872476612165,21.235780535013504,0,0,1,0,0,0,0,3.0,0.0,0.39960424030702746,0.0,4.055066573230554,2.16,0.88,1.13,2.490616515837104,1.17,2.67,1.6851161330822346,3.0483478260869568,2.1117171717171717,2.3324703521255246 -2023,8,29,4,5,2,6,14,12,17,0.6484096719948231,12.0,6.383435626405163,20.792931186191563,0,0,0,0,0,0,0,4.648409671994823,0.0,0.39960424030702746,0.0,6.631205377839591,2.36,1.17,1.6,3.248946711074105,1.42,3.2,2.1943102409638557,4.003296370967742,2.282667509481669,2.46519250780437 -2023,8,30,6,7,0,5,12,10,16,0.0,12.0,5.079513967929465,19.457205209424473,0,0,3,0,0,0,0,3.2968193439896463,0.0,1.0591986235258422,0.0,4.619442060085837,2.28,1.24,1.53,2.8805585497305244,1.52,2.76,1.8562037037037036,3.5143086325439272,2.2453846153846158,2.3919891562182314 -2023,8,31,1,2,0,4,11,6,16,0.0,8.0,5.50379592616742,18.121479232657386,1,1,3,0,0,0,0,6.054770984015532,0.0,0.608179328887659,0.0,3.802571428571429,2.31,1.28,1.37,2.6214372945044624,1.59,2.52,2.025651857246905,2.9340172642762283,2.2473605328892594,2.436445245182516 -2023,9,1,0,0,1,7,9,9,17,0.0,4.0,3.705844645622425,10.335725976767089,3,2,1,0,0,0,0,2.054770984015531,1.0,1.4085623443607533,0.0,3.333745607870696,2.33,1.35,1.43,2.318831710709319,1.63,2.24,1.8354872280037842,2.5453766532489936,2.2344991212653778,2.4704440682380517 -2023,9,2,0,1,4,10,9,10,17,1.6484096719948231,2.0,3.9978056815232987,10.892876627945148,1,0,0,0,0,0,0,0.3515903280051769,1.0,0.30300459130203306,0.0,2.7917311233885815,2.34,1.59,1.84,2.1251937689969607,1.93,1.94,1.9422346368715084,2.2514008620689654,2.2438450292397665,2.5074242853099347 -2023,9,3,5,7,9,13,11,12,18,0.0,3.0,3.9921600290213934,12.450027279123207,0,0,0,0,0,0,0,4.0,1.0,1.3365379428700979,0.0,2.7917311233885815,2.34,1.59,1.84,2.1251937689969607,1.93,1.94,1.9422346368715084,2.2514008620689654,2.2438450292397665,2.5074242853099347 -2023,9,4,8,11,12,15,13,13,20,0.0,2.0,1.9169037499559458,12.450027279123207,0,0,0,0,0,0,0,7.351590328005177,0.0,3.637503151457365,0.0,2.7917311233885815,2.34,1.59,1.84,2.1251937689969607,1.93,1.94,1.9422346368715084,2.2514008620689654,2.2438450292397665,2.5074242853099347 -2023,9,5,11,13,13,12,14,14,22,0.0,2.0,0.9875162001361638,12.228602604712236,0,0,0,0,0,0,0,6.0,0.0,4.235920112685475,0.0,2.7917311233885815,2.34,1.59,1.84,2.1251937689969607,1.93,1.94,1.9422346368715084,2.2514008620689654,2.2438450292397665,2.5074242853099347 -2023,9,6,12,14,10,3,15,14,21,0.0,3.0,1.3825226801906294,13.228602604712236,0,0,0,1,0,0,0,5.0,0.0,2.664506012940673,0.0,2.6780855614973262,2.29,1.63,2.05,2.1555106888361046,2.68,2.15,2.010138256617771,2.269275256222548,2.206806722689076,2.47580849808203 -2023,9,7,13,13,4,2,15,11,22,0.0,4.0,2.0648682637002977,14.228602604712236,0,0,1,3,0,0,0,6.296819343989647,0.0,0.910136027940349,0.0,3.1553833470733714,2.25,1.59,2.12,2.308503054989817,2.68,2.32,2.0146087298466377,2.5175829383886255,2.188456837280367,2.395430964604161 -2023,9,8,11,10,1,2,13,8,21,0.0,7.0,2.92014183972286,16.007177930301268,0,0,2,1,0,0,0,4.296819343989647,0.0,0.7529759936908731,0.0,3.632962529274005,2.27,1.58,2.0,2.5135404016814573,2.41,2.5,1.9112446351931334,2.7926454741379314,2.192878048780488,2.380650380197379 -2023,9,9,10,9,1,2,11,8,18,0.0,10.0,3.0816841142130587,18.900054558246413,0,0,1,1,0,0,0,1.2968193439896463,0.0,1.691265245780461,0.0,3.7729472902746846,2.31,1.45,1.65,2.5396731234866827,1.88,2.37,1.8816146029356415,2.8737520042757883,2.22567066521265,2.409244253348768 -2023,9,10,6,6,1,2,11,8,15,1.0,10.0,2.0345771228582774,17.900054558246417,0,0,1,2,0,0,0,1.2968193439896463,0.0,3.501835272224102,0.0,3.7729472902746846,2.31,1.45,1.65,2.5396731234866827,1.88,2.37,1.8816146029356415,2.8737520042757883,2.22567066521265,2.409244253348768 -2023,9,11,7,7,1,0,12,10,13,0.6484096719948231,9.0,1.9436231263551882,15.342903907068354,0,0,3,3,0,0,0,3.9452290159844696,0.0,4.1955424015633564,0.2214246744109705,3.7729472902746846,2.31,1.45,1.65,2.5396731234866827,1.88,2.37,1.8816146029356415,2.8737520042757883,2.22567066521265,2.409244253348768 -2023,9,12,7,6,0,1,12,8,12,0.0,6.0,1.8224240576427462,11.678629883835443,0,0,2,4,0,0,0,4.94522901598447,0.0,3.984539699013756,0.885698697643882,4.194771573604061,2.32,1.57,1.88,2.549533116178067,2.13,2.36,2.2414098519776755,3.1665546218487393,2.27,2.421828197111806 -2023,9,13,4,5,0,0,11,8,11,0.0,4.0,1.5800259202178621,9.342903907068354,0,0,5,5,0,0,0,2.9452290159844696,0.0,3.836337768818006,0.6642740232329115,4.233157894736842,2.35,1.68,1.76,2.604775204359673,2.36,2.37,2.1698652163632066,3.2788522238163553,2.297706043956044,2.4927901907356946 -2023,9,14,2,2,0,1,10,5,11,1.0547709840155308,4.0,1.3825226801906294,9.564328581479325,0,2,5,2,0,0,0,1.2968193439896463,0.0,5.215862051446669,0.442849348821941,4.334153846153846,2.34,1.55,1.69,2.73145324597975,1.82,2.61,1.956415458937198,3.00073980875692,2.2675129533678753,2.4927336711711714 -2023,9,15,0,0,0,1,7,6,12,1.7579516400258846,4.0,1.3825226801906294,9.564328581479325,5,4,4,2,0,0,0,0.6484096719948231,0.0,6.413443589697382,0.6642740232329115,4.199920692141312,2.4,1.52,1.56,2.553049779458097,1.77,2.53,1.8847484554280671,2.878365650969529,2.3198404907975463,2.554014042603832 -2023,9,16,0,0,0,1,7,5,12,1.703180656010354,3.0,1.7012249889303042,10.121479232657384,2,3,4,2,0,0,0,1.2968193439896463,0.0,4.9991895242020545,0.6642740232329115,3.6551121495327106,2.33,1.14,1.16,2.3829005934718097,1.29,2.36,1.763772573363431,2.684547803617571,2.2715447154471544,2.490738993710692 -2023,9,17,0,0,0,1,7,6,12,0.3515903280051769,2.0,2.019927297669979,11.121479232657384,2,5,4,3,1,0,0,5.242048359974116,0.0,3.4851039321269424,0.442849348821941,3.6551121495327106,2.33,1.14,1.16,2.3829005934718097,1.29,2.36,1.763772573363431,2.684547803617571,2.2715447154471544,2.490738993710692 -2023,9,18,0,0,0,1,7,3,12,0.0,1.0,1.5800259202178621,10.342903907068354,5,4,5,2,0,0,0,6.296819343989647,0.0,3.0124273980799163,0.2214246744109705,3.6551121495327106,2.33,1.14,1.16,2.3829005934718097,1.29,2.36,1.763772573363431,2.684547803617571,2.2715447154471544,2.490738993710692 -2023,9,19,0,0,0,3,6,3,12,0.0,1.0,1.1850194401633967,9.007177930301266,2,3,5,1,0,1,0,9.94522901598447,0.0,3.623895006326287,0.2214246744109705,3.71833855799373,2.32,1.28,1.65,2.5697480403135495,1.6,2.85,1.8429875047330557,2.7295876288659793,2.2352180936995154,2.442969411764706 -2023,9,20,0,0,1,4,6,4,14,0.0,0.0,0.7900129601089311,7.228602604712236,3,4,1,0,0,0,0,13.0,2.0,5.422813789664155,0.442849348821941,3.5426555760936536,2.35,1.26,1.21,2.474980605120248,1.51,2.5,1.7943185011709601,2.6170030211480366,2.266358754027927,2.56064831002331 -2023,9,21,0,0,2,4,6,6,15,0.0,0.0,0.5925097200816983,7.228602604712236,5,5,0,0,0,0,0,11.351590328005177,3.0,8.50460055881436,0.442849348821941,3.292599653379549,2.21,1.07,1.12,2.2521662245800176,1.52,2.35,1.814337704918033,2.390265291083272,2.141758034026465,2.480966570866737 -2023,9,22,0,0,3,3,5,7,16,0.0,0.0,0.39500648005446554,8.450027279123207,6,5,0,1,1,0,0,8.648409671994823,3.0,8.970781108120992,0.2214246744109705,3.1312332112332113,2.18,0.95,0.91,2.126034816247582,1.49,2.21,1.5890290641967422,2.1191666666666666,2.10036717062635,2.424274159216688 -2023,9,23,0,0,2,5,4,6,18,0.0,0.0,0.19750324002723277,7.671451953534177,10,8,1,1,2,0,0,12.296819343989647,2.0,9.66373004248709,0.442849348821941,3.0807844905320105,2.07,0.95,0.91,2.0743767705382434,1.08,2.17,1.6369194010831476,2.015782881002088,2.0069823232323234,2.3235769708255742 -2023,9,24,0,0,1,4,6,5,18,0.0,1.0,0.5925097200816983,9.007177930301266,7,6,2,1,1,0,0,12.351590328005177,1.0,8.848799672242283,0.442849348821941,3.0807844905320105,2.07,0.95,0.91,2.0743767705382434,1.08,2.17,1.6369194010831476,2.015782881002088,2.0069823232323234,2.3235769708255742 -2023,9,25,0,0,1,3,6,6,16,0.0,1.0,0.7900129601089311,9.007177930301266,7,5,2,2,0,0,0,11.351590328005177,2.0,5.911547979250788,0.442849348821941,3.0807844905320105,2.07,0.95,0.91,2.0743767705382434,1.08,2.17,1.6369194010831476,2.015782881002088,2.0069823232323234,2.3235769708255742 -2023,9,26,0,0,2,3,6,8,14,0.0,2.0,0.9875162001361638,10.564328581479325,7,7,1,2,1,0,0,11.0,1.0,5.033794940212572,0.2214246744109705,3.4892924528301887,2.16,1.22,1.61,2.1214165792235047,1.57,2.1,1.748553305141331,2.270487288135593,2.0672387238723875,2.3882324218749997 -2023,9,27,0,0,1,2,5,7,15,0.0,3.0,0.9875162001361638,10.785753255890295,10,8,1,1,1,0,0,12.648409671994823,1.0,4.833517987156262,0.2214246744109705,3.046401869158879,2.19,1.29,1.96,2.149365367180417,1.6,2.15,1.917495296963182,2.220362257792755,2.0885433422698836,2.4110433763188746 -2023,9,28,0,0,1,4,5,6,15,0.0,1.0,0.9875162001361638,9.228602604712236,9,8,2,1,1,0,0,13.0,1.0,6.301592824512153,0.2214246744109705,3.025418502202643,2.25,1.3,1.63,2.163449951409135,1.54,2.2,1.9003415559772296,2.2327841845140033,2.1407623762376238,2.4930192435301928 -2023,9,29,0,0,1,7,6,7,15,0.0,0.0,0.7900129601089311,9.228602604712236,12,7,1,1,1,0,0,15.648409671994823,2.0,6.295922999817139,0.2214246744109705,2.9822653061224487,2.23,0.87,1.31,2.123877840909091,1.04,2.15,1.5311493212669685,2.142045112781955,2.11857634902411,2.4696555555555557 -2023,9,30,0,0,2,9,7,8,15,0.0,0.0,0.0,6.671451953534177,7,3,0,0,0,0,0,14.94522901598447,7.0,7.606552042085942,0.2214246744109705,2.9822653061224487,2.23,0.87,1.31,2.123877840909091,1.04,2.15,1.5311493212669685,2.142045112781955,2.11857634902411,2.4696555555555557 -2023,10,1,0,0,4,10,7,7,13,0.0,0.0,0.0,3.557150651178059,3,1,0,0,0,0,0,13.648409671994823,7.0,9.568477332049234,1.2214246744109705,2.7100000000000004,2.16,0.85,0.91,1.970754280425729,1.1,1.86,1.3806780111672425,1.9352807283763276,2.04,2.360762672453883 -2023,10,2,0,1,4,9,6,7,13,0.0,0.0,0.0,2.557150651178059,3,0,0,0,0,0,0,16.648409671994823,6.0,10.493877085074617,1.2214246744109705,2.7100000000000004,2.16,0.85,0.91,1.970754280425729,1.1,1.86,1.3806780111672425,1.9352807283763276,2.04,2.360762672453883 -2023,10,3,0,1,5,7,6,7,12,0.0,0.0,0.0,1.557150651178059,2,0,0,0,0,0,0,11.351590328005177,2.0,13.90946252790335,2.1071233720548523,4.038274760383387,2.28,1.15,1.48,2.1898529411764707,1.59,2.27,1.9736773547094189,2.289319938176198,2.1353089244851255,2.4989832958560876 -2023,10,4,2,3,5,2,6,5,13,0.0,3.0,0.0,3.114301302356118,0,0,0,2,0,0,0,8.648409671994823,0.0,12.495445878859426,2.328548046465823,4.297769230769231,2.36,1.21,1.38,2.3653948126801154,1.7,2.42,1.9460448877805487,2.7114640522875817,2.232167381974249,2.561307797955135 -2023,10,5,1,1,1,1,6,4,9,0.0,8.0,0.5925097200816983,5.450027279123207,0,0,1,5,0,0,0,5.945229015984469,0.0,11.618828932897316,1.328548046465823,4.947702702702703,2.54,1.24,1.45,2.6228933771723817,1.54,2.29,1.940522791655936,3.403633125556545,2.414118081180812,2.729414478918059 -2023,10,6,0,1,0,0,7,4,7,0.3515903280051769,9.0,0.9875162001361638,7.785753255890295,1,1,7,14,0,0,0,4.242048359974116,0.0,12.478619695195412,1.328548046465823,5.321645161290323,2.48,1.15,1.39,2.5758860319666437,1.33,2.11,1.8333294629898402,3.096981689308919,2.299074686054197,2.7355827358357936 -2023,10,7,0,1,0,0,5,1,2,0.7031806560103538,9.0,1.3825226801906294,8.564328581479325,1,3,15,16,1,8,3,2.9452290159844696,0.0,10.171017343640816,1.771397395287764,5.040246913580247,2.54,0.97,1.15,2.480788450860633,1.15,2.11,1.7869341031256223,2.984892703862661,2.351961950059453,2.783937360178971 -2023,10,8,0,0,0,0,3,0,0,0.0,7.0,1.1850194401633967,9.342903907068354,10,13,17,12,8,11,2,3.593638687979293,0.0,8.132840163187522,1.328548046465823,5.040246913580247,2.54,0.97,1.15,2.480788450860633,1.15,2.11,1.7869341031256223,2.984892703862661,2.351961950059453,2.783937360178971 -2023,10,9,0,0,0,0,2,0,2,0.0,3.0,0.9875162001361638,8.564328581479325,13,15,16,14,7,8,1,9.351590328005177,1.0,7.074399734634834,1.1071233720548526,5.040246913580247,2.54,0.97,1.15,2.480788450860633,1.15,2.11,1.7869341031256223,2.984892703862661,2.351961950059453,2.783937360178971 -2023,10,10,0,0,0,0,2,0,3,0.0,0.0,0.5925097200816983,6.228602604712236,13,13,16,14,4,5,0,13.0,2.0,8.662269746790434,1.1071233720548526,4.4693200663349915,2.5,1.22,1.34,2.440439453125,1.45,2.19,1.9082517067379043,2.864949651432998,2.346296296296296,2.7256759926285814 -2023,10,11,0,0,0,0,3,0,3,0.0,0.0,0.19750324002723277,4.671451953534177,10,10,13,12,5,6,1,14.05477098401553,4.0,12.266193478047065,1.1071233720548526,4.655232558139534,2.51,1.24,1.44,2.532891156462585,1.78,2.68,1.6725733093955715,2.727736883320282,2.3544295302013425,2.7078473547267996 -2023,10,12,0,0,0,0,4,0,5,0.0,0.0,0.0,2.3357259767670886,9,10,13,10,3,2,0,12.648409671994823,3.0,18.064502605461037,2.7713973952877637,4.781394101876676,2.38,1.2,1.52,2.3284552845528457,1.84,2.29,1.7268977777777776,2.5044984488107547,2.296185792349727,2.6150770261219023 -2023,10,13,0,0,0,0,5,0,6,0.0,0.0,0.0,1.557150651178059,14,12,11,12,2,1,0,12.648409671994823,3.0,19.078165122649896,3.4356714185206756,5.305401337792643,2.23,1.12,1.43,2.2223790642347345,1.29,2.17,1.6562164406310544,2.4110045662100457,2.1611054247697035,2.5743755504667956 -2023,10,14,0,0,0,0,4,1,2,0.0,1.0,0.0,3.114301302356118,15,17,13,15,4,4,3,14.0,2.0,18.95456033640804,3.657096092931646,4.343594153052451,1.84,0.88,1.09,1.763655336911151,1.12,1.59,1.672596977329975,1.8087158671586718,1.7624773413897281,2.2147657730842134 -2023,10,15,0,0,0,0,3,0,0,0.0,3.0,0.0,6.228602604712236,14,14,15,15,6,9,6,8.94522901598447,0.0,13.817663550257958,2.214246744109705,4.343594153052451,1.84,0.88,1.09,1.763655336911151,1.12,1.59,1.672596977329975,1.8087158671586718,1.7624773413897281,2.2147657730842134 -2023,10,16,0,0,0,0,1,0,0,0.0,4.0,0.5925097200816983,7.785753255890295,14,14,16,16,9,13,8,10.648409671994823,1.0,10.441592877408048,1.771397395287764,4.343594153052451,1.84,0.88,1.09,1.763655336911151,1.12,1.59,1.672596977329975,1.8087158671586718,1.7624773413897281,2.2147657730842134 -2023,10,17,0,0,0,0,0,0,0,0.0,3.0,0.7900129601089311,8.564328581479325,13,13,15,13,9,12,6,12.593638687979293,0.0,8.74864394304195,1.328548046465823,6.359002064693738,1.93,1.31,1.47,1.8030282935455348,1.65,1.46,1.9461450806003333,2.3453181336161184,1.7972626387176325,2.315603877390621 -2023,10,18,0,0,0,0,0,0,0,0.0,5.0,0.7900129601089311,8.564328581479325,12,12,13,14,7,9,3,8.593638687979293,0.0,9.535686614220594,0.6642740232329115,6.6904191616766475,2.06,1.41,1.6,1.9578337531486147,1.75,1.76,1.8638633030214138,2.731759436980166,1.9576394849785408,2.2971794003049295 -2023,10,19,0,0,0,0,1,0,3,0.0,6.0,1.1850194401633967,9.342903907068354,10,12,14,8,6,7,1,7.593638687979293,0.0,7.406657907680797,0.885698697643882,7.4714378478664205,2.3,1.45,1.57,2.334772861356932,1.79,2.1,1.9169322709163346,3.1514024787997394,2.225213389121339,2.494681109185442 -2023,10,20,0,0,0,0,2,1,7,0.0,6.0,0.9875162001361638,9.342903907068354,10,11,12,7,5,4,0,9.538867703963762,0.0,6.289795010576411,0.6642740232329115,7.307401574803149,2.23,1.37,1.51,2.1251483050847457,1.61,2.04,1.8833550792171483,2.725486415425066,2.1179349593495935,2.4692509828264018 -2023,10,21,0,0,0,0,2,0,6,0.0,3.0,0.7900129601089311,8.564328581479325,9,9,15,9,4,5,0,10.94522901598447,1.0,7.987824041933896,0.6642740232329115,5.286783625730995,1.81,1.39,1.64,1.7517812499999998,1.7,1.77,1.8397373134328359,2.214936170212766,1.7563775901765157,2.049333207760407 -2023,10,22,0,0,0,0,2,1,5,0.0,0.0,0.39500648005446554,6.450027279123207,13,15,17,12,5,7,0,12.296819343989647,4.0,9.023517206634303,0.885698697643882,5.286783625730995,1.81,1.39,1.64,1.7517812499999998,1.7,1.77,1.8397373134328359,2.214936170212766,1.7563775901765157,2.049333207760407 -2023,10,23,0,0,0,0,2,1,7,0.0,0.0,0.0,3.114301302356118,15,15,16,8,7,5,0,15.94522901598447,5.0,11.15252401673454,1.885698697643882,5.286783625730995,1.81,1.39,1.64,1.7517812499999998,1.7,1.77,1.8397373134328359,2.214936170212766,1.7563775901765157,2.049333207760407 -2023,10,24,0,0,0,0,2,1,8,0.0,0.0,0.0,0.7785753255890295,17,14,8,7,6,4,0,21.296819343989647,4.0,14.281609125058253,3.328548046465823,6.117958446251129,1.96,1.49,1.69,2.270988882387361,1.77,2.55,1.9036008918617613,2.5673946360153255,1.8954693366708386,2.2414137214137213 -2023,10,25,0,0,0,1,3,2,9,0.0,0.0,0.0,0.0,10,9,5,7,4,1,0,23.648409671994827,8.0,16.532397535272796,4.771397395287764,5.83812,1.96,1.26,1.7,2.794454148471616,1.6,5.24,1.9140088413215448,3.4553549119818285,1.92,2.32707180104292 -2023,10,26,0,0,0,2,3,3,10,0.0,0.0,0.0,0.0,3,3,2,7,2,1,0,24.648409671994823,8.0,22.64861756275283,3.771397395287764,6.8215534491837815,2.02,1.09,1.5,3.849626497533474,1.47,5.79,1.6317968137895011,3.382076423936554,1.98,2.357312888698263 -2023,10,27,0,0,1,1,3,3,10,0.0,0.0,0.0,0.7785753255890295,1,2,1,18,1,0,1,26.94522901598447,9.0,27.674650830210275,4.214246744109705,5.771880074953154,2.3,1.13,1.51,3.3674315068493152,1.59,5.76,1.6080286738351253,3.5164831981460027,2.2525782811459027,2.524620974076983 -2023,10,28,0,2,0,0,5,4,7,0.0,0.0,0.0,0.7785753255890295,0,1,15,32,0,0,4,27.94522901598447,10.0,32.571609322495256,4.214246744109705,6.105339805825243,2.89,1.13,1.52,4.566662040249827,1.61,6.09,1.936749279538905,4.010694789081886,3.0,2.92291904047976 -2023,10,29,0,0,0,0,5,3,6,0.0,0.0,0.0,0.0,15,13,20,32,0,1,9,25.593638687979293,9.0,34.218022049099574,9.878520767342618,6.105339805825243,2.89,1.13,1.52,4.566662040249827,1.61,6.09,1.936749279538905,4.010694789081886,3.0,2.92291904047976 -2023,10,30,0,0,0,0,5,0,0,0.0,0.0,0.0,0.0,17,13,25,33,0,10,19,23.89045803196894,7.0,33.29117264106305,13.42849348821941,6.105339805825243,2.89,1.13,1.52,4.566662040249827,1.61,6.09,1.936749279538905,4.010694789081886,3.0,2.92291904047976 -2023,10,31,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,22,32,35,9,19,18,22.187277375958583,4.0,30.18567128978825,12.985644139397468,6.363921007441328,3.33,2.34,2.43,4.526791104050834,3.11,6.09,2.6527627403397425,4.949843137254902,3.396422553467272,3.056525766470972 -2023,11,1,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,26,25,31,33,15,25,19,21.89045803196894,3.0,25.45707525935441,9.985644139397468,6.028280871670702,3.02,2.21,2.66,4.081980703745743,4.08,5.42,2.82785480706344,3.871215409658166,2.8891671031953905,3.0456130702038178 -2023,11,2,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,28,27,26,26,17,22,15,17.89045803196894,3.0,20.833853937585676,7.321370116164558,5.7976,2.72,1.94,2.35,3.5407710843373494,2.94,4.57,2.521071871127633,3.7910921501706483,2.620603264726757,2.849427367377293 -2023,11,3,0,0,0,0,1,0,0,0.0,1.0,0.0,0.0,23,22,21,23,13,18,9,14.242048359974117,2.0,17.637712459277083,4.657096092931646,5.29379792746114,2.52,1.58,2.4,3.1088311688311685,2.02,4.08,2.2757146439317952,3.2793443469282395,2.473372693726937,2.6735498257839723 -2023,11,4,0,0,0,0,1,0,0,0.0,1.0,0.0,0.7785753255890295,19,19,18,21,10,12,4,14.593638687979293,2.0,16.159320031902375,3.9928220696987347,4.509218225419665,2.08,1.34,1.95,3.2736282748393473,1.67,3.98,2.0875265674814028,2.661911911911912,2.055391884380211,2.4024911743939747 -2023,11,5,0,0,0,0,1,0,1,0.0,1.0,0.0,1.557150651178059,15,15,19,17,7,9,1,16.296819343989647,3.0,15.09656760393474,2.9928220696987347,4.509218225419665,2.08,1.34,1.95,3.2736282748393473,1.67,3.98,2.0875265674814028,2.661911911911912,2.055391884380211,2.4024911743939747 -2023,11,6,0,0,0,0,1,0,3,0.0,0.0,0.0,2.3357259767670886,22,19,14,15,7,6,0,18.648409671994827,4.0,14.668761795092259,2.7713973952877637,4.509218225419665,2.08,1.34,1.95,3.2736282748393473,1.67,3.98,2.0875265674814028,2.661911911911912,2.055391884380211,2.4024911743939747 -2023,11,7,0,0,0,0,1,0,6,0.0,0.0,0.0,2.3357259767670886,15,14,15,14,4,4,0,19.35159032800518,9.0,18.40529842171571,2.328548046465823,4.5171694417238,1.85,1.45,1.62,2.5767777777777776,1.75,2.74,1.8691965678627145,2.006350734921439,1.7525462012320328,2.056586964437432 -2023,11,8,0,0,0,0,1,2,7,0.0,0.0,0.0,0.0,25,21,15,14,4,1,0,21.351590328005177,10.0,25.186749566422815,5.549972720876793,3.633492063492063,1.78,1.51,1.72,2.085938543754175,2.03,2.46,1.6793940911367051,1.7573897911832947,1.7254769736842104,1.6350080146553698 -2023,11,9,0,0,0,0,2,1,3,0.0,0.0,0.0,0.0,27,18,17,21,2,2,3,24.648409671994823,9.0,28.554990601445375,11.657096092931646,3.6758617021276594,2.18,1.58,1.68,2.485483293556086,2.0,2.94,1.8261814803344687,2.245359355638166,2.113188163037409,2.0615878962536023 -2023,11,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,20,21,26,6,9,9,24.296819343989647,9.0,28.6648741929609,13.542794790575527,3.721822625698324,2.17,1.75,2.19,2.4196623981373695,2.91,2.18,2.0549961409827633,2.48,2.117843273231623,2.219498882020255 -2023,11,11,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,23,26,25,11,12,10,21.648409671994823,7.0,26.162196215348036,12.657096092931646,3.721822625698324,2.17,1.75,2.19,2.4196623981373695,2.91,2.18,2.0549961409827633,2.48,2.117843273231623,2.219498882020255 -2023,11,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,31,28,23,18,11,11,8,20.94522901598447,5.0,22.561538867010558,9.878520767342618,3.721822625698324,2.17,1.75,2.19,2.4196623981373695,2.91,2.18,2.0549961409827633,2.48,2.117843273231623,2.219498882020255 -2023,11,13,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,32,28,18,17,11,11,8,21.296819343989647,7.0,20.949781561488003,7.764219464986499,3.721822625698324,2.17,1.75,2.19,2.4196623981373695,2.91,2.18,2.0549961409827633,2.48,2.117843273231623,2.219498882020255 -2023,11,14,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7785753255890295,29,26,21,16,10,12,6,24.53886770396376,7.0,19.349039702734924,6.321370116164557,5.146338329764454,2.43,2.04,2.49,3.569492703266157,3.0,4.58,2.298223109558273,3.682639849151477,2.293098139833226,2.3908193146417447 -2023,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.7785753255890295,27,24,18,15,11,10,6,24.132506391943053,9.0,19.477002557024388,5.0999454417535866,6.0749256625727215,2.61,2.15,2.48,4.082331060136392,2.72,5.62,2.4245959595959596,4.993225806451613,2.512401215805471,2.6474512071707386 -2023,11,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,18,16,16,7,6,8,24.187277375958587,8.0,21.03712535176538,5.657096092931646,6.476454640250261,2.54,2.15,2.38,4.52514386896857,2.68,5.95,2.4617675475987495,5.641184500220167,2.4530305131761443,2.627135508325437 -2023,11,17,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,17,16,19,23,5,6,4,23.835687047953407,8.0,21.93050586741546,4.214246744109705,6.104896245059289,2.53,2.04,2.16,4.190563628357552,2.41,5.66,2.3203296056503824,4.849197080291971,2.462510187449063,2.667063462723352 -2023,11,18,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,20,26,22,5,9,4,23.89045803196894,10.0,23.169718195898216,6.992822069698734,5.392528823981553,2.38,2.22,2.46,3.439378531073446,3.57,5.5,2.3437810611148424,4.298719239373602,2.2999089253187615,2.3661252002135615 -2023,11,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,24,25,24,10,15,7,25.296819343989647,11.0,25.654560539380654,11.435671418520677,5.392528823981553,2.38,2.22,2.46,3.439378531073446,3.57,5.5,2.3437810611148424,4.298719239373602,2.2999089253187615,2.3661252002135615 -2023,11,20,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,31,29,27,25,12,14,5,25.296819343989647,11.0,28.22814066444992,14.214246744109705,5.392528823981553,2.38,2.22,2.46,3.439378531073446,3.57,5.5,2.3437810611148424,4.298719239373602,2.2999089253187615,2.3661252002135615 -2023,11,21,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,28,24,25,10,11,10,23.242048359974113,8.0,28.060984967048626,13.878520767342618,5.3581089743589745,2.35,2.18,2.4,3.9512054120541205,3.16,4.78,2.289181721572795,4.494755913437342,2.322571959145775,2.290414267434421 -2023,11,22,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,25,25,28,9,18,17,23.94522901598447,7.0,25.794769777082557,12.099945441753587,4.882727272727273,2.38,2.19,2.45,3.8524025157232704,2.86,4.91,2.440034978624174,3.9175180722891567,2.3005666316894016,2.4610700997172197 -2023,11,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,21,25,33,13,21,17,26.648409671994823,9.0,31.17316559348485,14.657096092931646,4.536866118175019,2.51,2.27,2.42,3.2012164813603663,4.98,3.76,2.419582331730769,3.382514409221902,2.492764912280702,2.4761710761240057 -2023,11,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,25,34,39,14,19,15,27.94522901598447,14.0,37.98155926145277,16.542794790575527,4.536866118175019,2.51,2.27,2.42,3.2012164813603663,4.98,3.76,2.419582331730769,3.382514409221902,2.492764912280702,2.4761710761240057 -2023,11,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,33,34,39,16,18,15,29.94522901598447,16.0,39.5797710358203,18.32137011616456,4.536866118175019,2.51,2.27,2.42,3.2012164813603663,4.98,3.76,2.419582331730769,3.382514409221902,2.492764912280702,2.4761710761240057 -2023,11,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,29,35,38,17,21,18,29.593638687979293,16.0,39.014083162554435,20.32137011616456,4.536866118175019,2.51,2.27,2.42,3.2012164813603663,4.98,3.76,2.419582331730769,3.382514409221902,2.492764912280702,2.4761710761240057 -2023,11,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,28,38,41,16,26,21,28.593638687979293,14.0,38.264395448222274,18.7642194649865,4.536866118175019,2.51,2.27,2.42,3.2012164813603663,4.98,3.76,2.419582331730769,3.382514409221902,2.492764912280702,2.4761710761240057 -2023,11,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,34,43,40,20,28,17,29.89045803196894,13.0,33.85909948678067,13.985644139397468,6.067467755803955,2.67,2.39,4.22,4.54399299474606,9.07,5.99,3.003031701444623,4.966392742796158,2.6527060539752005,2.640487382987383 -2023,11,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,37,37,32,24,26,15,32.89045803196894,16.0,32.696247731396625,15.099945441753587,5.99089124668435,2.59,2.35,6.76,4.571325301204819,10.15,5.93,3.5490274928190395,4.921683046683046,2.5525052854122623,2.6041527413340697 -2023,11,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,29,29,30,19,22,12,31.593638687979293,16.0,36.309014487385596,19.657096092931646,6.094136518771331,2.53,2.24,2.86,4.201941747572816,3.81,5.91,2.626929577464789,5.353379152348224,2.5344562551103844,2.5382607142857143 -2023,12,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,28,28,32,15,16,9,28.94522901598447,16.0,36.845561582475376,20.214246744109705,5.25793893129771,2.46,2.05,2.22,3.8121899529042382,2.81,4.9,2.389906542056075,4.5198513800424625,2.4237293729372937,2.5006448622881354 -2023,12,2,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,22,25,34,9,10,9,26.593638687979293,15.0,35.20591657788665,20.435671418520677,4.8113600000000005,2.37,1.97,2.02,3.0030537974683544,2.62,4.62,2.171469754253308,3.791515151515152,2.2999999999999994,2.348942767222287 -2023,12,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,23,20,26,32,5,9,10,22.89045803196894,14.0,31.758083092190592,19.214246744109705,4.8113600000000005,2.37,1.97,2.02,3.0030537974683544,2.62,4.62,2.171469754253308,3.791515151515152,2.2999999999999994,2.348942767222287 -2023,12,4,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,23,22,29,31,9,16,12,19.187277375958587,10.0,26.473929797677513,16.214246744109705,4.8113600000000005,2.37,1.97,2.02,3.0030537974683544,2.62,4.62,2.171469754253308,3.791515151515152,2.2999999999999994,2.348942767222287 -2023,12,5,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,29,30,31,15,20,12,18.187277375958587,6.0,23.45165527549504,11.657096092931646,4.520385050962627,2.42,2.07,2.47,2.9854154213986845,5.77,3.97,2.3773684210526316,3.4054467564259485,2.2740519187358914,2.44425934919864 -2023,12,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,31,30,28,18,23,13,18.94522901598447,8.0,21.641328877694917,9.099945441753587,4.734242223692919,2.51,2.24,3.3,2.9921871599564747,12.98,3.84,3.021872158331105,3.5983222591362125,2.3865974171813584,2.556610291102911 -2023,12,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,33,25,22,19,21,11,24.35159032800518,14.0,25.229315199308957,11.435671418520677,4.39254817987152,2.37,2.08,2.88,2.628868209255533,9.79,3.59,2.687163712200209,2.99813829787234,2.233550834597876,2.4502918978912316 -2023,12,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,27,21,22,15,18,6,27.648409671994823,16.0,32.9083904634609,14.992822069698736,3.5622849807445442,2.13,1.89,2.16,2.3599502796768177,3.59,2.75,2.1892564188062686,2.6193821510297486,1.9779760319573902,2.2152161687170473 -2023,12,9,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,28,23,18,27,11,10,6,29.296819343989647,16.0,37.808534764688005,21.32137011616456,3.4549007046764895,2.24,1.84,2.17,2.5237088607594935,2.48,2.84,2.3785573954532695,2.6819881305637985,2.109022379269729,2.316955047899779 -2023,12,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,20,19,29,35,9,18,18,26.0,12.0,35.732230593373224,19.7642194649865,3.4549007046764895,2.24,1.84,2.17,2.5237088607594935,2.48,2.84,2.3785573954532695,2.6819881305637985,2.109022379269729,2.316955047899779 -2023,12,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,22,27,33,33,18,26,19,22.593638687979293,10.0,30.74789608122005,17.542794790575527,3.4549007046764895,2.24,1.84,2.17,2.5237088607594935,2.48,2.84,2.3785573954532695,2.6819881305637985,2.109022379269729,2.316955047899779 -2023,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,30,32,35,20,24,17,24.593638687979293,13.0,32.09255335919369,16.099945441753587,3.755305770887166,2.12,1.85,2.75,2.655799227799228,3.28,2.98,2.4289028516191395,3.0760155743024007,2.0179552093476145,2.1546758104738153 -2023,12,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,30,33,31,18,22,16,24.94522901598447,14.0,32.52002112637376,17.435671418520677,4.090685534591195,2.15,1.88,2.51,3.09711756025578,3.84,2.68,2.286330683624801,3.72574449339207,2.0792767295597483,2.2029294342021615 -2023,12,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,33,29,28,18,19,11,24.593638687979293,13.0,33.00138796363789,18.992822069698736,4.150309376487387,2.07,1.8,2.75,3.1755083996463305,3.41,2.43,2.483273369739801,3.821456611570248,1.9690624999999997,2.141897160615906 -2023,12,15,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,26,26,28,16,18,12,22.648409671994823,10.0,31.471604654125137,17.435671418520677,3.7321856866537715,2.06,1.71,1.83,2.7884396355353074,2.14,2.33,2.1454928017718715,3.0642093784078517,1.970492396813903,2.17283866575902 -2023,12,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,24,26,27,15,19,13,24.53886770396376,7.0,29.35046198719661,15.099945441753587,3.727685643564356,2.18,1.64,2.13,2.4356846153846154,1.91,2.22,2.1926118945432247,2.815570469798658,2.080416666666667,2.235014225714673 -2023,12,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,21,21,25,27,14,18,14,24.593638687979293,8.0,28.751138291946095,11.321370116164559,3.727685643564356,2.18,1.64,2.13,2.4356846153846154,1.91,2.22,2.1926118945432247,2.815570469798658,2.080416666666667,2.235014225714673 -2023,12,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,16,17,32,37,13,22,16,24.593638687979293,9.0,30.159722532746404,13.099945441753587,3.727685643564356,2.18,1.64,2.13,2.4356846153846154,1.91,2.22,2.1926118945432247,2.815570469798658,2.080416666666667,2.235014225714673 -2023,12,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,30,38,36,22,31,17,22.593638687979293,11.0,26.09341402458343,12.878520767342618,3.5365819070904645,2.27,1.96,3.28,2.5338750690989498,2.9,2.57,3.7311292400171743,2.842086167800453,2.1915,2.35463936765836 -2023,12,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,32,34,31,23,27,13,20.593638687979293,11.0,23.71193511568301,11.321370116164559,3.7013793103448274,2.1,1.9,2.26,2.721149206349206,3.06,2.45,2.54453508133042,3.171921641791044,2.0324624277456644,2.208176409341068 -2023,12,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,33,30,26,19,24,11,21.593638687979293,12.0,24.34933973316236,11.878520767342618,3.4949012279765084,2.16,1.94,2.45,2.6347046843177186,5.38,2.54,2.407054327054327,3.1004870301746954,2.0614238134887595,2.2461346915676286 -2023,12,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,36,27,23,17,19,6,24.648409671994823,12.0,26.491952412640124,18.328548046465823,3.2884279475982536,2.02,1.86,2.32,2.342002600780234,4.46,2.22,2.4515755998843596,2.6173453318335205,1.8842270351008215,2.1547531755196307 -2023,12,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,33,23,20,14,16,5,29.35159032800518,15.0,30.012512093016078,18.771397395287764,3.013067645516518,1.65,1.69,1.82,1.9938533114395183,1.94,1.95,2.0301610017889087,2.1963498920086395,1.486145905024088,1.8487629070691023 -2023,12,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,28,18,19,12,11,5,31.296819343989647,16.0,37.6636777616623,19.992822069698736,3.013067645516518,1.65,1.69,1.82,1.9938533114395183,1.94,1.95,2.0301610017889087,2.1963498920086395,1.486145905024088,1.8487629070691023 -2023,12,25,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,22,16,25,11,10,17,27.296819343989647,14.0,41.538436339577125,22.32137011616456,3.013067645516518,1.65,1.69,1.82,1.9938533114395183,1.94,1.95,2.0301610017889087,2.1963498920086395,1.486145905024088,1.8487629070691023 -2023,12,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,25,24,21,32,10,15,20,23.593638687979293,13.0,39.648376332876566,23.099945441753587,3.013067645516518,1.65,1.69,1.82,1.9938533114395183,1.94,1.95,2.0301610017889087,2.1963498920086395,1.486145905024088,1.8487629070691023 -2023,12,27,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,24,20,25,33,8,20,20,22.296819343989647,13.0,35.006136538693255,21.878520767342618,3.092613430127042,1.94,1.57,1.71,2.2390440487347703,1.98,1.85,1.8844539007092198,2.371294433266264,1.806313043478261,2.0933318821651428 -2023,12,28,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,23,19,28,33,12,26,22,21.296819343989647,11.0,32.620170643381975,20.32137011616456,3.176509386098427,2.11,1.67,1.98,2.3478169542385596,1.93,2.18,2.29701116163704,2.6198540653231412,2.06377239199157,2.2730005656108596 -2023,12,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,22,20,29,32,18,28,22,18.648409671994827,11.0,30.863686913881978,19.099945441753587,3.1312347988774554,2.12,1.73,1.9,2.2917638888888887,2.13,1.96,2.3562610026789135,2.392702875399361,2.02,2.215486279958319 -2023,12,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,26,31,33,20,26,18,20.648409671994823,15.0,30.386515089998984,17.878520767342618,3.1312347988774554,2.12,1.73,1.9,2.2917638888888887,2.13,1.96,2.3562610026789135,2.392702875399361,2.02,2.215486279958319 -2023,12,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,29,32,38,20,22,17,25.0,17.0,32.39991601854333,20.992822069698736,3.1312347988774554,2.12,1.73,1.9,2.2917638888888887,2.13,1.96,2.3562610026789135,2.392702875399361,2.02,2.215486279958319 -2024,1,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,29,33,38,20,28,21,26.950571962495413,16.0,31.694963545933533,21.415990461002657,3.060829694323144,2.13,1.88,2.16,2.2311142587346553,3.13,2.35,2.4714872738423797,2.612258837627322,2.0566480055983205,2.2132497810858145 -2024,1,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,32,34,36,21,27,22,27.300381308330273,16.0,33.84587380622882,20.415990461002657,3.060829694323144,2.13,1.88,2.16,2.2311142587346553,3.13,2.35,2.4714872738423797,2.612258837627322,2.0566480055983205,2.2132497810858145 -2024,1,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,32,34,36,22,31,21,26.0,19.0,35.824943189749185,21.19635496454787,3.573861731843576,2.27,2.02,2.25,2.493215796897038,3.05,2.44,2.4266358915176,3.1212978986402966,2.2033609958506224,2.3673176721836624 -2024,1,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,31,35,38,21,30,20,25.0,18.0,36.65860170675741,26.415990461002654,3.9509551760939168,2.47,2.34,3.48,2.815660980810234,6.82,3.12,2.919167569519682,3.58697074010327,2.49,2.4924222399453115 -2024,1,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,37,37,37,22,29,20,27.0,18.0,36.076675730118055,24.976719468093084,5.790881863560732,2.55,2.29,3.12,3.3036066981537138,5.42,4.62,2.8814206257242176,5.533820971867007,2.539310344827586,2.6787826902779406 -2024,1,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,37,36,36,20,28,20,28.349809345834863,18.0,38.83456360735363,25.635625957457442,6.14485188968335,2.44,2.26,2.69,3.394537487828627,5.01,5.39,2.6117296511627903,5.443967611336032,2.43,2.4628967019290604 -2024,1,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,33,38,17,23,19,30.650190654165137,22.0,40.9592098543677,27.97671946809308,6.14485188968335,2.44,2.26,2.69,3.394537487828627,5.01,5.39,2.6117296511627903,5.443967611336032,2.43,2.4628967019290604 -2024,1,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,30,32,39,19,24,17,28.650190654165137,23.0,43.37841877735512,30.976719468093084,6.14485188968335,2.44,2.26,2.69,3.394537487828627,5.01,5.39,2.6117296511627903,5.443967611336032,2.43,2.4628967019290604 -2024,1,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,26,30,39,14,23,21,29.300381308330273,20.0,42.15607802441006,30.415990461002657,5.013712984054669,2.55,2.35,2.99,3.0050890817724984,3.47,3.87,2.7859607616849393,4.750418361417781,2.52377808988764,2.583700947225981 -2024,1,10,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,32,40,17,25,18,31.0,21.0,41.05289292848608,28.415990461002657,6.495723684210526,3.02,2.8,3.46,3.979879711307137,4.0,5.74,3.456571687019448,6.109820928931169,3.043529411764706,3.169045900530055 -2024,1,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,26,25,32,44,17,20,14,32.65019065416514,21.0,44.70888136674167,29.537448475183506,6.710974930362117,2.88,2.65,2.92,3.843139054612208,4.19,5.7,3.3676353503184715,6.607775377969762,2.9734690799396684,3.023873678110966 -2024,1,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,25,32,51,16,19,19,41.75285981247706,21.0,47.81205577668585,28.855261453912227,5.505184954926951,2.98,2.54,2.89,3.7204064224786757,3.36,5.3,2.8976307363927427,5.270416951469583,3.0456806722689076,2.8670583379196475 -2024,1,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,24,25,41,61,18,30,24,46.4030504666422,19.0,51.83441612868931,26.415990461002654,15.915232198142414,23.97,12.39,15.14,24.12219360199418,15.96,21.67,14.451740719910012,19.67597697257027,28.51034251175285,13.706437527566 -2024,1,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,33,61,72,20,35,38,44.45247850414679,17.0,49.246602116467585,22.19635496454787,15.915232198142414,23.97,12.39,15.14,24.12219360199418,15.96,21.67,14.451740719910012,19.67597697257027,28.51034251175285,13.706437527566 -2024,1,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,43,63,70,21,41,43,41.50190654165137,15.0,48.63544628142779,20.415990461002657,15.915232198142414,23.97,12.39,15.14,24.12219360199418,15.96,21.67,14.451740719910012,19.67597697257027,28.51034251175285,13.706437527566 -2024,1,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,41,43,62,64,23,47,43,40.2015252333211,14.0,49.49184954213309,20.953438936186163,15.915232198142414,23.97,12.39,15.14,24.12219360199418,15.96,21.67,14.451740719910012,19.67597697257027,28.51034251175285,13.706437527566 -2024,1,17,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,48,55,57,31,47,35,37.50190654165138,15.0,43.05391325740904,20.074896950367016,5.372798459563543,3.82,2.98,20.87,4.434095465393795,17.12,4.48,5.6459884915741885,5.0061476355247985,6.6912641083521445,3.7620471905013995 -2024,1,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,44,45,51,52,26,42,25,33.152097195816516,13.0,34.08845240844074,15.635625957457442,3.534050719671008,2.92,2.46,7.69,2.9061508704061896,13.3,3.75,4.445445887445887,3.021261538461538,2.898698481561822,2.689640327991055 -2024,1,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,45,43,49,61,24,37,28,30.551334579155963,13.0,36.81306742325023,15.294532446821805,3.741212121212121,3.08,2.55,8.88,3.0805791352637844,14.79,3.85,5.029080207501996,3.243183279742765,3.041190631099544,2.722295238095238 -2024,1,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,48,55,62,31,47,34,27.60076261666055,15.0,33.007968097978775,16.294532446821805,3.6150843727072637,2.51,2.23,9.1,2.74368068833652,12.74,3.39,5.113533072136437,2.999924609585353,2.5591390728476817,2.465484864720064 -2024,1,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,46,45,53,55,31,44,32,27.60076261666055,14.0,30.064203127361274,20.635625957457442,3.6150843727072637,2.51,2.23,9.1,2.74368068833652,12.74,3.39,5.113533072136437,2.999924609585353,2.5591390728476817,2.465484864720064 -2024,1,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,42,42,46,45,26,36,23,23.950571962495413,14.0,29.0559290217793,18.53744847518351,3.6150843727072637,2.51,2.23,9.1,2.74368068833652,12.74,3.39,5.113533072136437,2.999924609585353,2.5591390728476817,2.465484864720064 -2024,1,23,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,38,36,36,21,24,16,22.95057196249541,13.0,28.112482930513384,19.19635496454787,3.3956739258387287,2.08,1.85,2.2,2.3336699613235927,4.78,3.15,2.2333819044391734,3.103053988718775,2.0263345195729534,2.1283741418764306 -2024,1,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,27,28,31,12,12,12,23.950571962495413,16.0,29.391866961494472,19.19635496454787,3.4107386066003147,2.08,1.72,2.02,2.17615952732644,2.88,3.06,2.0255817307692308,3.009041095890411,2.032847290640394,2.040378891941392 -2024,1,25,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,26,22,26,30,6,7,10,24.300381308330273,14.0,30.237802212107106,19.19635496454787,3.54891770011274,2.23,1.68,1.91,2.454484629294756,2.73,3.33,2.016029135338346,3.0840029542097493,2.178314917127072,2.3070661299597472 -2024,1,26,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,28,21,26,30,2,8,13,22.650190654165137,12.0,30.64596231771373,18.415990461002657,3.7993925925925924,2.23,1.63,2.03,2.5712400733048257,2.64,3.14,2.0810454655968877,3.2692879256965943,2.155075125208681,2.3337445428464516 -2024,1,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,28,24,28,32,7,12,13,20.300381308330273,9.0,29.98664033948872,16.85526145391223,3.388922155688623,2.1,1.69,2.12,2.182781811234238,4.67,2.44,2.201693254967814,2.7854062309102017,2.0409268292682925,2.192709353259469 -2024,1,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,27,28,31,11,22,15,15.25095327082569,5.0,25.626014264933,14.85526145391223,3.388922155688623,2.1,1.69,2.12,2.182781811234238,4.67,2.44,2.201693254967814,2.7854062309102017,2.0409268292682925,2.192709353259469 -2024,1,29,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,30,31,27,16,24,14,13.60076261666055,4.0,22.765948202505875,11.294532446821805,3.388922155688623,2.1,1.69,2.12,2.182781811234238,4.67,2.44,2.201693254967814,2.7854062309102017,2.0409268292682925,2.192709353259469 -2024,1,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,32,31,28,19,21,11,15.25095327082569,7.0,22.322157579465287,10.855261453912231,2.9895995379283793,2.09,1.62,2.52,2.0942617586912062,8.67,2.05,2.347265456782529,2.5196875000000003,2.002551020408163,2.182104768300873 -2024,1,31,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,30,29,23,20,24,10,16.95057196249541,11.0,22.81573387878784,11.855261453912231,2.895465004793864,1.99,1.66,2.52,1.9855066312997347,5.0,2.07,2.3301567749160133,2.328829931972789,1.86,2.0537909057482535 -2024,2,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,29,25,23,18,21,9,18.0,16.0,24.71460929477451,11.196354964547869,2.85529702970297,1.93,1.67,1.83,1.9266449845943168,3.69,2.11,2.0386548223350256,2.30695806261075,1.8066113914924298,1.9601186033009872 -2024,2,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,28,29,24,15,17,7,20.699618691669723,18.0,27.488433792978206,19.31781297872872,3.0340077821011673,1.92,1.64,1.91,2.0109823399558495,4.57,2.23,1.9667886301784094,2.377377717391304,1.8457737226277373,1.9233621767137774 -2024,2,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,29,30,26,16,16,8,24.650190654165137,20.0,30.53134862711571,20.976719468093084,2.866235238545111,1.79,1.68,1.87,1.8130193336075688,6.97,2.22,1.9883637998201977,2.1893142426526,1.7132183908045975,1.6844418500224518 -2024,2,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,30,28,26,17,18,10,25.699618691669727,19.0,32.17091368588041,19.19635496454787,2.866235238545111,1.79,1.68,1.87,1.8130193336075688,6.97,2.22,1.9883637998201977,2.1893142426526,1.7132183908045975,1.6844418500224518 -2024,2,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,32,31,26,17,16,11,27.0,17.0,30.98851718612166,16.415990461002657,2.866235238545111,1.79,1.68,1.87,1.8130193336075688,6.97,2.22,1.9883637998201977,2.1893142426526,1.7132183908045975,1.6844418500224518 -2024,2,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,34,33,30,26,18,18,12,24.650190654165137,18.0,27.741706146605935,16.635625957457442,3.1501485385721133,1.94,1.64,2.6,2.000681728101467,6.13,2.47,2.167477295660949,2.46055900621118,1.8590670170827859,1.8460945393312485 -2024,2,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,32,31,27,24,19,17,12,25.349809345834863,21.0,28.49053547019738,20.878541985819147,3.112430152872957,1.84,1.53,1.88,1.8663903743315509,4.43,2.47,2.026070763500931,2.3019946091644203,1.7279953650057938,1.775319064605628 -2024,2,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,27,21,18,17,18,8,27.0,22.0,31.14602968188749,22.31781297872872,3.2277262494371906,1.69,1.47,1.73,1.9803924775143091,2.61,2.34,1.803473026163464,2.6232394366197185,1.619698795180723,1.6726711038553308 -2024,2,9,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,29,23,18,25,14,12,4,27.34980934583486,21.0,34.98904025268942,25.31781297872872,3.1514415841584156,1.62,1.38,1.41,1.7842251655629138,2.15,2.07,1.5951347190146266,2.5233800186741364,1.5667864271457086,1.598626432030235 -2024,2,10,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,23,19,24,32,8,8,7,25.95057196249541,19.0,38.371918908713745,26.757083971638295,2.9670934256055363,1.68,1.34,1.51,1.765478492830944,1.99,1.94,1.5277636594663278,2.5197326203208554,1.6299999999999997,1.6088924358084662 -2024,2,11,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,25,25,30,32,8,12,11,25.95057196249541,18.0,37.879134282632876,25.415990461002657,2.9670934256055363,1.68,1.34,1.51,1.765478492830944,1.99,1.94,1.5277636594663278,2.5197326203208554,1.6299999999999997,1.6088924358084662 -2024,2,12,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,28,30,31,8,13,16,23.300381308330273,17.0,35.0227530010451,23.415990461002657,2.9670934256055363,1.68,1.34,1.51,1.765478492830944,1.99,1.94,1.5277636594663278,2.5197326203208554,1.6299999999999997,1.6088924358084662 -2024,2,13,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,34,31,32,29,13,21,16,24.650190654165137,17.0,31.771020460676233,21.19635496454787,2.9311864406779664,1.73,1.51,1.92,1.910256842105263,6.04,2.11,1.8489227220299884,2.583141993957704,1.6790751445086702,1.6623440187646599 -2024,2,14,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,30,27,16,19,14,29.650190654165137,17.0,32.02106085185838,18.97671946809308,2.9008204873197414,1.58,1.34,2.12,1.7332404494382023,5.83,1.94,1.695998023715415,2.294828660436137,1.500477657935285,1.498908475532365 -2024,2,15,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,36,31,33,15,16,10,30.25095327082569,15.0,30.84817596700072,16.757083971638295,2.6726237623762374,1.51,1.25,1.42,1.5715558802045289,3.34,1.82,1.4532220916568743,2.1299857244825127,1.4934620334620337,1.4233459611389467 -2024,2,16,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,35,37,41,15,17,9,28.600762616660546,14.0,33.94525754698841,16.19635496454787,2.5996377607025254,1.53,1.22,1.43,1.6375223214285712,2.82,1.87,1.4198270631067962,2.073631624674196,1.5111311672683514,1.4071384224636658 -2024,2,17,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,36,44,45,17,29,23,28.300381308330273,14.0,38.07485662420548,16.51416794327659,2.3520948180815875,1.5,1.27,1.65,1.4753490364025696,3.21,1.76,1.5700184800184802,1.6005555555555555,1.4243918053777207,1.4189601100412654 -2024,2,18,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,38,39,37,21,29,23,25.600762616660546,13.0,34.69163856689111,15.294532446821805,2.3520948180815875,1.5,1.27,1.65,1.4753490364025696,3.21,1.76,1.5700184800184802,1.6005555555555555,1.4243918053777207,1.4189601100412654 -2024,2,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,36,34,30,19,25,18,23.950571962495413,15.0,28.771363687061324,12.635625957457442,2.3520948180815875,1.5,1.27,1.65,1.4753490364025696,3.21,1.76,1.5700184800184802,1.6005555555555555,1.4243918053777207,1.4189601100412654 -2024,2,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,36,29,25,19,21,10,22.60076261666055,14.0,26.266729766567806,10.976719468093082,2.3520948180815875,1.5,1.27,1.65,1.4753490364025696,3.21,1.76,1.5700184800184802,1.6005555555555555,1.4243918053777207,1.4189601100412654 -2024,2,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,39,35,22,21,18,15,5,23.0,14.0,24.57639646782224,13.878541985819147,2.582461984069515,1.41,1.22,1.48,1.4893337097684924,3.11,1.58,1.4339717686133409,1.9704347826086956,1.3684731774415404,1.3750111999999999 -2024,2,22,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,36,32,21,19,15,14,2,19.650190654165137,14.0,27.468788044137224,13.976719468093082,2.608527131782946,1.55,1.28,1.47,1.5330113636363636,2.68,1.86,1.4478625954198472,2.0201774042950515,1.4457380688124308,1.4734762361320368 -2024,2,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,30,26,24,24,14,10,4,20.60076261666055,12.0,28.213305210586963,13.635625957457442,2.3516875411997358,1.46,1.28,1.35,1.410843720038351,2.38,1.75,1.4551256707144875,1.6979518072289157,1.385980487804878,1.4567873382301504 -2024,2,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,32,37,28,13,17,6,22.901143924990826,8.0,26.10932844142131,11.415990461002657,2.2432409972299165,1.33,1.29,1.47,1.2998470688190313,3.56,1.54,1.4153657396587989,1.4768316831683168,1.2915677966101695,1.2653832891246684 -2024,2,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,36,28,23,18,17,4,21.650190654165137,10.0,24.15760824457342,9.415990461002655,2.2432409972299165,1.33,1.29,1.47,1.2998470688190313,3.56,1.54,1.4153657396587989,1.4768316831683168,1.2915677966101695,1.2653832891246684 -2024,2,26,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,31,28,19,15,13,12,1,27.650190654165137,13.0,23.413948020844217,9.537448475183508,2.2432409972299165,1.33,1.29,1.47,1.2998470688190313,3.56,1.54,1.4153657396587989,1.4768316831683168,1.2915677966101695,1.2653832891246684 -2024,2,27,0,0,0,0,0,0,4,0.0,0.0,0.0,0.0,23,20,14,19,10,4,0,30.650190654165137,14.0,32.34625507105903,8.537448475183508,2.158115942028985,1.4,1.21,1.29,1.3608650875386201,1.71,1.53,1.3516291418861512,1.650622009569378,1.3760406091370556,1.3322298381216275 -2024,2,28,0,0,0,0,1,1,1,0.0,0.0,0.0,0.0,22,17,28,44,5,5,11,27.300381308330273,12.0,33.6843061025627,12.855261453912231,2.1541997593261133,1.43,1.29,1.42,1.3773157162726009,1.56,1.42,1.393384040565786,1.5748439181916039,1.394741506646972,1.3845931952662722 -2024,2,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,36,34,35,35,16,24,18,26.699618691669723,15.0,28.34663023395192,15.074896950367016,2.074107623318386,1.55,1.43,1.6,1.4642688679245284,2.64,1.47,1.5661064010173802,1.6167573449401522,1.4941883408071748,1.5281836863736957 -2024,3,1,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,31,32,28,16,24,12,29.0,16.0,25.095224344556303,12.976719468093082,2.2986792452830187,1.48,1.37,1.55,1.3972195303764443,1.89,1.61,1.5250283595113439,1.5119198055893073,1.4041469194312794,1.500876895087932 -2024,3,2,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,28,24,19,11,15,6,29.699618691669723,17.0,23.989473338450054,12.537448475183508,2.3060070984915706,1.4,1.29,1.38,1.3997653859231554,1.59,1.64,1.3621418293936278,1.5798825155494127,1.3614114832535886,1.391235308827207 -2024,3,3,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,18,16,14,15,7,8,2,31.349809345834863,18.0,32.38930329779658,12.878541985819147,2.3060070984915706,1.4,1.29,1.38,1.3997653859231554,1.59,1.64,1.3621418293936278,1.5798825155494127,1.3614114832535886,1.391235308827207 -2024,3,4,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,20,15,10,18,5,4,1,30.34980934583486,18.0,33.89430819179318,12.878541985819147,2.3060070984915706,1.4,1.29,1.38,1.3997653859231554,1.59,1.64,1.3621418293936278,1.5798825155494127,1.3614114832535886,1.391235308827207 -2024,3,5,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,24,19,15,25,6,4,2,30.300381308330273,16.0,32.63578228263336,13.537448475183508,2.44455971659919,1.51,1.34,1.44,1.4218959649975693,1.72,1.79,1.40202290817317,1.5322359396433471,1.4505605786618447,1.4371925167488306 -2024,3,6,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,21,19,21,24,8,6,5,29.950571962495413,16.0,26.950593736716524,11.537448475183508,2.6295414278269935,1.58,1.4,1.51,1.5511916110581507,1.63,1.76,1.4582732852949025,1.6803034789045153,1.4916952155936207,1.516687875983341 -2024,3,7,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,21,17,21,26,3,5,4,28.250953270825686,15.0,30.060735951928635,16.878541985819147,2.6374255583126556,1.59,1.46,1.55,1.5605493895671476,1.98,1.79,1.5446506024096385,1.8791999999999998,1.529028871391076,1.5442088239099494 -2024,3,8,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,23,21,20,27,8,7,4,24.95057196249541,13.0,33.9260306764122,17.635625957457442,2.491388888888889,1.5,1.38,1.46,1.4558262711864405,1.68,1.65,1.4376804441702653,1.6964928909952608,1.4525049701789265,1.445441520012459 -2024,3,9,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,28,24,23,29,8,10,12,25.349809345834863,13.0,31.443944416147513,16.85526145391223,2.105124131082423,1.47,1.41,1.51,1.39171875,1.77,1.42,1.4837644486098094,1.4828874388254485,1.4034393638170972,1.4393310320199977 -2024,3,10,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,24,29,26,11,19,13,25.0,13.0,28.042766323304683,14.635625957457442,2.105124131082423,1.47,1.41,1.51,1.39171875,1.77,1.42,1.4837644486098094,1.4828874388254485,1.4034393638170972,1.4393310320199977 -2024,3,11,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,25,22,19,13,18,10,24.69961869166972,15.0,25.245118101023674,11.855261453912231,2.105124131082423,1.47,1.41,1.51,1.39171875,1.77,1.42,1.4837644486098094,1.4828874388254485,1.4034393638170972,1.4393310320199977 -2024,3,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,22,17,16,14,9,14,4,24.34980934583486,15.0,24.22103299545196,11.757083971638295,2.1196792668957616,1.4,1.28,1.34,1.328734073160707,1.56,1.44,1.3918983320095315,1.4574721780604134,1.317658303464755,1.3836083032490973 -2024,3,13,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,21,14,11,13,6,9,1,23.349809345834863,14.0,27.606686363275106,13.757083971638295,2.0075833788955713,1.3,1.25,1.33,1.2924830977258759,1.5,1.51,1.3217161113646738,1.379403578528827,1.2663295880149814,1.3112280416395576 -2024,3,14,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,18,12,13,15,3,3,0,21.650190654165137,14.0,29.874997229841888,16.31781297872872,2.05504016064257,1.21,1.05,1.16,1.207387339055794,1.27,1.43,1.1126371447455388,1.36875748502994,1.159808306709265,1.0990987618773396 -2024,3,15,0,0,0,0,2,0,4,0.0,0.0,0.0,0.0,22,13,19,19,4,5,3,18.950571962495413,13.0,28.387546000562594,19.976719468093084,2.068937728937729,1.26,1.07,1.16,1.2286160440906309,1.29,1.35,1.1231590656284762,1.3200552486187846,1.2343526170798897,1.163567190226876 -2024,3,16,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,21,18,19,21,4,8,5,13.950571962495413,13.0,26.81619167587675,18.31781297872872,1.9253846153846155,1.32,1.18,1.24,1.2150481347773765,1.48,1.3,1.2573093349603415,1.2215723270440253,1.2727445652173912,1.271477893253479 -2024,3,17,0,0,0,0,3,0,1,0.0,0.0,0.0,0.0,19,17,27,31,4,11,5,12.300381308330275,11.0,24.834609508494108,18.53744847518351,1.9253846153846155,1.32,1.18,1.24,1.2150481347773765,1.48,1.3,1.2573093349603415,1.2215723270440253,1.2727445652173912,1.271477893253479 -2024,3,18,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,24,25,34,34,10,20,10,10.60076261666055,9.0,21.720448089847718,15.196354964547869,1.9253846153846155,1.32,1.18,1.24,1.2150481347773765,1.48,1.3,1.2573093349603415,1.2215723270440253,1.2727445652173912,1.271477893253479 -2024,3,19,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,27,28,26,24,16,23,13,13.300381308330277,8.0,20.469698113177763,13.757083971638295,2.0069520547945205,1.48,1.39,1.49,1.3521473087818696,1.71,1.31,1.4756654920032528,1.3822458100558659,1.39,1.4584385678205318 -2024,3,20,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,25,24,30,29,11,15,10,19.95057196249541,7.0,19.637973394217514,11.976719468093084,1.9361714285714287,1.55,1.46,1.58,1.3795046296296296,1.71,1.36,1.5022979552093478,1.3654944289693594,1.4935397316821466,1.4809309530835055 -2024,3,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,33,33,28,11,13,8,17.650190654165137,9.0,19.69583730692909,10.196354964547869,1.9624037339556595,1.54,1.49,1.65,1.3434391534391534,2.76,1.4,1.5455374320368047,1.3105694760820046,1.489222011385199,1.4630051660516605 -2024,3,22,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,34,33,32,29,12,11,4,18.650190654165137,10.0,20.212380387608416,7.976719468093082,1.806812993854258,1.47,1.37,1.47,1.2415080875356803,1.86,1.29,1.4642041127189642,1.1634886817576564,1.3893568904593638,1.4202302475950166 -2024,3,23,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,33,31,32,34,9,12,6,20.349809345834863,15.0,21.929185954809597,9.196354964547869,1.6797064881565396,1.38,1.34,1.46,1.245964912280702,1.87,1.27,1.4093848354792562,1.1585220125786162,1.3553491827637445,1.3515879892440994 -2024,3,24,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,33,30,29,30,14,14,6,19.74904672917431,17.0,27.182533960317006,17.31781297872872,1.6797064881565396,1.38,1.34,1.46,1.245964912280702,1.87,1.27,1.4093848354792562,1.1585220125786162,1.3553491827637445,1.3515879892440994 -2024,3,25,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,31,26,20,25,12,12,5,23.349809345834863,16.0,33.03596542575524,19.19635496454787,1.6797064881565396,1.38,1.34,1.46,1.245964912280702,1.87,1.27,1.4093848354792562,1.1585220125786162,1.3553491827637445,1.3515879892440994 -2024,3,26,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,29,23,17,33,11,7,11,21.34980934583486,14.0,32.236019657102695,18.635625957457442,1.869501329787234,1.39,1.39,1.51,1.3150126156433979,1.74,1.23,1.4638987730061348,1.3225349487418452,1.4122795698924733,1.3578418012146347 -2024,3,27,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,21,21,27,34,9,13,12,22.0,14.0,28.91919693161805,14.85526145391223,1.898095238095238,1.45,1.37,1.46,1.3163266712611994,1.65,1.29,1.4879101562500001,1.3626998491704372,1.420426966292135,1.396966755319149 -2024,3,28,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,22,21,26,27,8,14,8,23.049428037504583,15.0,25.248320737740617,11.976719468093084,1.7893973542381185,1.31,1.26,1.33,1.1903235294117647,1.57,1.24,1.3257014734144779,1.2521623563218391,1.2695472703062585,1.2736169962335215 -2024,3,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,21,22,23,21,9,11,5,20.349809345834863,17.0,24.649046558631817,9.757083971638295,1.7893973542381185,1.31,1.26,1.33,1.1903235294117647,1.57,1.24,1.3257014734144779,1.2521623563218391,1.2695472703062585,1.2736169962335215 -2024,3,30,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,20,20,20,19,7,6,1,19.650190654165137,18.0,23.7091264764032,7.098177482273934,1.7893973542381185,1.31,1.26,1.33,1.1903235294117647,1.57,1.24,1.3257014734144779,1.2521623563218391,1.2695472703062585,1.2736169962335215 -2024,3,31,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,19,18,18,16,4,2,0,19.650190654165137,16.0,23.948750162338854,13.780364503545211,1.7893973542381185,1.31,1.26,1.33,1.1903235294117647,1.57,1.24,1.3257014734144779,1.2521623563218391,1.2695472703062585,1.2736169962335215 -2024,4,1,0,0,0,0,2,2,7,0.0,0.0,0.0,0.0,22,19,18,17,3,0,0,16.300381308330273,13.0,24.891868813326194,18.098177482273933,1.7863500373971577,1.5,1.37,1.5,1.2547120418848168,1.61,1.25,1.4347265948632975,1.212386895475819,1.373324496288441,1.2720284976999887 -2024,4,2,0,0,0,0,4,6,4,0.0,0.0,0.0,0.0,23,21,17,21,3,0,4,12.300381308330275,9.0,21.482884915822712,14.415990461002655,1.9195333695062398,1.66,1.51,1.64,1.3563569165786695,1.9,1.36,1.606437181270283,1.3945494095711621,1.4772680412371135,1.3888505197753616 -2024,4,3,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,26,23,25,22,5,12,6,22.34980934583486,8.0,17.86965660786079,9.976719468093082,1.9771959145775302,1.71,1.57,1.7,1.3956612685560053,2.1,1.36,1.6441243366186504,1.3843859649122805,1.5167372134038801,1.456481739939521 -2024,4,4,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,25,26,21,11,16,4,25.349809345834863,16.0,16.59179557186355,6.1963549645478695,2.1343362831858403,1.81,1.63,1.74,1.5173271889400923,2.21,1.48,1.7500360510260675,1.4102337472607744,1.69124824684432,1.6608115277945257 -2024,4,5,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,27,25,24,21,12,18,2,25.049428037504583,21.0,19.565096408484692,11.219635496454785,2.3571469740634003,1.62,1.5,1.64,1.526597526924611,1.91,1.58,1.6040460445750673,1.6532283464566928,1.493747779751332,1.4591271980490308 -2024,4,6,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,26,22,22,18,12,15,1,24.399237383339447,19.0,27.933374858888907,18.53744847518351,1.9206164729661444,1.51,1.41,1.54,1.2705369863013698,1.72,1.28,1.440401241939336,1.288495575221239,1.2932228360957643,1.2456716588544643 -2024,4,7,0,0,0,0,0,0,3,0.0,0.0,0.0,0.0,23,18,21,16,9,8,1,21.69961869166972,17.0,27.05701395230738,15.537448475183508,1.9206164729661444,1.51,1.41,1.54,1.2705369863013698,1.72,1.28,1.440401241939336,1.288495575221239,1.2932228360957643,1.2456716588544643 -2024,4,8,0,0,0,0,0,0,4,0.0,0.0,0.0,0.0,19,17,11,14,6,6,1,21.650190654165137,14.0,26.401899275047345,16.31781297872872,1.9206164729661444,1.51,1.41,1.54,1.2705369863013698,1.72,1.28,1.440401241939336,1.288495575221239,1.2932228360957643,1.2456716588544643 -2024,4,9,0,0,0,0,1,0,4,0.0,0.0,0.0,0.0,14,9,9,13,5,5,2,19.0,9.0,23.157726640372275,10.855261453912231,1.8907627118644068,1.51,1.3,1.35,1.3466299019607846,1.52,1.26,1.3971847739888976,1.372565687789799,1.3300000000000003,1.4743090468291438 -2024,4,10,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,17,10,11,12,1,3,3,17.60076261666055,4.0,20.602231463301038,7.85526145391223,1.8454317548746517,1.55,1.43,1.51,1.3492293114339864,1.64,1.37,1.542379752152909,1.43078443877551,1.3566310873915945,1.598280503690838 -2024,4,11,0,0,0,0,4,0,1,0.0,0.0,0.0,0.780364503545213,15,8,12,14,1,2,3,19.60076261666055,2.0,17.77557821320582,4.85526145391223,2.0618835412953063,1.52,1.41,1.43,1.4002348224513173,1.57,1.36,1.593597006948156,1.4803030303030302,1.3426514555468134,1.5392968957283097 -2024,4,12,0,0,0,0,1,0,0,0.0,0.0,0.0,0.780364503545213,13,9,13,13,3,8,2,16.650190654165137,8.0,13.10147503557794,3.7570839716382958,2.0159664387818523,1.37,1.37,1.44,1.2400707825403068,1.54,1.24,1.4466085171883016,1.3615461973601508,1.1827642276422763,1.3281609894566098 -2024,4,13,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,16,16,12,6,4,6,0,14.349809345834862,14.0,10.325651469847413,3.3178129787287216,2.10752508361204,1.14,1.15,1.2,0.9587356809503608,1.26,0.86,1.1839813624678663,1.1637931034482758,0.9269986541049798,1.0281906653426018 -2024,4,14,0,0,0,1,0,0,5,0.0,0.0,0.0,0.0,16,11,4,4,2,1,0,14.049428037504587,18.0,11.91950372852657,5.658906489364361,2.10752508361204,1.14,1.15,1.2,0.9587356809503608,1.26,0.86,1.1839813624678663,1.1637931034482758,0.9269986541049798,1.0281906653426018 -2024,4,15,0,0,1,2,3,3,6,0.0,0.0,0.0,0.0,11,6,5,5,0,0,0,19.34980934583486,13.0,16.389519688887415,9.439270992909574,2.10752508361204,1.14,1.15,1.2,0.9587356809503608,1.26,0.86,1.1839813624678663,1.1637931034482758,0.9269986541049798,1.0281906653426018 -2024,4,16,0,0,1,2,3,6,8,0.0,0.0,0.0,0.0,14,10,5,6,0,0,0,21.34980934583486,8.0,16.37212716388814,6.317812978728721,1.9112500000000001,1.19,1.18,1.25,0.9616486681065515,1.36,0.92,1.273194221508828,1.1284415584415584,0.9675098814229248,1.208905700748892 -2024,4,17,0,0,1,1,3,5,9,0.0,0.0,0.0,0.780364503545213,17,13,5,8,1,0,0,21.0,5.0,16.50692150947479,3.5374484751835085,1.8485148514851486,1.22,1.23,1.32,0.9859624413145539,1.41,1.07,1.2924918115394306,0.7373398058252427,1.0190915542938255,1.271864509299864 -2024,4,18,0,0,0,0,5,6,9,0.0,0.0,0.0,1.560729007090426,21,16,9,14,1,0,0,19.300381308330273,5.0,23.702234565878122,2.7570839716382953,1.7714218009478675,1.31,1.29,1.4,1.1944937319189972,1.48,1.19,1.3866621511785424,0.9763157894736844,1.1998142857142857,1.352207471441803 -2024,4,19,0,0,0,0,5,3,5,0.0,0.0,0.19754144748517913,3.121458014180852,16,15,14,22,3,1,2,15.60076261666055,6.0,21.774987023516864,2.3178129787287216,1.8259733036707453,1.41,1.3,1.41,1.2613432835820895,1.53,1.13,1.3989114583333333,1.285414364640884,1.3042630185348631,1.4069848755895267 -2024,4,20,0,0,0,0,5,1,4,0.0,0.0,0.39508289497035826,3.121458014180852,14,11,22,23,2,6,5,13.300381308330277,5.0,20.429885673980834,2.9767194680930826,1.7676870281400137,1.37,1.33,1.42,1.2617483660130717,1.53,1.06,1.3929174509276687,1.2148387096774194,1.3030095238095238,1.368902567182105 -2024,4,21,0,0,0,0,3,0,0,0.0,0.0,0.7901657899407165,4.682187021271278,23,23,20,19,8,11,7,19.300381308330273,2.0,16.224396771886937,2.635625957457443,1.7676870281400137,1.37,1.33,1.42,1.2617483660130717,1.53,1.06,1.3929174509276687,1.2148387096774194,1.3030095238095238,1.368902567182105 -2024,4,22,0,0,0,0,2,0,0,0.0,0.0,0.7901657899407165,4.682187021271278,21,19,17,14,9,14,7,16.95057196249541,4.0,13.249860308136299,1.7570839716382955,1.7676870281400137,1.37,1.33,1.42,1.2617483660130717,1.53,1.06,1.3929174509276687,1.2148387096774194,1.3030095238095238,1.368902567182105 -2024,4,23,0,0,0,0,1,0,1,0.0,0.0,0.39508289497035826,3.9018225177260653,19,16,14,11,7,9,3,13.950571962495413,8.0,12.401562241673268,0.8785419858191478,1.7058819875776396,1.45,1.36,1.51,1.3081774264382962,1.57,1.28,1.4767201068804277,1.3175246305418722,1.352409793814433,1.5066802932055257 -2024,4,24,0,0,0,0,1,0,4,0.0,0.0,0.19754144748517913,2.341093510635639,15,12,19,13,4,5,0,18.950571962495413,10.0,10.158617523221817,1.8785419858191479,1.8775238629983155,1.49,1.37,1.47,1.256288770053476,1.6,1.26,1.4625533807829183,1.3518352310783657,1.2997025776602777,1.4781907838802923 -2024,4,25,0,0,0,0,1,1,7,0.0,0.0,0.0,0.0,23,19,20,12,4,6,0,19.049428037504583,11.0,11.040849343531725,4.098177482273934,1.8015068493150683,1.38,1.37,1.5,1.1963687464867903,1.57,1.22,1.4823176076308326,1.217094017094017,1.1581774193548386,1.3487071956554533 -2024,4,26,0,0,0,0,2,2,8,0.0,0.0,0.0,0.0,21,18,15,9,5,3,0,15.74904672917431,11.0,15.85480516028393,7.098177482273934,1.760360501567398,1.27,1.26,1.39,1.086530612244898,1.44,1.02,1.3555788248981966,0.9942413027387123,1.0862082514734777,1.2837171464330412 -2024,4,27,0,0,0,0,2,4,10,0.0,0.0,0.0,0.0,18,17,5,8,3,0,0,19.049428037504583,10.0,19.75310080115098,8.976719468093082,1.405683975432719,1.15,1.03,1.13,1.023893851812927,1.2,1.03,1.130882814250504,0.834013651877133,1.0696010186757217,1.2449323432343233 -2024,4,28,0,0,2,0,3,6,8,0.0,0.0,0.0,0.0,11,5,2,9,0,0,0,18.699618691669723,8.0,17.510197005144875,6.1963549645478695,1.405683975432719,1.15,1.03,1.13,1.023893851812927,1.2,1.03,1.130882814250504,0.834013651877133,1.0696010186757217,1.2449323432343233 -2024,4,29,0,2,1,0,5,4,7,0.0,0.0,0.0,1.560729007090426,6,1,2,11,0,0,0,21.34980934583486,6.0,15.627055115794432,3.9767194680930826,1.405683975432719,1.15,1.03,1.13,1.023893851812927,1.2,1.03,1.130882814250504,0.834013651877133,1.0696010186757217,1.2449323432343233 -2024,4,30,0,1,0,1,5,5,9,0.0,0.0,0.19754144748517913,3.121458014180852,12,4,4,7,0,0,0,22.699618691669723,6.0,16.424507468923075,2.3178129787287216,1.6352057842046719,1.37,1.32,1.45,1.208416133792425,1.59,1.2,1.4945308310991956,1.1870675300647546,1.2374252039891207,1.4553740573152336 -2024,5,1,0,1,0,1,6,5,9,0.0,0.0,0.0,2.560729007090426,13,3,2,7,0,0,0,20.699618691669723,6.0,17.721406488660502,2.0981774822739347,1.7587704421562689,1.48,1.39,1.44,1.3491243919388465,1.63,1.27,1.5644360251136609,1.3342671009771987,1.3871713147410356,1.5094969342251952 -2024,5,2,0,2,1,1,7,6,8,0.0,0.0,0.0,3.121458014180852,9,2,3,8,0,0,0,18.399237383339447,5.0,19.362856954985126,2.0981774822739347,1.8233660331085222,1.4,1.33,1.38,1.2942040038131555,1.48,1.24,1.550929174788824,1.2788235294117647,1.3328955866523144,1.4759793187347932 -2024,5,3,0,0,1,0,7,5,8,0.0,0.0,0.19754144748517913,3.121458014180852,11,7,2,7,0,0,0,15.699618691669723,5.0,16.631611836155514,2.0981774822739347,1.8842429284525788,1.44,1.3,1.33,1.3120135746606336,1.42,1.25,1.553474775127102,1.3380519480519482,1.3700000000000003,1.5227240143369176 -2024,5,4,0,0,1,1,5,7,8,0.0,0.0,0.0,3.121458014180852,14,11,2,9,3,0,0,20.399237383339447,11.0,15.97548247654139,2.3178129787287216,1.8355252606255008,1.44,1.33,1.38,1.282121491026231,1.43,1.18,1.6408212318477717,1.2251696606786426,1.364904904904905,1.528857259602288 -2024,5,5,0,0,1,0,6,7,7,0.0,0.0,0.0,1.560729007090426,16,12,4,11,1,0,0,19.448665420844037,14.0,16.43430796957337,2.0981774822739347,1.8355252606255008,1.44,1.33,1.38,1.282121491026231,1.43,1.18,1.6408212318477717,1.2251696606786426,1.364904904904905,1.528857259602288 -2024,5,6,0,0,0,0,7,7,10,0.0,0.0,0.0,0.0,7,5,4,6,0,0,0,19.399237383339447,11.0,19.700328514948136,4.317812978728721,1.8355252606255008,1.44,1.33,1.38,1.282121491026231,1.43,1.18,1.6408212318477717,1.2251696606786426,1.364904904904905,1.528857259602288 -2024,5,7,0,1,1,1,9,8,12,0.0,0.0,0.0,0.780364503545213,4,2,3,4,0,0,0,19.049428037504583,9.0,20.129348988860414,3.3178129787287216,1.8032132963988918,1.6,1.58,1.87,1.41,1.67,1.32,2.1403606870229006,1.3157695939565626,1.480194855806703,1.7545791774067019 -2024,5,8,0,3,1,0,11,9,14,0.0,0.0,0.0,0.780364503545213,10,1,2,4,0,0,0,16.699618691669723,7.0,21.99885180361428,3.3178129787287216,1.9034038054968285,1.66,1.55,1.88,1.4490247933884297,1.75,1.38,2.24676735218509,1.4193009118541033,1.550914826498423,1.785806335059617 -2024,5,9,0,0,0,0,8,9,12,0.0,0.0,0.0,0.0,9,6,7,6,0,0,0,10.349809345834862,4.0,18.484540756964453,3.5374484751835085,1.980746887966805,1.7,1.57,1.67,1.5550844594594595,1.74,1.51,2.09987514863258,1.5046354566385265,1.591318228630278,1.792227165663439 -2024,5,10,0,0,0,0,7,3,8,0.0,0.0,0.0,1.560729007090426,14,14,8,6,2,1,0,3.6501906541651374,3.0,15.160965827997376,2.7570839716382953,2.048908188585608,1.67,1.55,1.6,1.574716202270382,1.66,1.5,2.018809306569343,1.6137858347386171,1.53046511627907,1.828253020225329 -2024,5,11,0,0,0,0,4,1,6,0.6996186916697243,0.0,0.0,1.560729007090426,16,13,8,4,4,3,0,1.6501906541651377,2.0,12.455494806704893,2.3178129787287216,2.086573896353167,1.67,1.5,1.55,1.5059999999999998,1.6,1.22,1.9578066914498142,1.4595815170008717,1.5538323353293415,1.8194252873563217 -2024,5,12,0,0,0,1,3,1,5,0.0,1.0,0.39508289497035826,3.121458014180852,15,14,4,1,3,2,0,3.3003813083302753,1.0,9.706958983263023,2.9767194680930826,2.086573896353167,1.67,1.5,1.55,1.5059999999999998,1.6,1.22,1.9578066914498142,1.4595815170008717,1.5538323353293415,1.8194252873563217 -2024,5,13,0,0,1,0,3,1,8,0.0,0.0,0.9877072374258956,5.462551524816491,10,9,2,4,2,2,0,8.300381308330275,2.0,7.795183039601452,1.3178129787287216,2.086573896353167,1.67,1.5,1.55,1.5059999999999998,1.6,1.22,1.9578066914498142,1.4595815170008717,1.5538323353293415,1.8194252873563217 -2024,5,14,0,0,0,0,5,3,8,0.0,1.0,1.382790132396254,7.242916028361704,4,5,5,4,2,1,0,7.650190654165137,3.0,7.527252496770071,0.6589064893643608,2.056080586080586,1.7,1.44,1.48,1.512602671944582,1.53,1.09,2.2533803137076607,0.9317328042328042,1.54804788213628,1.8680640771895103 -2024,5,15,0,0,0,0,7,4,9,0.0,1.0,1.382790132396254,6.462551524816491,5,5,3,4,1,0,0,5.950571962495413,3.0,9.341629013260876,0.8785419858191478,1.9168016877637133,1.79,1.47,1.49,1.59,1.54,1.15,2.1749003722356033,1.3262904717853836,1.6371221178479933,1.9195627317676143 -2024,5,16,0,0,0,1,7,5,7,0.0,1.0,1.382790132396254,5.462551524816491,6,3,3,3,0,0,0,9.250953270825688,2.0,7.853654717413818,1.7570839716382955,2.11625,1.88,1.51,1.91,1.6757755443886095,1.65,0.99,2.2904422332780543,1.6787938288920057,1.6874240422721267,2.0290217838060007 -2024,5,17,0,0,1,3,6,3,6,0.0,1.0,1.382790132396254,7.023280531906917,4,3,1,0,1,0,0,13.950571962495413,2.0,6.670524831575905,0.8785419858191478,1.8757894736842107,1.88,1.63,1.67,1.6509322651128915,1.71,0.72,2.399763186221744,1.4987218045112782,1.7376868327402133,2.1463316582914573 -2024,5,18,0,0,4,5,7,6,11,0.0,0.0,1.382790132396254,8.242916028361705,8,3,0,1,1,0,0,16.300381308330273,3.0,8.077489139614087,0.21963549645478694,1.783504,1.85,1.51,1.72,1.1252856380138814,1.58,0.72,2.418118577075099,0.9096666666666667,1.636244968372628,2.0915714853584206 -2024,5,19,0,1,6,4,7,8,13,0.0,0.0,1.1852486849110748,7.682187021271278,7,1,0,3,0,0,0,16.349809345834863,4.0,8.566470589056742,0.21963549645478694,1.783504,1.85,1.51,1.72,1.1252856380138814,1.58,0.72,2.418118577075099,0.9096666666666667,1.636244968372628,2.0915714853584206 -2024,5,20,0,2,6,5,6,8,14,0.0,0.0,0.7901657899407165,5.901822517726065,4,1,0,2,0,0,0,14.349809345834862,7.0,11.580306079247835,1.2196354964547869,1.783504,1.85,1.51,1.72,1.1252856380138814,1.58,0.72,2.418118577075099,0.9096666666666667,1.636244968372628,2.0915714853584206 -2024,5,21,2,4,8,5,7,9,15,0.0,0.0,0.39508289497035826,4.121458014180853,1,0,0,3,0,0,0,17.650190654165137,4.0,15.213227737233458,1.6589064893643608,1.9344763271162122,2.03,1.79,2.08,1.5308039303260386,2.01,1.3,3.021300100200401,1.4852019386106623,1.7626273148148148,2.254022354478154 -2024,5,22,5,6,6,0,9,9,14,0.0,0.0,0.39508289497035826,4.901822517726065,0,0,0,3,0,0,0,16.699618691669723,4.0,14.252450565352083,1.8785419858191479,1.5116595744680852,1.93,1.84,2.02,1.2682472178060413,2.05,1.03,2.724323936074699,1.2870978172999192,1.7029765886287624,2.289308762369138 -2024,5,23,3,5,3,2,10,8,14,0.0,0.0,0.5926243424555374,4.121458014180853,0,0,0,2,0,0,0,14.349809345834862,5.0,13.216859391752815,0.6589064893643608,1.3842105263157893,1.84,1.82,2.23,1.090227617602428,2.03,0.88,2.7252536856212903,0.9959894459102903,1.6196860068259387,2.197755884686591 -2024,5,24,2,5,3,2,11,8,16,0.0,0.0,0.7901657899407165,5.682187021271278,0,0,1,3,0,0,0,14.650190654165137,7.0,13.641755016748755,0.6589064893643608,1.4151146788990825,1.94,1.83,2.13,1.1073161227471993,1.88,1.02,2.9495383293966073,0.996635761589404,1.7170244956772334,2.329637723672631 -2024,5,25,0,2,3,1,11,11,16,0.0,0.0,0.5926243424555374,4.901822517726065,2,1,1,4,0,0,0,16.0,8.0,12.759966664600306,0.6589064893643608,1.0983402489626555,1.61,1.42,2.03,0.7767849462365591,1.54,0.66,2.5342066420664207,0.6765277777777777,1.4414117647058824,2.07318856315599 -2024,5,26,2,5,2,2,12,11,17,0.0,0.0,0.7901657899407165,4.901822517726065,1,0,2,3,0,0,0,13.950571962495413,6.0,10.1005649665374,0.6589064893643608,1.0983402489626555,1.61,1.42,2.03,0.7767849462365591,1.54,0.66,2.5342066420664207,0.6765277777777777,1.4414117647058824,2.07318856315599 -2024,5,27,1,4,1,2,11,10,17,0.0,0.0,1.1852486849110748,7.462551524816491,2,0,2,3,0,0,0,9.650190654165137,3.0,7.1930815688159795,0.4392709929095739,1.0983402489626555,1.61,1.42,2.03,0.7767849462365591,1.54,0.66,2.5342066420664207,0.6765277777777777,1.4414117647058824,2.07318856315599 -2024,5,28,3,4,0,1,11,8,14,0.0,0.0,1.382790132396254,10.242916028361703,0,0,2,3,0,0,0,13.0,2.0,4.883485115735536,0.21963549645478694,1.0983402489626555,1.61,1.42,2.03,0.7767849462365591,1.54,0.66,2.5342066420664207,0.6765277777777777,1.4414117647058824,2.07318856315599 -2024,5,29,0,0,0,1,8,5,11,0.0,1.0,1.580331579881433,10.023280531906916,1,2,4,3,0,0,0,13.650190654165137,2.0,5.164958073618994,0.21963549645478694,1.3664606376057253,1.6,1.4,1.63,1.1989130434782609,1.52,0.94,2.5649344355758266,1.1706326723323888,1.4504132231404958,2.102340354396523 -2024,5,30,0,0,0,1,6,4,12,0.0,1.0,1.9754144748517912,10.023280531906916,6,5,6,1,0,1,0,13.650190654165137,0.0,7.920935953397957,0.21963549645478694,1.486854219948849,1.47,1.34,1.46,1.2500051020408165,1.5,1.04,2.3498964218455747,1.235614552605703,1.3744943820224722,1.9461407841926521 -2024,5,31,0,0,0,2,5,4,10,0.0,2.0,2.1881008700634035,11.023280531906916,5,5,4,1,1,0,0,9.950571962495413,1.0,7.804380146688144,0.21963549645478694,1.4115955351280365,1.37,1.2,1.25,1.1985324553151457,1.31,1.01,2.1003835360149674,1.2091004784688995,1.2881180811808117,1.7387784486762659 -2024,6,1,0,1,0,3,5,4,12,0.0,1.0,2.1881008700634035,11.023280531906916,2,1,2,1,0,1,0,11.60076261666055,2.0,4.663613613428245,0.0,1.1487690504103167,1.18,1.11,1.15,0.8753102836879434,1.28,0.73,1.909223529411765,0.8433132530120483,1.0569318948078221,1.6305963045912653 -2024,6,2,1,2,1,4,7,7,13,0.0,1.0,2.1414696828735136,9.46255152481649,1,1,1,1,0,0,0,11.349809345834862,2.0,3.5437776966479846,0.0,1.1487690504103167,1.18,1.11,1.15,0.8753102836879434,1.28,0.73,1.909223529411765,0.8433132530120483,1.0569318948078221,1.6305963045912653 -2024,6,3,5,6,4,6,10,10,14,0.0,1.0,2.551697525570305,10.242916028361703,0,0,0,0,0,0,0,11.650190654165137,1.0,3.219108790499484,0.0,1.1487690504103167,1.18,1.11,1.15,0.8753102836879434,1.28,0.73,1.909223529411765,0.8433132530120483,1.0569318948078221,1.6305963045912653 -2024,6,4,1,5,8,7,11,10,16,0.0,4.0,2.946780420540663,12.242916028361703,1,0,0,0,0,0,0,11.300381308330275,0.0,3.592367028919358,0.0,1.506228209191759,1.54,1.4,1.71,1.2946906474820146,1.63,1.17,2.719486656782802,1.2414404662781016,1.4211587147030182,2.28537419527897 -2024,6,5,4,5,7,4,11,11,15,0.0,6.0,3.705459971017923,15.242916028361703,0,0,0,0,0,0,0,8.250953270825688,0.0,1.3245914327949926,0.0,1.8369528415961305,1.62,1.42,1.82,1.5092498279421886,1.63,1.48,2.6709126297577854,1.5459838546922302,1.4966690856313496,2.2751783125543636 -2024,6,6,3,8,5,4,14,11,15,0.0,7.0,5.057628031850777,17.80364503545213,0,0,0,1,0,0,0,5.901143924990826,0.0,0.6071371780476702,0.0,1.739332839140104,1.66,1.36,1.76,1.485646576945582,1.56,1.47,2.699887083993661,1.5794813278008302,1.4474108818011258,2.2035148967282034 -2024,6,7,4,5,2,4,13,9,16,0.3498093458348622,5.0,6.6396967513224965,18.242916028361705,0,1,1,1,0,0,0,3.250953270825689,0.0,0.5024462089938427,0.0,1.6793108201240525,1.66,1.3,1.58,1.5120252100840337,1.45,1.26,2.5545492858815266,1.5066446124763704,1.5734217067108534,2.149832931450224 -2024,6,8,0,2,1,5,10,6,17,1.0,3.0,5.785678285585117,16.46255152481649,1,1,1,1,0,0,0,2.950571962495413,0.0,0.41658496850580673,0.0,1.633506726457399,1.47,1.12,1.22,1.3854470802919707,1.25,1.26,2.1531518921721102,1.3840833333333336,1.357411575562701,1.99772533777531 -2024,6,9,0,1,1,3,12,8,16,0.0,1.0,3.798382944107651,14.242916028361703,2,1,1,2,0,0,0,3.6501906541651374,0.0,1.3699537813159164,0.0,1.633506726457399,1.47,1.12,1.22,1.3854470802919707,1.25,1.26,2.1531518921721102,1.3840833333333336,1.357411575562701,1.99772533777531 -2024,6,10,0,0,0,2,10,7,14,0.6501906541651378,3.0,3.2102350557331523,12.705467553178195,3,3,4,2,0,0,0,4.300381308330276,0.0,0.5024462089938427,0.21963549645478694,1.633506726457399,1.47,1.12,1.22,1.3854470802919707,1.25,1.26,2.1531518921721102,1.3840833333333336,1.357411575562701,1.99772533777531 -2024,6,11,0,0,0,4,8,4,13,0.0,5.0,4.010205171419205,15.364374042542556,4,4,5,0,0,1,0,6.300381308330276,0.0,0.33086647085013465,0.0,1.8635105204872646,1.81,1.26,1.31,1.5581617021276597,1.5,1.46,2.3045353426623607,1.614123711340206,1.6169621749408984,2.272389800355801 -2024,6,12,0,0,4,8,9,5,14,0.0,6.0,6.552186894872241,17.023280531906916,1,1,0,0,0,0,0,8.650190654165137,0.0,0.4501720958831109,0.0,1.98010781671159,1.82,1.31,1.35,1.5936063110443277,1.49,1.38,2.458406292749658,1.6223647604327667,1.6843937232524964,2.357349560513861 -2024,6,13,2,4,9,10,11,9,16,0.0,3.0,6.916235822330771,17.46255152481649,0,0,0,0,0,0,0,8.300381308330275,0.0,0.535890593538783,0.0,1.7731479140328696,2.21,1.69,1.85,1.6294457831325302,1.81,1.61,2.7739350282485873,1.602014787430684,1.8899999999999997,2.4709346748323124 -2024,6,14,4,6,7,8,13,12,17,0.0,5.0,5.482327544831176,16.023280531906916,0,0,0,0,0,0,0,11.300381308330275,0.0,0.4501720958831109,0.0,1.8080733944954128,2.14,1.63,1.77,1.6575675675675674,1.81,1.18,2.810235776524859,1.5974703557312253,1.8923278370514067,2.4901260043827613 -2024,6,15,3,3,4,8,13,14,17,0.0,5.0,4.793507344394982,16.364374042542558,0,0,0,0,0,0,0,14.999999999999998,1.0,1.4909732917899678,0.0,1.7199999999999998,2.05,1.65,1.81,1.5169009135628955,1.92,1.05,2.55227869911695,1.5277510373443983,1.7852407614781636,2.3453882352941178 -2024,6,16,0,1,9,11,12,15,18,0.0,3.0,3.673973731554466,16.80364503545213,4,1,0,0,0,0,0,15.34980934583486,1.0,3.682953901108178,0.0,1.7199999999999998,2.05,1.65,1.81,1.5169009135628955,1.92,1.05,2.55227869911695,1.5277510373443983,1.7852407614781636,2.3453882352941178 -2024,6,17,2,7,13,10,14,15,18,0.0,1.0,4.00608414759791,14.46255152481649,0,0,0,1,0,0,0,15.699618691669723,1.0,5.107004726542438,0.0,1.7199999999999998,2.05,1.65,1.81,1.5169009135628955,1.92,1.05,2.55227869911695,1.5277510373443983,1.7852407614781636,2.3453882352941178 -2024,6,18,9,12,15,10,13,14,16,0.0,1.0,1.548845340417976,13.46255152481649,0,0,0,1,0,0,0,9.349809345834862,1.0,9.581843524590715,0.0,1.660944680851064,2.07,1.98,2.24,1.4237963587322993,3.78,1.17,2.6628631020098594,1.4651543209876545,1.7755334114888628,2.2150740960284527 -2024,6,19,12,12,15,6,13,13,14,0.0,1.0,1.382790132396254,14.023280531906916,0,0,0,1,0,0,0,6.0,0.0,8.111238985320075,0.0,1.5596306068601584,2.09,1.97,2.1,1.393095238095238,3.86,1.37,2.6361684596017394,1.383671003717472,1.7380172413793105,2.2818728547977916 -2024,6,20,13,13,12,8,13,13,15,0.0,2.0,2.9152941810772064,15.925103049632982,0,0,0,1,0,0,0,1.6501906541651377,0.0,1.8227166808569597,0.0,1.5596306068601584,2.09,1.97,2.1,1.393095238095238,3.86,1.37,2.6361684596017394,1.383671003717472,1.7380172413793105,2.2818728547977916 -2024,6,21,11,13,13,9,14,15,16,1.6996186916697242,5.0,4.737398482433008,16.705467553178195,0,0,0,1,0,0,0,0.0,0.0,0.6071371780476702,0.0,1.8957194244604316,2.18,2.0,2.24,1.6952584670231727,2.4,1.63,2.7485423578854236,1.6866965012205044,1.9553563714902806,2.278870287371474 -2024,6,22,5,14,13,11,16,16,17,1.6996186916697242,9.0,6.1706174535200855,16.925103049632984,0,0,0,0,0,0,0,1.3003813083302755,0.0,0.10469096905382752,0.0,2.103160054719562,2.14,2.02,2.15,1.9103934669636227,2.25,1.81,2.7096901349072513,1.9013579277864991,1.8553369272237195,2.3541289437585733 -2024,6,23,7,14,10,10,17,16,18,0.0,11.0,8.76573023280439,18.14473854608777,0,0,0,0,0,0,0,5.650190654165137,0.0,0.0,0.0,2.103160054719562,2.14,2.02,2.15,1.9103934669636227,2.25,1.81,2.7096901349072513,1.9013579277864991,1.8553369272237195,2.3541289437585733 -2024,6,24,6,8,8,13,17,16,19,0.0,11.0,9.46481978125435,18.80364503545213,0,0,0,0,0,0,0,6.950571962495413,0.0,0.19055220954186353,0.0,2.103160054719562,2.14,2.02,2.15,1.9103934669636227,2.25,1.81,2.7096901349072513,1.9013579277864991,1.8553369272237195,2.3541289437585733 -2024,6,25,8,9,9,15,16,17,20,0.3498093458348622,11.0,11.284071897457824,20.2429160283617,0,0,0,0,0,0,0,1.3003813083302755,0.0,0.0,0.0,2.635767306088407,2.21,2.05,2.16,2.232350557244174,2.33,2.0,2.519799163179916,2.457349530646052,2.0867174796747965,2.4040826156765434 -2024,6,26,10,11,8,8,17,15,20,1.0,8.0,9.66599233681674,19.46255152481649,0,0,0,0,0,0,0,5.0,0.0,0.0690676767993839,0.0,2.94174075612796,2.27,2.01,2.13,2.227761921336582,2.19,1.94,2.6350672315343524,2.4384034736138944,2.205879120879121,2.5367979127134728 -2024,6,27,7,7,3,7,15,13,19,0.0,7.0,8.13545918353407,19.364374042542554,0,0,0,1,0,0,0,7.650190654165137,0.0,0.5883074494818787,0.0,2.6414267434420986,2.11,1.86,1.88,2.058919431279621,2.03,1.97,2.524906113537118,2.291736566186107,1.9912291350531108,2.328732876712329 -2024,6,28,0,2,4,8,14,15,20,0.0,6.0,5.818384123208375,18.584009538997343,2,1,0,0,0,0,0,4.300381308330276,0.0,1.6176557036811805,0.0,2.565054007959068,1.92,1.6,1.65,1.8412719751809723,1.74,1.34,2.2660961414097867,1.9077604166666664,1.74172131147541,2.297278820375335 -2024,6,29,1,5,9,8,16,17,21,0.0,6.0,4.633119409327609,18.80364503545213,0,0,0,1,0,0,0,3.6501906541651374,0.0,0.8521424084097688,0.0,2.565054007959068,1.92,1.6,1.65,1.8412719751809723,1.74,1.34,2.2660961414097867,1.9077604166666664,1.74172131147541,2.297278820375335 -2024,6,30,7,10,4,3,17,17,20,0.6501906541651378,8.0,6.710950561010903,18.584009538997343,0,0,1,2,0,0,0,2.3003813083302753,0.0,0.46682291673939913,0.0,2.565054007959068,1.92,1.6,1.65,1.8412719751809723,1.74,1.34,2.2660961414097867,1.9077604166666664,1.74172131147541,2.297278820375335 -2024,7,1,4,3,0,4,12,12,20,0.0,9.0,6.264235258159611,17.364374042542558,0,0,2,1,0,0,0,1.3003813083302755,0.0,0.659554033990766,0.0,2.548463241806909,1.82,1.45,1.47,1.8892353494202443,1.53,1.81,2.105664908131708,2.1892373261552267,1.5979862700228835,2.092066717210008 -2024,7,2,4,4,3,7,11,12,21,0.6501906541651378,10.0,4.4641395214951824,19.14473854608777,0,0,1,0,0,0,0,4.300381308330276,0.0,1.2776579416653577,0.0,2.7332642487046637,1.68,1.59,1.63,1.6695483870967742,1.71,1.26,2.022785075195127,2.1255397260273976,1.474676056338028,2.0040736826211685 -2024,7,3,4,5,8,8,13,15,20,0.6501906541651378,12.0,5.071908811677153,18.92510304963298,0,0,0,0,0,0,0,2.6501906541651374,0.0,1.6419687970604329,0.0,2.3766871165644172,1.57,1.36,1.38,1.5299848178137652,1.48,1.57,1.9051327102803737,1.814461420932009,1.3206241699867198,1.837296219492742 -2024,7,4,6,10,10,7,16,18,21,1.6996186916697242,13.0,4.087458430172496,20.14473854608777,0,0,0,0,0,0,0,0.6501906541651378,0.0,2.245837826049128,0.0,2.2450748502994013,1.51,1.31,1.37,1.446396629941672,1.45,1.42,1.947054945054945,1.6884668192219678,1.3423478260869566,1.736039655172414 -2024,7,5,9,13,8,5,18,16,18,6.098856075009173,14.0,4.740655338354246,21.26619656026862,0,0,0,0,0,0,0,0.0,0.0,1.5157514074376484,0.0,2.2450748502994013,1.51,1.31,1.37,1.446396629941672,1.45,1.42,1.947054945054945,1.6884668192219678,1.3423478260869566,1.736039655172414 -2024,7,6,11,14,7,6,18,14,16,8.098856075009174,14.0,6.136190505276232,19.705467553178195,0,0,0,0,0,0,0,0.0,0.0,0.31407290716148256,0.0,2.2450748502994013,1.51,1.31,1.37,1.446396629941672,1.45,1.42,1.947054945054945,1.6884668192219678,1.3423478260869566,1.736039655172414 -2024,7,7,13,13,7,6,17,14,16,9.049428037504587,13.0,5.797090851289473,20.485832056723407,0,0,0,0,0,0,0,0.0,0.0,1.3735973968467494,0.0,2.2450748502994013,1.51,1.31,1.37,1.446396629941672,1.45,1.42,1.947054945054945,1.6884668192219678,1.3423478260869566,1.736039655172414 -2024,7,8,12,13,10,7,17,16,14,9.399237383339448,13.0,6.588423113069991,20.607290070904263,0,0,0,0,0,0,0,0.0,0.0,1.1976598432840349,0.0,2.2450748502994013,1.51,1.31,1.37,1.446396629941672,1.45,1.42,1.947054945054945,1.6884668192219678,1.3423478260869566,1.736039655172414 -2024,7,9,12,14,8,6,18,15,16,11.049428037504587,12.0,8.28690489641916,20.26619656026862,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,1.9809193669932177,1.79,1.69,1.96,1.520845921450151,2.16,1.39,2.310627859684799,1.6843641912512717,1.644123711340206,1.8900407725321888 -2024,7,10,13,15,8,9,17,12,16,8.049428037504587,13.0,10.71641473963337,20.26619656026862,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.8334772065955383,1.89,1.69,1.89,2.006692749087115,2.17,1.69,2.60810131631432,2.4568967205090555,1.782279549718574,2.124948416933476 -2024,7,11,14,11,7,9,14,12,17,4.349809345834862,14.0,12.641679789879635,20.26619656026862,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.01,1.83,1.62,1.87,1.977286202964652,2.14,1.99,2.1254954954954957,2.6025966532025384,1.7675874999999999,2.0445190536903244 -2024,7,12,11,9,9,10,13,14,16,3.6996186916697242,13.0,13.594334402801572,19.925103049632984,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.572459410703548,1.68,1.55,1.68,1.7492998678996037,2.05,1.7,2.0311791530944627,2.291434370771313,1.638477272727273,1.9423839779005523 -2024,7,13,12,13,11,13,16,16,17,6.349809345834862,12.0,13.199251507831214,20.14473854608777,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3200929512006194,1.7,1.7,1.91,1.78,2.39,1.7,2.1422335627818656,1.8689714285714283,1.6923582474226804,1.9834324151185139 -2024,7,14,12,13,12,15,18,17,18,5.699618691669724,11.0,12.34700727903443,19.584009538997343,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3200929512006194,1.7,1.7,1.91,1.78,2.39,1.7,2.1422335627818656,1.8689714285714283,1.6923582474226804,1.9834324151185139 -2024,7,15,13,15,13,15,18,17,20,4.3992373833394485,10.0,11.394732443405745,18.242916028361705,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.3200929512006194,1.7,1.7,1.91,1.78,2.39,1.7,2.1422335627818656,1.8689714285714283,1.6923582474226804,1.9834324151185139 -2024,7,16,14,16,11,10,18,16,20,7.049428037504586,9.0,8.939815529630856,19.023280531906916,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.8998273381294966,1.74,1.6,1.87,1.9443853974121994,3.23,1.93,2.0998927901366926,2.4255407407407406,1.6758291457286432,1.8974800406445056 -2024,7,17,13,13,9,6,17,15,18,4.650190654165137,9.0,9.009295102378669,19.584009538997343,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,2.594351274787536,1.7,1.54,1.66,1.8023097643097645,3.9,1.79,2.028127376425856,2.204705882352941,1.6672380952380952,1.86931353529324 -2024,7,18,12,10,2,4,15,13,16,5.300381308330275,10.0,9.884648855364595,19.705467553178195,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.821489111241907,1.64,1.35,1.37,1.7952688821752267,1.95,1.88,1.825839719029374,2.3563671232876717,1.5334558823529414,1.7767988295537673 -2024,7,19,5,5,2,4,14,10,15,5.349809345834862,12.0,10.43879772041336,19.705467553178195,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7459476707083597,1.59,1.32,1.31,1.7032163265306124,1.62,1.76,1.7174184261036467,2.442479740680713,1.5026315789473685,1.7474135366307177 -2024,7,20,6,6,4,5,13,11,15,6.349809345834862,13.0,9.802275980121406,19.705467553178195,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7601299756295696,1.55,1.25,1.3,1.718345744680851,1.61,1.76,1.7450287592440425,2.2727158866183257,1.4465822784810127,1.6501266315994545 -2024,7,21,8,9,6,6,14,13,14,3.0,12.0,8.746579014107862,18.26619656026862,0,0,0,0,0,0,0,0.6501906541651378,0.0,0.3992199477613449,0.0,2.7601299756295696,1.55,1.25,1.3,1.718345744680851,1.61,1.76,1.7450287592440425,2.2727158866183257,1.4465822784810127,1.6501266315994545 -2024,7,22,7,8,7,7,14,12,13,2.6501906541651374,13.0,8.463176326134647,16.26619656026862,0,0,0,0,0,0,0,2.950571962495413,0.0,0.3635966555069013,0.0,2.7601299756295696,1.55,1.25,1.3,1.718345744680851,1.61,1.76,1.7450287592440425,2.2727158866183257,1.4465822784810127,1.6501266315994545 -2024,7,23,5,9,7,7,15,11,13,2.0,14.0,9.929815334733156,18.26619656026862,0,0,0,0,0,0,0,1.6501906541651377,0.0,0.0,0.0,3.228816155988858,1.78,1.45,1.58,1.9518224027858386,1.84,1.87,2.0167492041032897,2.4894441611422744,1.6209895833333334,1.9351712511091395 -2024,7,24,4,9,7,8,15,12,14,1.3498093458348621,15.0,11.021135593001144,20.26619656026862,0,0,0,0,0,0,0,2.950571962495413,0.0,0.0,0.0,3.1098110661268556,1.81,1.41,1.51,2.0289925586720092,1.83,2.11,1.8654342105263158,2.553116603976357,1.7092192192192193,1.929769577269577 -2024,7,25,8,9,5,9,14,12,13,0.3498093458348622,15.0,10.786922777220575,20.705467553178195,0,0,0,0,0,0,0,4.950571962495413,0.0,0.12148453274247961,0.0,2.945752718946766,1.76,1.46,1.5,1.9268822055137842,2.02,2.08,1.832131390466782,2.586009334889148,1.6070967741935485,1.874390086900547 -2024,7,26,6,5,4,11,14,12,13,0.0,13.0,9.03530993804014,17.584009538997343,0,0,0,0,0,0,0,3.3003813083302753,0.0,0.19055220954186353,0.0,3.041990111248455,1.61,1.35,1.38,1.8998591549295776,1.93,2.03,1.7796378322042734,2.627317880794702,1.5373033707865167,1.7883641858707973 -2024,7,27,6,6,5,12,13,13,14,0.0,6.0,8.130118561552974,17.364374042542558,0,0,0,0,0,0,0,2.6501906541651374,0.0,0.17375864585321144,0.0,2.768067855089132,1.62,1.27,1.31,1.709825581395349,1.52,1.65,1.711315258148255,2.1147058823529408,1.4827464788732394,1.7309035901573215 -2024,7,28,5,7,8,13,13,12,16,0.6501906541651378,5.0,6.5509833256821315,17.80364503545213,0,0,0,0,0,0,0,3.3003813083302753,0.0,0.29524317859569105,0.0,2.768067855089132,1.62,1.27,1.31,1.709825581395349,1.52,1.65,1.711315258148255,2.1147058823529408,1.4827464788732394,1.7309035901573215 -2024,7,29,3,9,10,14,13,14,19,0.6501906541651378,5.0,7.5509833256821315,18.023280531906916,0,0,0,0,0,0,0,4.650190654165137,0.0,0.10469096905382752,0.0,2.768067855089132,1.62,1.27,1.31,1.709825581395349,1.52,1.65,1.711315258148255,2.1147058823529408,1.4827464788732394,1.7309035901573215 -2024,7,30,8,10,12,14,15,16,20,1.0,7.0,7.804221739180855,18.242916028361705,0,0,0,0,0,0,0,1.3003813083302755,0.0,0.3643108553950749,0.0,2.1694790996784565,1.67,1.34,1.46,1.5792083818393483,1.88,1.56,1.838384879725086,1.7077572559366754,1.553536299765808,1.7625057825751733 -2024,7,31,11,13,13,15,16,16,21,3.6996186916697242,8.0,8.05436395075002,18.242916028361705,0,0,0,0,0,0,0,0.0,0.0,0.03562329225444362,0.0,2.43123114061557,1.73,1.42,1.53,1.6560000000000001,2.22,1.65,1.8584042297524632,1.7881303602058318,1.6166473988439307,1.7772211122211121 -2024,8,1,14,14,12,12,17,17,20,8.049428037504587,10.0,10.064580172443785,17.68218702127128,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0133441769681197,1.79,1.52,1.69,1.803969396939694,2.39,1.75,2.0043551679346816,2.258122270742358,1.6890943396226414,1.8452965287562444 -2024,8,2,13,14,11,12,18,16,20,8.049428037504587,11.0,11.722628333304694,18.80364503545213,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,3.0616899618805586,1.8,1.48,1.62,1.8394251936404402,1.89,1.93,1.9692434424452632,2.3776043557168784,1.6932279171210467,1.8865048392132377 -2024,8,3,14,13,12,11,16,14,19,5.349809345834862,13.0,11.92234868849938,20.14473854608777,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7435709244883557,1.69,1.47,1.61,1.70375935828877,1.87,1.65,1.8347603574329814,2.324362279511533,1.5958841010401188,1.7934088442756375 -2024,8,4,11,11,11,12,14,15,18,6.049428037504587,13.0,11.738071517012656,21.14473854608777,0,0,0,0,0,0,0,0.0,0.0,0.0690676767993839,0.0,2.7435709244883557,1.69,1.47,1.61,1.70375935828877,1.87,1.65,1.8347603574329814,2.324362279511533,1.5958841010401188,1.7934088442756375 -2024,8,5,11,12,12,12,14,16,18,4.049428037504587,13.0,11.568331528151576,20.14473854608777,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,2.7435709244883557,1.69,1.47,1.61,1.70375935828877,1.87,1.65,1.8347603574329814,2.324362279511533,1.5958841010401188,1.7934088442756375 -2024,8,6,5,11,8,6,15,16,20,2.0,13.0,11.553598476373573,20.14473854608777,0,0,0,1,0,0,0,1.9505719624954132,0.0,0.0,0.0,2.829188544152745,1.67,1.3,1.38,1.6695833333333334,1.54,1.54,1.730998722860792,2.4488383297644543,1.5548519163763068,1.757112239142696 -2024,8,7,0,4,5,5,15,15,20,2.6996186916697242,13.0,10.56664198974401,15.46255152481649,0,0,0,1,0,0,0,0.0,0.0,0.2428263226525953,0.0,2.7651724137931035,1.67,1.3,1.37,1.6364259927797833,1.51,1.55,1.8115690768910193,2.204507269789984,1.5348238057948316,1.806252376078374 -2024,8,8,1,4,6,3,14,14,20,4.699618691669724,11.0,7.170196753781486,16.242916028361705,0,0,0,2,0,0,0,0.0,0.0,1.718935780843669,0.0,2.52049798115747,1.69,1.37,1.39,1.6558338826631507,1.5,1.47,1.906564508156204,1.9112416107382548,1.5299215246636773,1.878718875502008 -2024,8,9,5,8,4,1,16,13,18,5.349809345834862,11.0,6.639341321062753,16.584009538997343,0,0,1,3,0,0,0,0.0,0.0,2.0134647595511863,0.0,2.3222071767095462,1.66,1.32,1.4,1.5800377073906486,1.52,1.52,1.7856122163070889,1.8060677328316086,1.5474999999999999,1.7937872285082586 -2024,8,10,10,9,1,0,16,10,17,4.349809345834862,12.0,6.715398235805452,17.364374042542558,0,0,1,2,0,0,0,0.0,0.0,0.7467372394677678,0.0,2.215294117647059,1.73,1.37,1.43,1.609889908256881,1.59,1.44,1.8227315247895228,1.7056345565749234,1.593129123468426,1.8747432024169184 -2024,8,11,4,5,1,2,14,9,17,2.6996186916697242,11.0,6.864247984190093,16.242916028361705,0,0,0,1,0,0,0,0.6501906541651378,0.0,0.20938193810765504,0.0,2.215294117647059,1.73,1.37,1.43,1.609889908256881,1.59,1.44,1.8227315247895228,1.7056345565749234,1.593129123468426,1.8747432024169184 -2024,8,12,2,2,2,3,13,9,19,1.3003813083302755,10.0,6.0977150278694605,17.023280531906916,0,0,0,0,0,0,0,3.6996186916697242,0.0,0.10469096905382752,0.0,2.215294117647059,1.73,1.37,1.43,1.609889908256881,1.59,1.44,1.8227315247895228,1.7056345565749234,1.593129123468426,1.8747432024169184 -2024,8,13,3,3,4,5,12,12,20,0.0,9.0,6.28958920240029,15.80364503545213,0,0,0,0,0,0,0,4.0,0.0,0.17375864585321144,0.0,2.3953023909985935,1.78,1.43,1.48,1.7042484526967288,1.65,1.58,1.899893270085977,1.815381818181818,1.5852577319587629,1.9501219512195123 -2024,8,14,4,5,5,7,13,12,21,0.6501906541651378,8.0,5.362793931990661,17.364374042542558,0,0,0,0,0,0,0,1.3498093458348621,0.0,0.5435528660617471,0.0,2.4674012056262558,1.75,1.51,1.59,1.5925566076574722,1.7,1.27,1.9195650869826035,1.7084349742836151,1.5185353535353532,1.9099773013871375 -2024,8,15,5,6,5,10,13,14,22,0.0,9.0,3.896876348459844,18.584009538997343,0,0,0,0,0,0,0,2.6996186916697242,0.0,0.14031426130827113,0.0,2.3072854914196563,1.83,1.57,1.63,1.6283242655059846,1.75,1.28,1.9878017141533473,1.7115086887835702,1.6047434017595308,1.9503636860814875 -2024,8,16,3,7,8,10,12,15,21,0.6501906541651378,9.0,5.864223637156584,19.803645035452128,0,0,0,0,0,0,0,1.9505719624954132,0.0,0.3643108553950749,0.0,2.2321568627450983,1.83,1.62,1.7,1.6529353431178102,1.91,1.37,2.0272222222222225,1.716904932094353,1.591890482398957,1.9917151858853182 -2024,8,17,3,6,9,9,13,16,21,0.6501906541651378,7.0,7.034408672789773,18.80364503545213,0,0,0,0,0,0,0,1.0,0.0,0.0,0.0,2.024649681528662,1.73,1.46,1.51,1.5725026178010473,1.66,0.85,1.9510412147505423,1.5220729092208722,1.5554545454545452,1.9094035321559482 -2024,8,18,2,8,7,7,14,14,22,0.6501906541651378,6.0,7.344796799111898,15.682187021271279,0,0,0,0,0,0,0,3.0,0.0,0.0,0.0,2.024649681528662,1.73,1.46,1.51,1.5725026178010473,1.66,0.85,1.9510412147505423,1.5220729092208722,1.5554545454545452,1.9094035321559482 -2024,8,19,6,7,3,6,13,11,20,0.6501906541651378,8.0,7.254006832591194,18.023280531906916,0,0,0,0,0,0,0,2.6501906541651374,0.0,0.0,0.0,2.024649681528662,1.73,1.46,1.51,1.5725026178010473,1.66,0.85,1.9510412147505423,1.5220729092208722,1.5554545454545452,1.9094035321559482 -2024,8,20,0,0,0,4,10,7,20,0.0,10.0,8.019682846191289,19.803645035452128,1,2,2,0,0,0,0,4.950571962495413,0.0,0.0,0.0,2.177380106571936,1.78,1.41,1.44,1.6812537018756168,1.53,1.56,1.763809523809524,1.793091482649842,1.582177985948478,1.9376869158878505 -2024,8,21,0,0,0,4,8,5,20,0.0,9.0,7.394405792432493,17.46255152481649,4,5,4,0,1,0,0,4.650190654165137,0.0,0.25961988634124744,0.0,2.1872,1.69,1.46,1.45,1.5921458333333334,1.69,1.6,1.888961038961039,1.684362549800797,1.4318758815232724,1.9442187842879088 -2024,8,22,0,0,0,3,7,7,19,0.0,5.0,5.863020067966474,16.242916028361705,3,2,2,1,0,0,0,5.049428037504587,0.0,0.10469096905382752,0.0,1.98859375,1.6,1.43,1.43,1.4742754736303125,1.62,1.39,1.7399356283235377,1.4892887029288704,1.3361683277962346,1.8557404304678438 -2024,8,23,1,1,1,5,7,9,20,0.0,2.0,4.723093355573123,16.023280531906916,0,1,1,0,0,0,0,7.699618691669724,2.0,0.6364033444930987,0.0,1.8048648648648649,1.49,1.27,1.28,1.3920591517857144,1.47,1.23,1.5743071965628357,1.3831896551724137,1.3083506343713958,1.7640891679080655 -2024,8,24,3,3,5,8,9,10,20,0.0,2.0,4.762853700618555,13.46255152481649,0,0,0,0,0,0,0,10.0,1.0,1.5573686236196949,0.0,1.3014002478314746,1.53,1.36,1.48,1.0803818953323905,1.57,0.95,1.6196184560780835,1.0298527968596665,1.2952037351443124,1.6630760095011878 -2024,8,25,4,5,10,14,10,12,19,0.0,2.0,3.48470638965126,14.242916028361703,0,0,0,0,0,0,0,5.0,0.0,2.3540415073813103,0.0,1.3014002478314746,1.53,1.36,1.48,1.0803818953323905,1.57,0.95,1.6196184560780835,1.0298527968596665,1.2952037351443124,1.6630760095011878 -2024,8,26,4,7,14,16,12,13,17,0.0,5.0,2.671121546402137,14.584009538997343,0,0,0,0,0,0,0,2.950571962495413,0.0,2.871146452020952,0.0,1.3014002478314746,1.53,1.36,1.48,1.0803818953323905,1.57,0.95,1.6196184560780835,1.0298527968596665,1.2952037351443124,1.6630760095011878 -2024,8,27,5,8,16,13,14,15,17,0.0,7.0,2.6731820583127845,14.925103049632982,0,0,0,0,0,0,0,6.600762616660551,0.0,1.7006606910586703,0.0,1.6996891191709842,1.72,1.59,1.76,1.3968308489954633,1.9,1.33,1.966300725347971,1.3780829420970266,1.5281842818428184,1.8022321929332588 -2024,8,28,8,11,12,10,16,16,17,0.0,8.0,3.51205557632373,13.144738546087769,0,0,0,0,0,0,0,7.300381308330275,0.0,2.120244655507387,0.0,1.8872363636363636,1.62,1.61,1.74,1.364200164068909,1.86,1.3,1.947750045545637,1.4342898832684825,1.4373570324574962,1.7707974790934433 -2024,8,29,2,7,11,12,16,17,17,0.3498093458348622,7.0,3.144321868025842,15.144738546087769,1,0,0,0,0,0,0,3.600762616660551,0.0,2.2547320827539274,0.0,1.7112774613506916,1.51,1.42,1.45,1.301143151390319,1.51,1.29,1.8083565737051794,1.3682608695652172,1.3063186813186813,1.740116252302026 -2024,8,30,0,3,12,7,14,16,15,3.098856075009173,8.0,2.9782666600041203,14.705467553178195,2,0,0,0,0,0,0,0.6501906541651378,0.0,1.6761636895385292,0.0,1.779628252788104,1.52,1.31,1.31,1.308952772073922,1.43,1.29,1.659603076159762,1.3394762484774665,1.3617434210526316,1.6714917061611376 -2024,8,31,1,5,8,6,14,15,15,4.74904672917431,9.0,3.631463568185871,13.705467553178195,1,0,0,0,0,0,0,0.0,0.0,0.35300065651988355,0.0,1.779628252788104,1.52,1.31,1.31,1.308952772073922,1.43,1.29,1.659603076159762,1.3394762484774665,1.3617434210526316,1.6714917061611376 -2024,9,1,6,9,5,4,14,14,15,4.349809345834862,10.0,4.417985499732577,14.266196560268622,0,0,0,1,0,0,0,0.0,0.0,0.03562329225444362,0.21963549645478694,1.9292227619708535,1.6,1.44,1.46,1.4377441593259286,1.55,1.34,1.785041487839771,1.4637923576063445,1.3585276073619632,1.7693367797251294 -2024,9,2,3,4,1,1,12,12,14,1.6501906541651377,10.0,4.937041364274183,13.266196560268622,0,1,2,2,0,0,0,3.6996186916697242,0.0,0.0,0.21963549645478694,1.9292227619708535,1.6,1.44,1.46,1.4377441593259286,1.55,1.34,1.785041487839771,1.4637923576063445,1.3585276073619632,1.7693367797251294 -2024,9,3,0,0,0,2,8,9,12,0.6501906541651378,11.0,5.4282548477463415,15.046561063813835,5,5,3,1,0,0,0,1.6501906541651377,0.0,0.17375864585321144,0.0,1.9292227619708535,1.6,1.44,1.46,1.4377441593259286,1.55,1.34,1.785041487839771,1.4637923576063445,1.3585276073619632,1.7693367797251294 -2024,9,4,0,0,1,3,7,9,12,3.0494280375045864,13.0,3.9950602236927724,16.046561063813837,2,3,1,0,0,0,0,0.0,0.0,0.9783961060775357,0.0,2.306774734488541,1.65,1.45,1.48,1.6341666666666668,1.91,1.62,1.7829596412556055,1.8889830508474574,1.4999206349206349,1.8396096976155587 -2024,9,5,0,0,4,4,8,11,13,6.74904672917431,15.0,3.7378031532019174,17.826925567359048,2,2,0,0,0,0,0,0.0,0.0,2.923204538335619,0.21963549645478694,2.268507157464213,1.79,1.56,1.6,1.7010908193484697,1.85,1.71,1.9224223755544605,1.8996356783919597,1.673035343035343,1.9630340185118402 -2024,9,6,0,1,2,2,8,9,13,6.699618691669723,16.0,4.460067738183052,16.826925567359048,1,1,2,3,0,0,0,0.0,0.0,1.8430105708019324,0.21963549645478694,2.2041734279918863,1.75,1.56,1.58,1.6778853046594981,1.87,1.66,1.897452229299363,1.8751198129748685,1.5930423940149625,1.909239619809905 -2024,9,7,0,1,0,0,9,5,10,5.049428037504587,16.0,4.878451290662961,16.826925567359048,1,2,8,6,0,0,0,0.0,0.0,0.7984398955226898,0.21963549645478694,2.207832558139535,1.78,1.42,1.42,1.7409284818067754,1.86,1.56,1.8775121792789868,1.8772754491017964,1.6202341137123746,1.9737693798449614 -2024,9,8,0,0,0,0,6,3,7,3.3992373833394485,15.0,4.796727102965912,15.266196560268622,6,7,8,4,1,2,0,0.0,0.0,0.03562329225444362,0.0,2.207832558139535,1.78,1.42,1.42,1.7409284818067754,1.86,1.56,1.8775121792789868,1.8772754491017964,1.6202341137123746,1.9737693798449614 -2024,9,9,0,0,0,2,7,3,7,1.6996186916697242,14.0,5.091256081673429,15.266196560268622,5,5,3,1,1,1,0,1.3003813083302755,0.0,0.10469096905382752,0.0,2.207832558139535,1.78,1.42,1.42,1.7409284818067754,1.86,1.56,1.8775121792789868,1.8772754491017964,1.6202341137123746,1.9737693798449614 -2024,9,10,0,0,0,3,7,5,8,1.0,9.0,4.703162424646386,15.485832056723408,2,2,0,0,0,0,0,2.600762616660551,0.0,0.17375864585321144,0.0,2.17731981981982,1.77,1.49,1.53,1.698297153883261,1.83,1.49,2.1394609164420486,1.795177304964539,1.5911246200607903,1.926594784353059 -2024,9,11,0,0,3,5,7,6,9,0.0,4.0,3.407776503218332,13.925103049632982,4,2,0,0,0,0,0,8.049428037504587,0.0,1.5548630649369384,0.0,2.1370873786407767,1.78,1.58,1.66,1.6964268469338482,1.92,0.97,2.1385202312138727,1.8052451361867703,1.6165694282380398,1.9732765321375185 -2024,9,12,0,1,4,5,7,4,11,0.0,1.0,1.7820100801575989,12.584009538997343,2,0,0,0,0,0,0,7.049428037504586,0.0,4.6152397615107885,0.0,1.9165073170731708,1.81,1.61,1.68,1.5443631039531478,1.96,1.04,2.1154164413196326,1.550621513944223,1.425699152542373,1.9634358552631577 -2024,9,13,1,2,4,4,8,7,13,0.0,2.0,1.7463867879031552,11.242916028361703,0,0,0,0,0,0,0,6.650190654165138,0.0,6.2715328716221,0.0,1.6891820580474934,1.81,1.6,1.66,1.4199393165122964,2.08,1.21,2.0568466647415535,1.3534991423670668,1.5858503401360544,1.9559915789473683 -2024,9,14,3,4,7,5,10,9,14,0.0,3.0,1.7463867879031552,11.242916028361703,0,0,0,0,0,0,0,6.650190654165138,0.0,3.922216995941574,0.0,1.7674874371859297,1.9,1.6,1.6,1.4157600341588383,2.06,0.98,2.003227913372293,1.3070439414114516,1.645204081632653,2.05869213166696 -2024,9,15,2,3,8,8,9,9,15,0.0,1.0,1.7463867879031552,11.80364503545213,0,0,0,0,0,0,0,9.349809345834862,1.0,3.3111023262102983,0.21963549645478694,1.7674874371859297,1.9,1.6,1.6,1.4157600341588383,2.06,0.98,2.003227913372293,1.3070439414114516,1.645204081632653,2.05869213166696 -2024,9,16,0,1,6,9,7,9,14,0.0,0.0,0.9877072374258956,10.023280531906916,1,1,0,0,0,0,0,7.699618691669724,5.0,3.4968032830730014,0.21963549645478694,1.7674874371859297,1.9,1.6,1.6,1.4157600341588383,2.06,0.98,2.003227913372293,1.3070439414114516,1.645204081632653,2.05869213166696 -2024,9,17,1,1,4,9,7,7,14,0.0,0.0,0.3635966555069013,7.121458014180852,0,0,0,0,0,0,0,11.049428037504587,5.0,5.937386290701515,0.21963549645478694,2.1510428015564202,1.94,1.75,1.75,1.659960876369327,2.09,1.5,2.098498871331828,1.611362126245847,1.6278851174934725,2.063713604631364 -2024,9,18,0,2,5,9,9,7,16,0.0,0.0,0.19754144748517913,5.901822517726065,0,0,0,0,0,0,0,7.650190654165137,3.0,7.398358026345677,0.4392709929095739,2.128016369764083,2.03,1.79,1.85,1.7,2.14,1.6,2.27184859654097,1.677531806615776,1.6964309392265193,2.1933363886342803 -2024,9,19,2,5,6,10,10,10,18,0.0,0.0,0.39508289497035826,6.121458014180852,0,0,0,0,0,0,0,6.300381308330276,2.0,6.123181296329567,0.21963549645478694,2.22875,1.99,1.66,1.69,1.7550933040614707,2.02,1.7,2.208936170212766,1.7529729729729728,1.7792963464140732,2.173741505321195 -2024,9,20,1,4,7,9,11,11,18,0.0,0.0,0.39508289497035826,6.121458014180852,2,0,0,0,0,0,0,9.300381308330275,1.0,4.696041494145267,0.21963549645478694,1.9374272588055128,1.86,1.51,1.5,1.556683716965047,1.79,1.51,2.2512680355160932,1.5512389380530973,1.5245584725536991,2.0320629428241883 -2024,9,21,0,3,8,7,10,12,18,0.0,1.0,0.7901657899407165,5.3410935106356385,4,0,0,1,0,0,0,7.950571962495413,0.0,7.489830620541526,1.2196354964547869,2.2280226904376015,1.9,1.26,1.27,1.6485090114691423,1.52,1.66,1.982238372093023,1.6179350766456266,1.545319949811794,2.1129594531614107 -2024,9,22,0,1,3,2,10,13,15,0.0,4.0,0.9877072374258956,5.462551524816491,5,1,0,4,0,0,0,7.600762616660551,0.0,8.896871855491066,1.3178129787287216,2.2280226904376015,1.9,1.26,1.27,1.6485090114691423,1.52,1.66,1.982238372093023,1.6179350766456266,1.545319949811794,2.1129594531614107 -2024,9,23,0,0,1,1,9,12,11,0.0,7.0,1.382790132396254,9.364374042542556,8,4,2,6,0,0,0,3.600762616660551,0.0,7.134467148171249,0.8785419858191478,2.2280226904376015,1.9,1.26,1.27,1.6485090114691423,1.52,1.66,1.982238372093023,1.6179350766456266,1.545319949811794,2.1129594531614107 -2024,9,24,0,0,2,0,10,11,13,2.749046729174311,8.0,1.9754144748517912,11.144738546087769,8,4,2,4,0,0,0,0.0,0.0,4.459053966565876,0.4392709929095739,2.649137931034483,2.21,1.62,1.65,2.0603420942845223,1.96,2.09,2.7227953410981702,2.1644244984160506,1.6855735805330245,2.328557704624055 -2024,9,25,0,0,2,1,9,6,11,0.6501906541651378,4.0,2.125533061905399,12.705467553178195,8,4,1,1,0,0,0,5.650190654165137,0.0,1.7779615509946796,0.21963549645478694,2.693936545240893,2.34,1.47,1.43,2.1942804428044282,2.0,2.05,2.3113760379596675,2.2481053525913337,2.0682068965517244,2.480946564885496 -2024,9,26,0,2,1,1,9,4,8,0.0,4.0,2.2237241623178474,13.925103049632982,4,1,1,0,0,0,0,8.950571962495413,0.0,0.993724961944858,0.0,2.6504558404558405,2.25,1.59,1.66,2.177179215270414,2.12,1.87,2.436653514180025,2.242022471910112,2.0493956953642383,2.489373537105879 -2024,9,27,1,2,1,1,11,3,7,0.0,5.0,2.800007213036361,15.705467553178195,1,0,1,1,0,0,0,7.950571962495413,0.0,0.8722404292023784,0.0,2.6402764976958526,2.28,1.35,1.29,2.1901692573402416,1.74,2.13,1.970348171000441,2.289028268551237,2.041374045801527,2.490235921921079 -2024,9,28,0,2,2,3,10,2,9,0.0,5.0,3.0896074657112105,16.48583205672341,2,0,0,0,0,0,0,7.85171588748624,0.0,0.681688219660515,0.0,2.7642455621301774,2.2,1.37,1.33,2.1401077496891836,1.74,2.01,2.1257382729211085,2.2388522848034005,1.7714574898785427,2.4423440366972478 -2024,9,29,0,0,3,3,9,4,9,0.0,5.0,3.3300709725134134,14.705467553178195,5,2,0,0,0,0,0,11.950571962495413,0.0,0.9359674840206654,0.0,2.7642455621301774,2.2,1.37,1.33,2.1401077496891836,1.74,2.01,2.1257382729211085,2.2388522848034005,1.7714574898785427,2.4423440366972478 -2024,9,30,0,0,3,3,9,5,11,0.0,7.0,2.7492389730554843,14.925103049632982,4,1,0,1,0,0,0,12.25095327082569,0.0,5.165260924000887,0.0,2.7642455621301774,2.2,1.37,1.33,2.1401077496891836,1.74,2.01,2.1257382729211085,2.2388522848034005,1.7714574898785427,2.4423440366972478 -2024,10,1,0,0,1,0,8,7,10,0.0,11.0,2.385642317548583,14.485832056723408,6,2,1,7,0,0,0,10.201525233321101,0.0,7.997491041232763,0.21963549645478694,4.038441087613293,2.37,1.37,1.39,2.4666951355365763,1.94,3.17,2.0272856113379776,2.4360282258064516,1.996181202370872,2.5292153443766345 -2024,10,2,0,0,0,0,8,4,10,0.0,12.0,2.385642317548583,12.705467553178195,7,4,7,6,0,0,0,12.901143924990826,0.0,5.574369896040595,0.21963549645478694,3.6512421875000003,2.45,1.38,1.44,2.6129045788185947,1.97,3.09,2.232553516819572,2.988398236590742,2.08789860997547,2.588154531946508 -2024,10,3,0,0,0,1,8,5,10,0.0,11.0,2.385642317548583,12.925103049632982,5,2,4,6,0,0,0,11.551334579155965,0.0,6.772743939212804,0.21963549645478694,3.8696037735849056,2.46,1.45,1.5,2.7143048031780426,1.78,3.2,2.335198887343533,3.328726868985936,2.1368067226890757,2.631479576399395 -2024,10,4,0,0,0,1,8,5,11,0.0,10.0,2.1881008700634035,12.925103049632982,5,3,4,6,0,0,0,16.901143924990826,0.0,5.253765548024705,0.21963549645478694,3.976170798898071,2.33,1.49,1.57,2.4983933161953726,1.93,3.04,2.1208805870580387,2.8709374999999997,2.1576623376623374,2.550132754659178 -2024,10,5,0,0,1,4,8,8,11,0.0,10.0,2.1881008700634035,12.925103049632982,4,2,3,4,0,0,0,11.60076261666055,0.0,5.90523636689073,0.21963549645478694,3.958905191873589,2.1,1.22,1.25,2.3438746537396122,1.81,2.8,1.770198895027624,2.602340425531915,1.9056169965075669,2.331016521340064 -2024,10,6,0,0,1,1,6,8,12,0.0,11.0,2.1881008700634035,13.485832056723408,10,6,2,5,0,0,0,9.60076261666055,0.0,6.506212288281748,0.21963549645478694,3.958905191873589,2.1,1.22,1.25,2.3438746537396122,1.81,2.8,1.770198895027624,2.602340425531915,1.9056169965075669,2.331016521340064 -2024,10,7,0,0,0,0,6,4,10,0.0,10.0,2.1881008700634035,12.485832056723408,10,6,9,10,0,1,0,6.201525233321102,0.0,5.974197608902733,0.4392709929095739,3.958905191873589,2.1,1.22,1.25,2.3438746537396122,1.81,2.8,1.770198895027624,2.602340425531915,1.9056169965075669,2.331016521340064 -2024,10,8,0,0,0,0,5,1,8,0.0,8.0,2.1881008700634035,12.485832056723408,11,10,10,8,2,3,0,8.901143924990826,0.0,5.430644742840985,0.4392709929095739,4.0666977745872215,2.31,1.54,1.67,2.583534326189611,1.99,2.99,2.043386454183267,3.2336547733847634,2.2112264150943397,2.399064280980782 -2024,10,9,0,0,0,0,4,1,7,0.0,5.0,1.580331579881433,11.925103049632982,13,11,10,5,2,3,0,9.950571962495413,0.0,4.8408725855377766,0.4392709929095739,4.069523064894449,2.34,1.62,1.69,2.6011899206719553,2.22,2.88,2.103759373981089,3.0718206521739133,2.1915040650406503,2.321854814814815 -2024,10,10,0,0,0,0,3,1,8,0.0,4.0,1.382790132396254,11.925103049632982,15,15,10,3,4,2,0,12.600762616660552,0.0,4.651218484024976,0.21963549645478694,3.6958452138492874,2.24,1.65,1.71,2.3790875232774678,2.21,2.25,1.9375100401606429,2.7409941520467833,2.116565143824027,2.2694849023090584 -2024,10,11,0,0,0,1,2,1,8,0.0,4.0,1.1852486849110748,11.144738546087769,13,13,5,3,5,3,0,13.201525233321101,0.0,6.00380724459643,0.21963549645478694,3.7002356267672005,2.12,1.47,1.5,2.2753036437246963,1.8,2.21,1.7485295098366123,2.615795677799607,2.029667036625971,2.187000633111744 -2024,10,12,0,0,0,2,3,1,10,0.0,3.0,0.9877072374258956,10.364374042542556,9,9,7,5,3,2,0,8.901143924990826,1.0,5.496289566737557,0.21963549645478694,3.307085828343313,2.07,1.35,1.44,2.02,1.75,1.03,1.687628541448059,2.081701030927835,1.983497615262321,2.1687297578368745 -2024,10,13,0,0,0,0,3,2,11,0.0,1.0,0.7901657899407165,10.364374042542556,20,10,8,10,1,1,0,7.600762616660551,1.0,7.721726521612182,0.4392709929095739,3.307085828343313,2.07,1.35,1.44,2.02,1.75,1.03,1.687628541448059,2.081701030927835,1.983497615262321,2.1687297578368745 -2024,10,14,0,0,0,0,4,1,8,0.0,0.0,0.7901657899407165,8.584009538997343,16,11,15,18,3,7,1,9.250953270825688,1.0,6.460482366342224,0.6589064893643608,3.307085828343313,2.07,1.35,1.44,2.02,1.75,1.03,1.687628541448059,2.081701030927835,1.983497615262321,2.1687297578368745 -2024,10,15,0,0,0,0,3,0,8,0.0,1.0,0.7901657899407165,6.242916028361704,20,19,20,20,9,12,1,10.300381308330275,1.0,7.68388315633971,0.6589064893643608,3.307085828343313,2.07,1.35,1.44,2.02,1.75,1.03,1.687628541448059,2.081701030927835,1.983497615262321,2.1687297578368745 -2024,10,16,0,0,0,0,2,0,1,0.0,0.0,0.5926243424555374,5.462551524816491,19,19,20,20,11,16,5,13.0,3.0,8.809712997047573,1.9767194680930824,3.425801526717557,2.0,1.87,1.99,1.8470493221805597,2.39,1.12,2.0899441964285717,2.0636228656273197,1.7310477001703577,2.0679784205005247 -2024,10,17,0,0,0,0,1,0,0,0.0,0.0,0.19754144748517913,3.121458014180852,21,18,18,15,11,16,7,19.0,5.0,13.851647513970553,2.7570839716382953,3.272404600104548,1.93,1.76,1.87,1.8836821952776006,2.08,2.02,1.9934345718901454,2.111270611057226,1.6854466858789625,1.9517533217793184 -2024,10,18,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,16,14,14,10,9,12,4,20.650190654165137,6.0,20.46881293761288,4.098177482273934,2.6702721088435375,1.77,1.62,1.67,1.7405540540540538,1.83,1.83,1.9064253731343281,1.799748520710059,1.6317924528301886,1.9022557831147784 -2024,10,19,0,0,0,0,2,0,2,0.0,0.0,0.0,0.0,13,12,11,7,6,9,1,14.950571962495413,4.0,18.21719824660072,10.65890648936436,2.089210377890581,1.35,1.33,1.43,1.2596977660972406,1.57,0.93,1.4645417236662106,1.2894152046783627,1.1978836833602584,1.525557754142963 -2024,10,20,0,0,0,0,2,0,3,0.0,1.0,0.0,0.0,11,10,8,4,5,7,1,8.650190654165137,2.0,13.349204462198012,7.658906489364361,2.089210377890581,1.35,1.33,1.43,1.2596977660972406,1.57,0.93,1.4645417236662106,1.2894152046783627,1.1978836833602584,1.525557754142963 -2024,10,21,0,0,0,0,3,0,3,0.0,2.0,0.0,0.0,6,6,4,3,3,5,0,16.0,2.0,13.418162546988713,3.7570839716382958,2.089210377890581,1.35,1.33,1.43,1.2596977660972406,1.57,0.93,1.4645417236662106,1.2894152046783627,1.1978836833602584,1.525557754142963 -2024,10,22,0,0,0,0,3,0,5,0.0,2.0,0.0,2.341093510635639,4,2,5,4,2,4,0,18.0,2.0,12.321257103520248,2.5374484751835085,1.991640625,1.38,1.34,1.48,1.2693056664006386,1.63,1.43,1.6234392085394427,1.4645287739783153,1.201466965285554,1.4903146214099217 -2024,10,23,0,0,0,0,3,1,8,0.0,3.0,0.19754144748517913,5.462551524816491,4,4,8,10,2,1,0,21.300381308330273,2.0,12.332869606335183,1.5374484751835087,2.153303303303303,1.7,1.54,1.66,1.4640447154471543,1.76,1.43,1.7095880635744405,1.5603529411764707,1.572577519379845,1.6426445449974862 -2024,10,24,0,0,0,1,3,1,8,0.0,2.0,0.0,5.462551524816491,6,9,16,11,2,3,0,21.650190654165137,2.0,16.22847189456775,1.3178129787287216,2.7282038834951456,1.84,1.72,1.8,1.8944415193681834,1.94,2.05,1.8096165001611344,2.14938026013772,1.7078252234359483,1.8505671345526724 -2024,10,25,0,0,0,0,3,2,8,0.0,2.0,0.0,4.682187021271278,16,16,15,13,5,2,0,18.60076261666055,2.0,17.396562721024463,1.7570839716382955,2.6979126572908956,1.9,1.77,1.83,1.8408108108108108,2.07,1.84,1.934489420423183,1.9685410334346503,1.6915625000000003,1.9481050793188766 -2024,10,26,0,0,0,0,3,2,7,0.0,2.0,0.19754144748517913,5.462551524816491,14,15,16,17,3,3,1,16.901143924990826,1.0,14.305850227857269,1.5374484751835087,3.0510064239828694,1.9,1.82,1.93,1.827275,2.25,1.81,1.888430599369085,1.8708513189448441,1.5866569129480614,1.8496285249457702 -2024,10,27,0,0,0,0,3,1,7,0.0,1.0,0.0,5.462551524816491,21,20,19,14,7,5,0,16.300381308330273,3.0,12.025299725036383,1.0981774822739347,3.0510064239828694,1.9,1.82,1.93,1.827275,2.25,1.81,1.888430599369085,1.8708513189448441,1.5866569129480614,1.8496285249457702 -2024,10,28,0,0,0,0,2,1,8,0.0,0.0,0.0,3.9018225177260653,23,19,15,8,6,3,0,19.34980934583486,7.0,14.299979860571037,1.6589064893643608,3.0510064239828694,1.9,1.82,1.93,1.827275,2.25,1.81,1.888430599369085,1.8708513189448441,1.5866569129480614,1.8496285249457702 -2024,10,29,0,0,0,1,3,2,10,0.0,0.0,0.0,0.0,23,16,7,4,5,2,0,21.0,11.0,21.036862805194772,6.219635496454787,3.6466292922214434,1.83,1.68,1.8,2.008317757009346,2.04,2.48,1.8251090644692194,2.281216097987752,1.6231491712707184,1.8789713155291787 -2024,10,30,0,0,3,4,4,3,12,0.0,0.0,0.0,0.0,12,6,0,7,2,0,0,24.0,11.0,27.71544189046154,12.537448475183508,3.8740992647058827,1.76,1.58,1.66,2.3174923813670003,1.99,3.68,1.7199830795262268,2.3588793103448276,1.6272228704784133,1.8173406156901688 -2024,10,31,0,0,1,0,5,3,7,0.0,0.0,0.0,0.0,3,1,2,17,0,0,1,23.349809345834863,12.0,27.347218812861716,11.635625957457442,3.462190542420028,1.79,1.65,1.72,1.8628452049343414,1.91,2.33,1.7344364599092286,1.8806717123935668,1.6163194444444444,1.8084903405696078 -2024,11,1,0,1,0,0,5,2,5,0.0,0.0,0.0,0.0,2,3,18,21,0,3,2,22.650190654165137,11.0,24.873263915346637,10.415990461002657,2.748048780487805,1.7,1.48,1.53,1.662195203197868,1.76,1.73,1.6552487382840664,1.8713924611973392,1.511460895228726,1.7747241379310343 -2024,11,2,0,0,0,0,4,2,6,0.0,0.0,0.0,0.0,17,15,20,19,3,4,1,21.0,13.0,23.768454550493956,10.317812978728721,1.5814346504559271,1.16,1.09,1.09,1.0270032930845225,1.34,0.96,1.2145603138280485,0.9689354838709678,1.008984145625367,1.2573071161048688 -2024,11,3,0,0,0,0,3,2,8,0.0,0.0,0.0,0.0,25,22,16,15,6,3,0,21.0,11.0,26.249524306930727,14.537448475183508,1.5814346504559271,1.16,1.09,1.09,1.0270032930845225,1.34,0.96,1.2145603138280485,0.9689354838709678,1.008984145625367,1.2573071161048688 -2024,11,4,0,0,0,0,3,3,9,0.0,0.0,0.0,0.0,25,20,9,10,6,1,1,21.34980934583486,9.0,28.03327152667861,16.635625957457442,1.5814346504559271,1.16,1.09,1.09,1.0270032930845225,1.34,0.96,1.2145603138280485,0.9689354838709678,1.008984145625367,1.2573071161048688 -2024,11,5,0,0,1,0,4,5,4,0.0,0.0,0.0,0.0,14,9,2,13,2,0,2,22.34980934583486,8.0,29.829944410440227,15.415990461002655,1.645442238267148,1.15,1.08,1.17,1.071353711790393,1.31,0.98,1.3423134328358208,1.0579310344827586,1.0265573770491805,1.2499153086102912 -2024,11,6,0,0,0,0,6,5,3,0.0,0.0,0.0,0.0,2,2,8,20,0,0,3,22.300381308330273,11.0,34.17366326134039,19.19635496454787,2.150210035005834,1.53,1.4,1.48,1.5246117021276595,1.59,1.53,1.625617807389461,1.5748044009779951,1.394946996466431,1.5453672477850815 -2024,11,7,0,0,0,0,7,4,3,0.0,0.0,0.0,0.0,7,4,14,20,0,1,4,19.95057196249541,9.0,32.35651203305076,21.635625957457442,2.5926130992572585,1.71,1.46,1.55,1.870857740585774,1.69,1.9,1.6022453781512607,2.2008749382105783,1.5670221066319896,1.6882674813306178 -2024,11,8,0,0,0,0,7,2,6,0.0,0.0,0.0,0.0,16,13,16,19,1,3,3,18.60076261666055,8.0,31.003327468389994,20.85526145391223,1.972442748091603,1.43,1.29,1.38,1.4266216216216219,1.54,1.08,1.483726360028018,1.5353984962406015,1.2100223048327137,1.4461255443760324 -2024,11,9,0,0,0,0,4,2,3,0.0,0.0,0.0,0.0,21,20,19,20,5,4,3,20.60076261666055,8.0,27.085765855975215,17.635625957457442,1.5849404289118347,1.08,0.97,1.05,0.9922950819672132,1.22,0.87,1.1692216304793117,0.9165185676392572,1.03,1.153189290161893 -2024,11,10,0,0,0,0,4,2,4,0.0,0.0,0.0,0.0,23,21,15,15,7,3,2,19.650190654165137,7.0,23.370066651977492,12.635625957457442,1.5849404289118347,1.08,0.97,1.05,0.9922950819672132,1.22,0.87,1.1692216304793117,0.9165185676392572,1.03,1.153189290161893 -2024,11,11,0,0,0,0,4,2,4,0.0,0.0,0.0,0.0,17,15,14,19,3,3,2,20.349809345834863,10.0,21.6151493556931,10.415990461002657,1.5849404289118347,1.08,0.97,1.05,0.9922950819672132,1.22,0.87,1.1692216304793117,0.9165185676392572,1.03,1.153189290161893 -2024,11,12,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,18,18,22,21,5,8,2,21.0,14.0,26.652310093290424,12.537448475183508,1.5849404289118347,1.08,0.97,1.05,0.9922950819672132,1.22,0.87,1.1692216304793117,0.9165185676392572,1.03,1.153189290161893 -2024,11,13,0,0,0,0,3,0,2,0.0,0.0,0.0,0.0,28,26,22,23,11,9,2,21.0,11.0,28.057054328310578,12.415990461002657,2.57813343923749,1.83,1.75,1.87,1.7931638913234005,2.77,1.51,1.873846153846154,1.899402460456942,1.6448875855327472,1.8237641379310345 -2024,11,14,0,0,0,0,3,0,0,0.0,0.0,0.0,0.0,29,28,21,20,13,10,5,20.699618691669723,11.0,25.26710954386106,10.415990461002657,2.992359328726555,2.0,1.86,1.98,1.988847209515096,2.64,1.41,2.022530206112296,2.123926638604931,1.8103591682419662,1.9993115298021091 -2024,11,15,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,25,22,17,19,9,12,7,25.349809345834863,17.0,27.66237634697231,13.098177482273934,3.3246564452015903,1.79,1.75,1.83,1.8899456127628718,2.12,2.22,1.8224779116465863,2.1615555555555557,1.614618520675597,1.7935547771469984 -2024,11,16,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,22,18,19,20,9,11,5,27.650190654165137,18.0,30.842148649386267,18.439270992909574,2.400605095541401,1.61,1.54,1.64,1.7084493670886076,1.85,2.14,1.6246252285191956,1.8044610992148464,1.506592356687898,1.4871542553191488 -2024,11,17,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,18,19,16,18,9,10,3,26.650190654165137,16.0,30.77518186050073,18.31781297872872,2.400605095541401,1.61,1.54,1.64,1.7084493670886076,1.85,2.14,1.6246252285191956,1.8044610992148464,1.506592356687898,1.4871542553191488 -2024,11,18,0,0,0,0,1,0,5,0.0,0.0,0.0,0.0,18,16,15,16,7,6,1,28.349809345834863,18.0,30.85525743223556,18.53744847518351,2.400605095541401,1.61,1.54,1.64,1.7084493670886076,1.85,2.14,1.6246252285191956,1.8044610992148464,1.506592356687898,1.4871542553191488 -2024,11,19,0,0,0,0,2,1,1,0.0,0.0,0.0,0.0,18,17,11,18,7,5,3,28.650190654165137,17.0,36.34249318116093,18.19635496454787,3.7549389002036664,1.84,1.73,1.85,2.189540378006873,2.23,2.35,1.8112816505157863,2.462081218274112,1.7173489932885906,1.850913935518252 -2024,11,20,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,20,16,19,26,5,7,10,26.349809345834863,15.0,33.376954069533795,16.074896950367016,3.5581469387755105,2.0,1.89,2.0,2.221286992429456,2.33,2.73,1.9619476744186044,2.4332098765432097,1.8718840579710145,1.9546079762933695 -2024,11,21,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,22,30,30,14,20,12,23.650190654165137,10.0,28.46195836730129,12.635625957457442,3.6664325618515563,2.27,2.21,2.34,2.3838177182919056,2.99,3.11,2.322598134894817,2.727483246463142,2.1443471810089023,2.2135930016616165 -2024,11,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,21,28,27,30,19,22,12,22.300381308330273,8.0,23.377484604144254,10.415990461002657,3.9231382978723404,2.71,2.56,2.67,2.7912364052661705,3.27,3.09,2.67164943123061,2.992434782608696,2.6654144305307095,2.6738527344943472 -2024,11,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,23,24,26,28,16,20,9,24.34980934583486,14.0,22.986110837046763,9.976719468093082,3.638565400843882,2.39,2.3,2.39,2.45556862745098,2.7,3.24,2.3394637610186093,2.678429890848027,2.268980686695279,2.2625534672715486 -2024,11,24,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,22,22,22,25,12,16,5,26.300381308330273,15.0,26.85737568486657,11.537448475183508,3.638565400843882,2.39,2.3,2.39,2.45556862745098,2.7,3.24,2.3394637610186093,2.678429890848027,2.268980686695279,2.2625534672715486 -2024,11,25,0,0,0,0,0,0,2,0.0,0.0,0.0,0.0,25,23,21,29,11,13,6,25.650190654165137,15.0,33.35820958594318,11.196354964547869,3.638565400843882,2.39,2.3,2.39,2.45556862745098,2.7,3.24,2.3394637610186093,2.678429890848027,2.268980686695279,2.2625534672715486 -2024,11,26,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,21,29,36,10,15,12,27.0,13.0,32.02174111161755,11.196354964547869,3.664611066559744,2.77,2.67,2.82,2.772778378378378,3.41,2.96,2.6772070914696813,2.9230516431924882,2.593661384487073,2.630807077072225 -2024,11,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,26,25,30,37,11,16,7,27.0,12.0,31.843735820964664,11.196354964547869,3.3716184615384615,3.09,3.0,3.18,3.0569644902634594,4.61,3.03,3.0970831659300924,3.0163861386138615,3.066863468634686,3.0180064559216384 -2024,11,28,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,28,26,33,38,10,19,13,29.300381308330273,13.0,36.73266337906831,14.074896950367016,3.3716184615384615,3.09,3.0,3.18,3.0569644902634594,4.61,3.03,3.0970831659300924,3.0163861386138615,3.066863468634686,3.0180064559216384 -2024,11,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,27,28,38,44,17,26,19,30.300381308330273,14.0,35.87285924457773,15.51416794327659,3.3716184615384615,3.09,3.0,3.18,3.0569644902634594,4.61,3.03,3.0970831659300924,3.0163861386138615,3.066863468634686,3.0180064559216384 -2024,11,30,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,33,35,43,45,22,30,18,28.300381308330273,11.0,34.20004093458851,13.51416794327659,3.3716184615384615,3.09,3.0,3.18,3.0569644902634594,4.61,3.03,3.0970831659300924,3.0163861386138615,3.066863468634686,3.0180064559216384 -2024,12,1,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,37,43,44,22,28,15,26.950571962495413,8.0,31.264971558596905,11.294532446821805,3.650136518771331,2.89,2.85,3.59,2.8645184754146054,9.95,3.27,3.884535285408784,2.981625,2.8333759246805648,2.98092412836767 -2024,12,2,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,37,37,42,45,24,30,15,27.901143924990826,8.0,30.561458682385908,11.294532446821805,3.650136518771331,2.89,2.85,3.59,2.8645184754146054,9.95,3.27,3.884535285408784,2.981625,2.8333759246805648,2.98092412836767 -2024,12,3,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,35,40,40,25,33,16,27.551334579155963,10.0,27.602749247594698,11.294532446821805,3.7492458374142994,2.82,2.81,4.55,2.847289377289377,13.95,3.61,3.623733804475854,3.0654545454545454,2.594110671936759,2.878791666666667 -2024,12,4,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,36,36,35,24,27,15,27.551334579155963,11.0,27.062089489130628,11.635625957457442,3.621868640148011,2.73,2.6,2.89,2.741908979841173,7.87,3.44,2.8448370786516857,2.9423981191222572,2.6195081967213114,2.7530635759793953 -2024,12,5,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,35,36,44,46,21,30,14,26.901143924990826,10.0,28.41798270680604,13.074896950367016,3.631882876204596,2.7,2.62,3.23,2.677176781002639,10.1,3.72,2.927651219512195,2.84671875,2.585644847699287,2.719702249669166 -2024,12,6,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,37,42,39,25,35,21,24.901143924990826,8.0,28.254440282646595,13.294532446821805,3.330621030345801,2.74,2.71,3.99,2.7568560983715518,14.79,2.93,3.512066141732284,2.8063837638376383,2.6933489242282507,2.8400951933247147 -2024,12,7,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,36,33,34,28,23,29,21,24.95057196249541,8.0,27.89012942725152,13.294532446821805,3.312139534883721,2.6,2.56,2.78,2.5674408445576993,7.23,2.87,2.7760358497069975,2.67579185520362,2.487638190954774,2.69684691987031 -2024,12,8,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,31,26,27,25,17,23,15,26.0,10.0,28.667520310495714,14.415990461002655,3.312139534883721,2.6,2.56,2.78,2.5674408445576993,7.23,2.87,2.7760358497069975,2.67579185520362,2.487638190954774,2.69684691987031 -2024,12,9,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,29,27,22,26,13,14,7,27.0,13.0,35.97533014061353,15.415990461002655,3.312139534883721,2.6,2.56,2.78,2.5674408445576993,7.23,2.87,2.7760358497069975,2.67579185520362,2.487638190954774,2.69684691987031 -2024,12,10,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,30,23,27,35,8,8,13,29.950571962495413,15.0,38.83099722231313,22.294532446821805,3.3783262711864404,2.75,2.59,2.79,2.781901380670612,3.71,2.79,2.735230312035661,2.9545614035087717,2.6485360824742266,2.8242176699761217 -2024,12,11,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,19,17,34,42,8,18,14,27.95057196249541,13.0,35.63570019487948,19.51416794327659,3.323120393120393,2.75,2.65,2.81,2.747938689217759,3.48,2.76,2.8131737635546155,2.867322348094748,2.736322067594433,2.776383064516129 -2024,12,12,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,28,32,50,49,21,27,17,28.95057196249541,17.0,32.30291674425639,15.51416794327659,3.618099762470309,2.99,2.88,4.01,2.9810034752389227,11.87,3.34,3.2740580948312688,3.055500450856628,2.93,2.9611674913148756 -2024,12,13,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,38,39,47,45,20,26,15,27.650190654165137,17.0,34.063370531674245,17.415990461002657,3.531022326674501,2.9,2.87,3.81,2.9722505399568036,12.64,2.93,3.120874785591767,3.1026798748696556,2.8480137772675085,2.958039783457132 -2024,12,14,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,41,41,40,40,19,19,6,25.349809345834863,16.0,30.866233754957978,17.19635496454787,3.4348801534036433,2.76,2.73,2.86,2.732961432506887,7.09,2.75,2.8349974823766364,2.9113525026624067,2.5980697050938337,2.8257560829974624 -2024,12,15,0,0,0,0,1,0,2,0.0,0.0,0.0,0.0,42,38,31,29,17,16,4,27.650190654165137,16.0,30.021692963992685,16.19635496454787,3.4348801534036433,2.76,2.73,2.86,2.732961432506887,7.09,2.75,2.8349974823766364,2.9113525026624067,2.5980697050938337,2.8257560829974624 -2024,12,16,0,0,0,0,1,0,3,0.0,0.0,0.0,0.0,33,30,21,26,12,9,3,27.95057196249541,16.0,33.20525593559123,15.196354964547869,3.4348801534036433,2.76,2.73,2.86,2.732961432506887,7.09,2.75,2.8349974823766364,2.9113525026624067,2.5980697050938337,2.8257560829974624 -2024,12,17,0,0,0,0,2,0,3,0.0,0.0,0.0,0.0,23,20,27,32,8,9,4,23.600762616660553,12.0,30.729954726053673,14.415990461002655,3.4994063926940635,2.72,2.64,2.78,2.6994086021505375,3.41,2.74,2.7582343499197433,2.8578829389788294,2.6600000000000006,2.711658240647118 -2024,12,18,0,0,0,0,2,0,1,0.0,0.0,0.0,0.0,26,26,32,36,8,10,8,21.25095327082569,9.0,28.665101575398786,13.294532446821805,3.344655172413793,2.7,2.64,2.74,2.6566512290701816,3.44,2.54,2.740461707585196,2.800548086866598,2.6990341463414635,2.725117386866281 -2024,12,19,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,29,30,35,35,12,20,13,20.901143924990826,7.0,27.282597717972585,11.074896950367016,3.4600000000000004,2.83,2.83,2.98,2.7699764595103575,5.23,2.77,2.971438911407064,2.9250998948475293,2.771647331786543,2.883025659301497 -2024,12,20,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,35,33,35,45,15,25,16,19.60076261666055,9.0,26.27075722735011,11.294532446821805,3.3192266949152547,2.93,2.88,3.36,2.7714572127139365,10.64,2.38,3.121603547459252,2.868051787916153,2.9071931330472105,2.962745206235343 -2024,12,21,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,39,43,45,22,29,19,20.25095327082569,12.0,25.689622923952435,10.855261453912231,3.2446041412911084,2.84,2.89,8.61,2.675247068676717,16.47,2.35,4.399474386784582,2.707317073170732,2.753136593591906,2.866672019765287 -2024,12,22,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,51,49,43,38,26,31,17,23.300381308330273,11.0,25.563209665177286,12.196354964547869,3.2446041412911084,2.84,2.89,8.61,2.675247068676717,16.47,2.35,4.399474386784582,2.707317073170732,2.753136593591906,2.866672019765287 -2024,12,23,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,49,48,37,33,25,27,12,21.300381308330273,8.0,25.97551404875442,11.635625957457442,3.2446041412911084,2.84,2.89,8.61,2.675247068676717,16.47,2.35,4.399474386784582,2.707317073170732,2.753136593591906,2.866672019765287 -2024,12,24,0,0,0,0,0,0,1,0.0,0.0,0.0,0.0,45,44,33,33,21,22,8,23.349809345834863,13.0,27.081408586998354,11.855261453912231,3.053978494623656,2.74,2.73,3.0,2.500397708122683,14.16,2.13,2.8944101838755305,2.523286624203822,2.586038227628149,2.732269702276708 -2024,12,25,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,40,36,31,32,19,18,10,26.300381308330273,18.0,29.955929744297258,16.635625957457442,3.0434463276836157,2.81,2.82,3.1,2.5822674667809684,18.47,2.52,2.943899730820996,2.56268897149938,2.657193548387097,2.715118137595552 -2024,12,26,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,40,38,27,28,19,17,7,25.0,16.0,31.694963545933533,19.415990461002657,3.0434463276836157,2.81,2.82,3.1,2.5822674667809684,18.47,2.52,2.943899730820996,2.56268897149938,2.657193548387097,2.715118137595552 -2024,12,27,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,39,36,21,24,17,13,5,24.95057196249541,14.0,30.219805079228344,19.19635496454787,2.586941529235382,2.64,2.67,2.98,2.288038062283737,7.12,2.11,2.8005670103092783,2.1889054726368156,2.4863922155688623,2.5993227593152066 -2024,12,28,0,0,0,0,1,0,1,0.0,0.0,0.0,0.0,36,31,18,23,11,8,6,23.650190654165137,11.0,28.4999033100976,16.757083971638295,2.297843648208469,2.36,2.22,2.23,2.0521186778176026,3.98,1.9,2.3863632086567867,1.8403764705882355,2.2765045045045045,2.3860479285134035 -2024,12,29,0,0,0,0,1,0,0,0.0,0.0,0.0,0.0,23,17,21,26,7,8,7,25.300381308330273,12.0,25.93079340546329,12.757083971638295,2.297843648208469,2.36,2.22,2.23,2.0521186778176026,3.98,1.9,2.3863632086567867,1.8403764705882355,2.2765045045045045,2.3860479285134035 -2024,12,30,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,19,18,25,29,8,12,5,27.34980934583486,15.0,30.731301038076154,13.537448475183508,2.297843648208469,2.36,2.22,2.23,2.0521186778176026,3.98,1.9,2.3863632086567867,1.8403764705882355,2.2765045045045045,2.3860479285134035 -2024,12,31,0,0,0,0,2,0,0,0.0,0.0,0.0,0.0,24,23,28,33,10,13,11,30.34980934583486,16.0,38.632521358753905,16.635625957457442,3.4394273127753303,2.99,2.81,2.87,2.7103580786026202,3.25,2.82,3.038791357191087,2.8864910025706942,2.807392739273927,3.0106609519512744 From f57a2eb8d5bcb29358069b102922749e1bbd02f0 Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 12:51:34 -0400 Subject: [PATCH 4/8] Update README.md --- .../README.md | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/aeo_updates/temperature_gas_price_regression/README.md b/aeo_updates/temperature_gas_price_regression/README.md index 8e5d667..207b54d 100644 --- a/aeo_updates/temperature_gas_price_regression/README.md +++ b/aeo_updates/temperature_gas_price_regression/README.md @@ -1,11 +1,16 @@ # Workflow -- `inspect_hub_locations.ipynb` identifies the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. -- `write_gasreg_regression_data.ipynb` writes the daily heating/cooling degree day and spot price data used in the regression. Creates `inputs/gasreg_regression_data.csv`. -- `calculate_regression_params.ipynb` performs the regression and exports the corresponding parameters (HDD/CDD coefficients, intercept, and monthly fixed effects). Creates the ReEDS input file `ReEDS/inputs/fuelprices/gasreg_degree_day_price_mult_regression_params.csv`. -- `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg. Creates the ReEDS input file `ReEDS/inputs/fuelprices/gasreg_degree_days.csv`. +To reproduce the temperature - gas price regression inputs used in ReEDS, the following scripts should be run in the order listed here: +- (optional / NLR internal-only) `inspect_hub_locations.ipynb` identifies the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. Note that the file containing the hub locations used in this notebook is not accessible to people external to the lab. +- `write_gasreg_regression_data.ipynb` writes the daily heating/cooling degree day and spot price data used in the regression. Creates the intermediate input file `inputs/gasreg_regression_data.csv`. +- `calculate_regression_params.ipynb` performs the regression and exports the corresponding parameters (HDD/CDD coefficients, intercept, and monthly fixed effects). Creates the output (ReEDS input) file `outputs/gasreg_degree_day_price_mult_regression_params.csv`. +- `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg. Creates the output (ReEDS input) file `outputs/gasreg_degree_days.csv`. + +# Outputs +The two outputs generated by these notebooks are `outputs/gasreg_degree_day_price_mult_regression_params.csv` and `outputs/gasreg_degree_days.csv`. To be used in ReEDS, both should be copied to the `inputs/fuelprices` folder in the ReEDS directory (with the file names unchanged). + # Sources -- `inputs/kdegday.txt`: https://github.com/EIAgov/NEMS/blob/main/input/bld/kdegday.txt -- `inputs/NationalProjections_ProjectedTotalPopulation_2030-2050.csv`: https://www.coopercenter.org/national-population-projections -- `inputs/nst-est2020.xlsx`: https://www.census.gov/programs-surveys/popest/technical-documentation/research/evaluation-estimates/2020-evaluation-estimates/2010s-state-total.html -- `inputs/NST-EST2025-POP.xlsx`: https://www.census.gov/data/tables/time-series/demo/popest/2020s-state-total.html +- `inputs/kdegday.txt`: [AEO 2026](https://github.com/EIAgov/NEMS/blob/main/input/bld/kdegday.txt) +- `inputs/NationalProjections_ProjectedTotalPopulation_2030-2050.csv`: [University of Virginia Weldon Cooper Center for Public Service](https://www.coopercenter.org/national-population-projections) +- `inputs/nst-est2020.xlsx`: [U.S. Census Bureau](https://www.census.gov/programs-surveys/popest/technical-documentation/research/evaluation-estimates/2020-evaluation-estimates/2010s-state-total.html) +- `inputs/NST-EST2025-POP.xlsx`: [U.S. Census Bureau](https://www.census.gov/data/tables/time-series/demo/popest/2020s-state-total.html) From 202b39b097f837cb19198e076732602bf15f0168 Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 12:52:14 -0400 Subject: [PATCH 5/8] Add .gitignore --- .../temperature_gas_price_regression/.gitignore | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 aeo_updates/temperature_gas_price_regression/.gitignore diff --git a/aeo_updates/temperature_gas_price_regression/.gitignore b/aeo_updates/temperature_gas_price_regression/.gitignore new file mode 100644 index 0000000..56a171a --- /dev/null +++ b/aeo_updates/temperature_gas_price_regression/.gitignore @@ -0,0 +1,12 @@ +# Python cache +__pycache__/ +*.pyc + +# Notebook checkpoints +.ipynb_checkpoints/ + +# Outputs and intermediate inputs (reproducible) +outputs/ +inputs/gasreg_regression_data.csv +inputs/state_cdd*.txt +inputs/state_hdd*.txt \ No newline at end of file From 7abca5af7165bdea52be27733b1cca863054ddca Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 12:59:37 -0400 Subject: [PATCH 6/8] Clarify README --- aeo_updates/temperature_gas_price_regression/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aeo_updates/temperature_gas_price_regression/README.md b/aeo_updates/temperature_gas_price_regression/README.md index 207b54d..8bc9229 100644 --- a/aeo_updates/temperature_gas_price_regression/README.md +++ b/aeo_updates/temperature_gas_price_regression/README.md @@ -1,10 +1,11 @@ # Workflow -To reproduce the temperature - gas price regression inputs used in ReEDS, the following scripts should be run in the order listed here: -- (optional / NLR internal-only) `inspect_hub_locations.ipynb` identifies the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. Note that the file containing the hub locations used in this notebook is not accessible to people external to the lab. +To reproduce the temperature - gas price regression inputs used in ReEDS, the following notebooks should be run in the order listed here: - `write_gasreg_regression_data.ipynb` writes the daily heating/cooling degree day and spot price data used in the regression. Creates the intermediate input file `inputs/gasreg_regression_data.csv`. - `calculate_regression_params.ipynb` performs the regression and exports the corresponding parameters (HDD/CDD coefficients, intercept, and monthly fixed effects). Creates the output (ReEDS input) file `outputs/gasreg_degree_day_price_mult_regression_params.csv`. - `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg. Creates the output (ReEDS input) file `outputs/gasreg_degree_days.csv`. +Optionally, the `inspect_hub_locations.ipynb` can also be used to identify the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. This notebook is not required to reproduce the ReEDS inputs, but was used initially to associate gasregs with daily gas prices and is here for documentation purposes. Note that the file containing the hub locations used in this notebook is not accessible to people external to the lab. + # Outputs The two outputs generated by these notebooks are `outputs/gasreg_degree_day_price_mult_regression_params.csv` and `outputs/gasreg_degree_days.csv`. To be used in ReEDS, both should be copied to the `inputs/fuelprices` folder in the ReEDS directory (with the file names unchanged). From 65cc7747c225513f4cf38a307b6b4b6be3e63c71 Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 13:01:04 -0400 Subject: [PATCH 7/8] Clarify README --- aeo_updates/temperature_gas_price_regression/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aeo_updates/temperature_gas_price_regression/README.md b/aeo_updates/temperature_gas_price_regression/README.md index 8bc9229..072283a 100644 --- a/aeo_updates/temperature_gas_price_regression/README.md +++ b/aeo_updates/temperature_gas_price_regression/README.md @@ -2,9 +2,9 @@ To reproduce the temperature - gas price regression inputs used in ReEDS, the following notebooks should be run in the order listed here: - `write_gasreg_regression_data.ipynb` writes the daily heating/cooling degree day and spot price data used in the regression. Creates the intermediate input file `inputs/gasreg_regression_data.csv`. - `calculate_regression_params.ipynb` performs the regression and exports the corresponding parameters (HDD/CDD coefficients, intercept, and monthly fixed effects). Creates the output (ReEDS input) file `outputs/gasreg_degree_day_price_mult_regression_params.csv`. -- `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg. Creates the output (ReEDS input) file `outputs/gasreg_degree_days.csv`. +- `calculate_gasreg_degree_days.ipynb` calculates and exports annual (2010-2050) HDD/CDD projections for each gasreg (regions used in the regression). Creates the output (ReEDS input) file `outputs/gasreg_degree_days.csv`. -Optionally, the `inspect_hub_locations.ipynb` can also be used to identify the gasreg (regions used in the regression) that each natural gas hub overlaps with geographically. This notebook is not required to reproduce the ReEDS inputs, but was used initially to associate gasregs with daily gas prices and is here for documentation purposes. Note that the file containing the hub locations used in this notebook is not accessible to people external to the lab. +Optionally, the `inspect_hub_locations.ipynb` can also be used to identify the gasreg that each natural gas hub overlaps with geographically. This notebook is not required to reproduce the ReEDS inputs, but was used initially to associate gasregs with daily gas prices and is here for documentation purposes. Note that the file containing the hub locations used in this notebook is not accessible to people external to the lab. # Outputs The two outputs generated by these notebooks are `outputs/gasreg_degree_day_price_mult_regression_params.csv` and `outputs/gasreg_degree_days.csv`. To be used in ReEDS, both should be copied to the `inputs/fuelprices` folder in the ReEDS directory (with the file names unchanged). From a66facc4cddb359e0fa379d96a0d00a5cc52e924 Mon Sep 17 00:00:00 2001 From: kodiobika Date: Tue, 23 Jun 2026 14:01:42 -0400 Subject: [PATCH 8/8] Update .gitignore --- aeo_updates/temperature_gas_price_regression/.gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aeo_updates/temperature_gas_price_regression/.gitignore b/aeo_updates/temperature_gas_price_regression/.gitignore index 56a171a..72f049b 100644 --- a/aeo_updates/temperature_gas_price_regression/.gitignore +++ b/aeo_updates/temperature_gas_price_regression/.gitignore @@ -9,4 +9,6 @@ __pycache__/ outputs/ inputs/gasreg_regression_data.csv inputs/state_cdd*.txt -inputs/state_hdd*.txt \ No newline at end of file +inputs/state_hdd*.txt +inputs/cendiv_cdd*.txt +inputs/cendiv_hdd*.txt \ No newline at end of file